From 8c1fe076fafca4f529ed9df3aa5d53dfe8c08afa Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:04:22 -0400 Subject: [PATCH 01/15] ignoring intellij dir --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index b6e4761..e4e0ac0 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,5 @@ dmypy.json # Pyre type checker .pyre/ + +.idea \ No newline at end of file From 84d6afb09e92ff049c31b3c9d34293b8a5dfce64 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:05:08 -0400 Subject: [PATCH 02/15] initial commit --- nn_io_rs/Cargo.lock | 484 ++++++++++++++++++++++++++++++++++++++++++++ nn_io_rs/Cargo.toml | 20 ++ nn_io_rs/src/lib.rs | 110 ++++++++++ 3 files changed, 614 insertions(+) create mode 100644 nn_io_rs/Cargo.lock create mode 100644 nn_io_rs/Cargo.toml create mode 100644 nn_io_rs/src/lib.rs diff --git a/nn_io_rs/Cargo.lock b/nn_io_rs/Cargo.lock new file mode 100644 index 0000000..63a36d0 --- /dev/null +++ b/nn_io_rs/Cargo.lock @@ -0,0 +1,484 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi", + "libc", + "winapi", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bstr" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" +dependencies = [ + "lazy_static", + "memchr", + "regex-automata", + "serde", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "csv" +version = "1.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" +dependencies = [ + "bstr", + "csv-core", + "itoa 0.4.8", + "ryu", + "serde", +] + +[[package]] +name = "csv-core" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" +dependencies = [ + "memchr", +] + +[[package]] +name = "either" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be" + +[[package]] +name = "env_logger" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "indoc" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05a0bd019339e5d968b37855180087b7b9d512c5046fbd244cf8c95687927d6e" + +[[package]] +name = "itertools" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + +[[package]] +name = "itoa" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" + +[[package]] +name = "lock_api" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + +[[package]] +name = "nn_io_rs" +version = "0.1.0" +dependencies = [ + "csv", + "env_logger", + "humantime", + "itertools", + "log", + "pyo3", + "serde", + "serde_derive", + "serde_json", +] + +[[package]] +name = "once_cell" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-sys", +] + +[[package]] +name = "proc-macro2" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "pyo3" +version = "0.16.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6302e85060011447471887705bb7838f14aba43fcb06957d823739a496b3dc" +dependencies = [ + "cfg-if", + "indoc", + "libc", + "parking_lot", + "pyo3-build-config", + "pyo3-ffi", + "pyo3-macros", + "unindent", +] + +[[package]] +name = "pyo3-build-config" +version = "0.16.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b65b546c35d8a3b1b2f0ddbac7c6a569d759f357f2b9df884f5d6b719152c8" +dependencies = [ + "once_cell", + "target-lexicon", +] + +[[package]] +name = "pyo3-ffi" +version = "0.16.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c275a07127c1aca33031a563e384ffdd485aee34ef131116fcd58e3430d1742b" +dependencies = [ + "libc", + "pyo3-build-config", +] + +[[package]] +name = "pyo3-macros" +version = "0.16.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "284fc4485bfbcc9850a6d661d627783f18d19c2ab55880b021671c4ba83e90f7" +dependencies = [ + "proc-macro2", + "pyo3-macros-backend", + "quote", + "syn", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.16.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53bda0f58f73f5c5429693c96ed57f7abdb38fdfc28ae06da4101a257adb7faf" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "quote" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "redox_syscall" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" + +[[package]] +name = "regex-syntax" +version = "0.6.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" + +[[package]] +name = "ryu" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "serde" +version = "1.0.139" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0171ebb889e45aa68b44aee0859b3eede84c6f5f5c228e6f140c0b2a0a46cad6" + +[[package]] +name = "serde_derive" +version = "1.0.139" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1d3230c1de7932af58ad8ffbe1d784bd55efd5a9d84ac24f69c72d83543dfb" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" +dependencies = [ + "itoa 1.0.2", + "ryu", + "serde", +] + +[[package]] +name = "smallvec" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" + +[[package]] +name = "syn" +version = "1.0.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "target-lexicon" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1" + +[[package]] +name = "termcolor" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "unicode-ident" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" + +[[package]] +name = "unindent" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52fee519a3e570f7df377a06a1a7775cdbfb7aa460be7e08de2b1f0e69973a44" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-sys" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +dependencies = [ + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" + +[[package]] +name = "windows_i686_gnu" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" + +[[package]] +name = "windows_i686_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" diff --git a/nn_io_rs/Cargo.toml b/nn_io_rs/Cargo.toml new file mode 100644 index 0000000..8da0228 --- /dev/null +++ b/nn_io_rs/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "nn_io_rs" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[lib] +name = "nn_io_rs" +crate-type = ["cdylib"] + +[dependencies] +csv = "^1.1" +env_logger = "^0.9" +humantime = "^2.1" +itertools = "^0.10" +log = "^0.4" +pyo3 = { version = "^0.16", features = ["extension-module"] } +serde = "^1.0" +serde_derive = "^1.0" +serde_json = "^1.0" diff --git a/nn_io_rs/src/lib.rs b/nn_io_rs/src/lib.rs new file mode 100644 index 0000000..d5c29fb --- /dev/null +++ b/nn_io_rs/src/lib.rs @@ -0,0 +1,110 @@ +#[macro_use] +extern crate serde_derive; + +use pyo3::prelude::*; +use std::path::{Path, PathBuf}; +use itertools::Itertools; +use serde_json::Value; +use std::error::Error; + +// {"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002010", "l": "pre-conventional dendritic cell"}]} + +#[derive(Serialize, Deserialize, Debug)] +pub struct CompendiaIdentifier { + #[serde(rename = "i")] + pub id: String, + #[serde(rename = "l", skip_serializing_if = "String::is_empty")] + pub label: String, +} + +#[derive(Serialize, Deserialize, Debug)] +pub struct CompendiaEntry { + #[serde(rename = "type")] + pub compendia_type: String, + #[serde(rename = "ic", skip_serializing_if = "Option::is_none")] + pub information_content: Option, + pub identifiers: Vec, +} + +#[derive(Serialize, Deserialize, Debug)] +pub struct SSSOMEntry { + pub subject_id: String, + pub subject_label: String, + pub subject_category: String, + pub predicate_id: String, + pub object_id: String, + pub object_label: String, + pub object_category: String, + pub match_type: String, + pub other: String, +} + +#[pyfunction] +pub fn sssom_to_legacy_format(path: &str) -> PyResult> { + let path_instance = PathBuf::from(path); + let data = read_sssom_file(path_instance.as_path()).unwrap(); + let mut ret = vec![]; + + let grouping = data.iter().map(|a| ((a.subject_category.clone(), a.subject_id.clone(), a.subject_label.clone()), a)).into_group_map(); + for (key, values) in grouping.iter() { + + let mut identifiers = vec![ + CompendiaIdentifier { + id: key.1.clone(), + label: key.2.clone(), + } + ]; + + let mut ic_values = values + .iter() + .map(|a| a.other.clone()) + .map(|a| { + let json: Value = serde_json::from_str(a.as_str()).unwrap(); + match json["subject_information_content"].is_null() { + true => None, + false => Some(json["subject_information_content"].to_string()), + } + }) + .flatten() + .collect_vec(); + + ic_values.dedup(); + + values.iter().filter(|a| key.1 != a.object_id).for_each(|a| identifiers.push(CompendiaIdentifier { + id: a.object_id.clone(), + label: a.object_label.clone(), + })); + + let compendia_entry = CompendiaEntry { + compendia_type: key.0.clone(), + information_content: ic_values.into_iter().next(), + identifiers + }; + ret.push(serde_json::to_string(&compendia_entry).unwrap()); + } + + Ok(ret) +} + +// conflations of chemicals and chemicals +// conflations of chemicals and drug + +fn read_sssom_file(path: &Path) -> Result, Box> { + let raw_data = std::fs::read_to_string(path).unwrap(); + let raw_data_str = raw_data.as_str(); + let mut data_reader = csv::ReaderBuilder::new().delimiter(b'\t').has_headers(true).from_reader(raw_data_str.as_bytes()); + let mut data = vec![]; + for record in data_reader.deserialize() { + let record: SSSOMEntry = record.unwrap(); + data.push(record); + } + Ok(data) +} + + +/// A Python module implemented in Rust. +#[pymodule] +fn nn_io_rs(_py: Python, m: &PyModule) -> PyResult<()> { + m.add_function(wrap_pyfunction!(sssom_to_legacy_format, m)?)?; + Ok(()) +} From bc65b75b223571735fe0ced132e32d22cc5105e2 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:05:29 -0400 Subject: [PATCH 03/15] initial commit --- pytest.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..f2e363f --- /dev/null +++ b/pytest.ini @@ -0,0 +1,4 @@ +[pytest] +log_cli=false +log_file=tests.log +log_file_level=DEBUG From c6a169967881c573904159e81bc66b1e50932872 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:06:00 -0400 Subject: [PATCH 04/15] adding maturing for nn_io_rs --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9e17f7e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.black] +line-length = 160 + +[build-system] +requires = ["maturin>=0.13,<0.14"] +build-backend = "maturin" + +[project] +name = "nn_io_rs" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Rust", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] From 8a0b2845a3c8e0d255ff0acd22359d08342fffa8 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:07:24 -0400 Subject: [PATCH 05/15] formatting & adding load_compendium_sssom --- node_normalizer/loader.py | 402 +++++++++++++++++++++++++------------- 1 file changed, 269 insertions(+), 133 deletions(-) diff --git a/node_normalizer/loader.py b/node_normalizer/loader.py index b3322e6..b015b35 100644 --- a/node_normalizer/loader.py +++ b/node_normalizer/loader.py @@ -1,16 +1,22 @@ import asyncio +import logging from pathlib import Path from itertools import islice -from datetime import datetime from typing import Dict, Any import json import hashlib from itertools import combinations import jsonschema import os + +import nn_io_rs +import sssom.io from node_normalizer.redis_adapter import RedisConnectionFactory, RedisConnection from bmt import Toolkit +logging.basicConfig(format="%(asctime)s | %(levelname)s | %(module)s:%(funcName)s | %(message)s", level=os.getenv("LOG_LEVEL", "DEBUG")) +logger = logging.getLogger() + class NodeLoader: """ @@ -22,13 +28,13 @@ class NodeLoader: def __init__(self): self._config = self.get_config() - self._compendium_directory: Path = Path(self._config['compendium_directory']) - self._conflation_directory: Path = Path(self._config['conflation_directory']) - self._test_mode: int = self._config['test_mode'] - self._data_files: list = self._config['data_files'] - self._conflations: list = self._config['conflations'] + self._compendium_directory: Path = Path(self._config["compendium_directory"]) + self._conflation_directory: Path = Path(self._config["conflation_directory"]) + self._test_mode: int = self._config["test_mode"] + self._data_files: list = self._config["data_files"] + self._conflations: list = self._config["conflations"] - json_schema = Path(__file__).parent / 'resources' / 'valid_data_format.json' + json_schema = Path(__file__).parent / "resources" / "valid_data_format.json" with open(json_schema) as json_file: self._validate_with = json.load(json_file) @@ -37,14 +43,14 @@ def __init__(self): self.semantic_types: set = set() self.source_prefixes: Dict = {} - self.toolkit = Toolkit('https://raw.githubusercontent.com/biolink/biolink-model/2.1.0/biolink-model.yaml') + self.toolkit = Toolkit("https://raw.githubusercontent.com/biolink/biolink-model/2.1.0/biolink-model.yaml") self.ancestor_map = {} def get_ancestors(self, input_type): if input_type in self.ancestor_map: return self.ancestor_map[input_type] a = self.toolkit.get_ancestors(input_type) - ancs = [self.toolkit.get_element(ai)['class_uri'] for ai in a] + ancs = [self.toolkit.get_element(ai)["class_uri"] for ai in a] if input_type not in ancs: ancs = [input_type] + ancs self.ancestor_map[input_type] = ancs @@ -52,10 +58,10 @@ def get_ancestors(self, input_type): @staticmethod def get_config() -> Dict[str, Any]: - """ get configuration file """ - cname = Path(__file__).parents[1] / 'config.json' + """get configuration file""" + cname = Path(__file__).parents[1] / "config.json" - with open(cname, 'r') as json_file: + with open(cname, "r") as json_file: data = json.load(json_file) return data @@ -81,8 +87,9 @@ def convert_to_kgx(self, outfile_name) -> bool: # did we get all the files if len(compendia) == len(self._data_files): # open the output file and start loading it - with open(os.path.join(self._compendium_directory, outfile_name + '_nodes.jsonl'), 'w', encoding="utf-8") as node_file, \ - open(os.path.join(self._compendium_directory, outfile_name + '_edges.jsonl'), 'w', encoding="utf-8") as edge_file: + with open(os.path.join(self._compendium_directory, outfile_name + "_nodes.jsonl"), "w", encoding="utf-8") as node_file, open( + os.path.join(self._compendium_directory, outfile_name + "_edges.jsonl"), "w", encoding="utf-8" + ) as edge_file: # set the flag for suppressing the first ",\n" in the written data first = True @@ -94,8 +101,8 @@ def convert_to_kgx(self, outfile_name) -> bool: # check the validity of the file if self.validate_compendia(comp): - with open(comp, 'r', encoding="utf-8") as compendium: - self.print_debug_msg(f'Processing {comp}...', True) + with open(comp, "r", encoding="utf-8") as compendium: + self.print_debug_msg(f"Processing {comp}...", True) # get the name of the source # source = os.path.split(comp)[-1] @@ -112,18 +119,24 @@ def convert_to_kgx(self, outfile_name) -> bool: instance: dict = json.loads(line) # all ids (even the root one) are in the equivalent identifiers - if len(instance['identifiers']) > 0: + if len(instance["identifiers"]) > 0: # loop through each identifier and create a node - for equiv_id in instance['identifiers']: + for equiv_id in instance["identifiers"]: # check to see if there is a label. if there is use it - if 'l' in equiv_id: - name = equiv_id['l'] + if "l" in equiv_id: + name = equiv_id["l"] else: - name = '' + name = "" # add the node to the ones in this pass - pass_nodes.append({'id': equiv_id['i'], 'name': name, 'category': instance['type'], - 'equivalent_identifiers': list(x['i'] for x in instance['identifiers'])}) + pass_nodes.append( + { + "id": equiv_id["i"], + "name": name, + "category": instance["type"], + "equivalent_identifiers": list(x["i"] for x in instance["identifiers"]), + } + ) # get the combinations of the nodes in this pass combos = combinations(pass_nodes, 2) @@ -131,11 +144,17 @@ def convert_to_kgx(self, outfile_name) -> bool: # for all the node combinations create an edge between them for c in combos: # create a unique id - record_id: str = c[0]['id'] + c[1]['id'] + f'{comp}' + record_id: str = c[0]["id"] + c[1]["id"] + f"{comp}" # save the edge - edges.append({'id': f'{hashlib.md5(record_id.encode("utf-8")).hexdigest()}', 'subject': c[0]['id'], - 'predicate': 'biolink:same_as', 'object': c[1]['id']}) + edges.append( + { + "id": f'{hashlib.md5(record_id.encode("utf-8")).hexdigest()}', + "subject": c[0]["id"], + "predicate": "biolink:same_as", + "object": c[1]["id"], + } + ) # save the nodes in this pass to the big list nodes.extend(pass_nodes) @@ -177,11 +196,11 @@ def convert_to_kgx(self, outfile_name) -> bool: edges_to_write = "\n" + "\n".join([json.dumps(edge) for edge in edges]) edge_file.write(edges_to_write) else: - self.print_debug_msg(f'Compendia file {comp} is invalid.', True) + self.print_debug_msg(f"Compendia file {comp} is invalid.", True) continue except Exception as e: - self.print_debug_msg(f'Exception thrown in convert_to_KGX(): {e}', True) + self.print_debug_msg(f"Exception thrown in convert_to_KGX(): {e}", True) ret_val = False # return to the caller @@ -221,7 +240,7 @@ async def load(self, block_size) -> bool: ret_val = True if self._test_mode == 1: - self.print_debug_msg(f'Test mode enabled. No data will be produced.', True) + self.print_debug_msg(f"Test mode enabled. No data will be produced.", True) try: # get the list of files in the directory @@ -237,32 +256,30 @@ async def load(self, block_size) -> bool: loaded = await self.load_compendium(comp, block_size) semantic_types_redis_pipeline = types_prefixes_redis.pipeline() # @TODO add meta data about files eg. checksum to this object - semantic_types_redis_pipeline.set( - f"file-{str(comp)}", json.dumps({"source_prefixes": self.source_prefixes}) - ) + semantic_types_redis_pipeline.set(f"file-{str(comp)}", json.dumps({"source_prefixes": self.source_prefixes})) if self._test_mode != 1: response = await RedisConnection.execute_pipeline(semantic_types_redis_pipeline) if asyncio.coroutines.iscoroutine(response): await response self.source_prefixes = {} if not loaded: - self.print_debug_msg(f'Compendia file {comp} did not load.', True) + self.print_debug_msg(f"Compendia file {comp} did not load.", True) continue else: - self.print_debug_msg(f'Compendia file {comp} is invalid.', True) + self.print_debug_msg(f"Compendia file {comp} is invalid.", True) continue for conf in self._conflations: loaded = await self.load_conflation(conf, block_size) if not loaded: - self.print_debug_msg(f'Conflation file {conf} did not load.', True) + self.print_debug_msg(f"Conflation file {conf} did not load.", True) continue # merge all semantic counts from other files / loaders await self.merge_semantic_meta_data() else: - self.print_debug_msg(f'Error: 1 or more data files were incorrect', True) + self.print_debug_msg(f"Error: 1 or more data files were incorrect", True) ret_val = False except Exception as e: - self.print_debug_msg(f'Exception thrown in load(): {e}', True) + logger.exception(f"Exception thrown in load()") raise e # return to the caller @@ -278,7 +295,7 @@ async def merge_semantic_meta_data(self): types_prefixes_pipeline = types_prefixes_redis.pipeline() # capture all keys except semenatic_types , as that would be the one that will contain the sum of all semantic types - meta_data_keys = list(filter(lambda key: key !="semantic_types" , meta_data_keys[0])) + meta_data_keys = list(filter(lambda key: key != "semantic_types", meta_data_keys[0])) # get actual data for meta_data_key in meta_data_keys: @@ -289,10 +306,10 @@ async def merge_semantic_meta_data(self): all_meta_data = {} for meta_data_key, meta_datum in zip(meta_data_keys, meta_data): if meta_datum: - all_meta_data[meta_data_key.decode('utf-8')] = json.loads(meta_datum.decode('utf-8')) + all_meta_data[meta_data_key.decode("utf-8")] = json.loads(meta_datum.decode("utf-8")) sources_prefix = {} for meta_data_key, data in all_meta_data.items(): - prefix_counts = data['source_prefixes'] + prefix_counts = data["source_prefixes"] for bl_type, curie_counts in prefix_counts.items(): # if sources_prefix[bl_type] = sources_prefix.get(bl_type, {}) @@ -306,7 +323,7 @@ async def merge_semantic_meta_data(self): if len(sources_prefix.keys()) > 0: # add all the semantic types - types_prefixes_pipeline.lpush('semantic_types', *list(sources_prefix.keys())) + types_prefixes_pipeline.lpush("semantic_types", *list(sources_prefix.keys())) # for each semantic type insert the list of source prefixes for item in sources_prefix: @@ -318,10 +335,13 @@ async def merge_semantic_meta_data(self): if asyncio.coroutines.iscoroutine(response): await response + def validate_compendia_sssom(self, in_file): + return sssom.io.validate_file(in_file) + def validate_compendia(self, in_file): # open the file to validate - with open(in_file, 'r') as compendium: - self.print_debug_msg(f'Validating {in_file}...', True) + with open(in_file, "r") as compendium: + logger.debug(f"Validating {in_file}...") # sample the file for line in islice(compendium, 5): @@ -331,8 +351,8 @@ def validate_compendia(self, in_file): # validate the incoming json against the spec jsonschema.validate(instance=instance, schema=self._validate_with) # catch any exceptions - except Exception as e: - self.print_debug_msg(f'Exception thrown in validate_compendia({in_file}): {e}', True) + except Exception: + logger.exception(f"Exception thrown in validate_compendia({in_file})") return False return True @@ -341,13 +361,12 @@ def get_compendia(self): """ Return the list of compendium files to load """ - file_list = [self._compendium_directory / file_name - for file_name in self._data_files] + file_list = [self._compendium_directory / file_name for file_name in self._data_files] for file in file_list: if not file.exists(): # This should probably raise an exception - self.print_debug_msg(f'DEBUG: file not found: {file.name}') + logger.warning(f"file not found: {file.name}") return file_list @@ -358,7 +377,7 @@ async def get_redis(db_name): """ Return a redis instance """ - redis_config_path = Path(__file__).parent.parent / 'redis_config.yaml' + redis_config_path = Path(__file__).parent.parent / "redis_config.yaml" connection_factory: RedisConnectionFactory = await RedisConnectionFactory.create_connection_pool(redis_config_path) connection = connection_factory.get_connection(db_name) return connection @@ -369,16 +388,16 @@ async def load_conflation(self, conflation: dict, block_size: int) -> bool: be read by R3. """ - conflation_file = conflation['file'] - conflation_redis_connection_name = conflation['redis_db'] + conflation_file = conflation["file"] + conflation_redis_connection_name = conflation["redis_db"] # init a line counter line_counter: int = 0 try: conflation_redis: RedisConnection = await self.get_redis(conflation_redis_connection_name) conflation_pipeline = conflation_redis.pipeline() - with open(f'{self._conflation_directory}/{conflation_file}', 'r', encoding="utf-8") as cfile: - self.print_debug_msg(f'Processing {conflation_file}...', True) + with open(f"{self._conflation_directory}/{conflation_file}", "r", encoding="utf-8") as cfile: + logger.debug(f"Processing {conflation_file}...") # for each line in the file for line in cfile: @@ -395,30 +414,38 @@ async def load_conflation(self, conflation: dict, block_size: int) -> bool: await RedisConnection.execute_pipeline(conflation_pipeline) # Pipeline executed create a new one error conflation_pipeline = conflation_redis.pipeline() - self.print_debug_msg(f'{line_counter} {conflation_file} lines processed.', True) + logger.debug(f"{line_counter} {conflation_file} lines processed.") if self._test_mode != 1: await RedisConnection.execute_pipeline(conflation_pipeline) - self.print_debug_msg(f'{line_counter} {conflation_file} total lines processed.', True) + logger.debug(f"{line_counter} {conflation_file} total lines processed.") - print(f'Done loading {conflation_file}...') - except Exception as e: - self.print_debug_msg(f'Exception thrown in load_conflation({conflation_file}), line {line_counter}: {e}', True) + print(f"Done loading {conflation_file}...") + except Exception: + logger.exception(f"Exception thrown in load_conflation({conflation_file}), line {line_counter}") return False # return to the caller return True - async def load_compendium(self, compendium_filename: str, block_size: int) -> bool: + def update_source_prefixes(self, semantic_type: Any, source_prefix: str): + # save the source prefix if no already there + if self.source_prefixes.get(semantic_type) is None: + self.source_prefixes[semantic_type] = {} + if self.source_prefixes[semantic_type].get(source_prefix) is None: + self.source_prefixes[semantic_type][source_prefix] = 1 + # else just increment the count for the semantic type/source + else: + self.source_prefixes[semantic_type][source_prefix] += 1 + + async def load_compendium_sssom(self, compendium_filename: str, block_size: int) -> bool: """ Given the full path to a compendium, load it into redis so that it can be read by R3. We also load extra keys, which are the upper-cased identifiers, for ease of use """ - - # init a line counter - line_counter: int = 0 try: + term2id_redis: RedisConnection = await self.get_redis("eq_id_to_id_db") id2eqids_redis: RedisConnection = await self.get_redis("id_to_eqids_db") id2type_redis: RedisConnection = await self.get_redis("id_to_type_db") @@ -429,95 +456,204 @@ async def load_compendium(self, compendium_filename: str, block_size: int) -> bo id2type_pipeline = id2type_redis.pipeline() info_content_pipeline = info_content_redis.pipeline() - with open(compendium_filename, 'r', encoding="utf-8") as compendium: - self.print_debug_msg(f'Processing {compendium_filename}...', True) + # sssom.io.parse_sssom_table(file_path=compendium_filename, prefix_map=, meta=) + mapping_set_data_frame = sssom.io.parse_sssom_table(file_path=compendium_filename) + group = mapping_set_data_frame.df.groupby(["subject_category", "subject_id", "subject_label"]) - # for each line in the file - for line in compendium: - line_counter = line_counter + 1 + entry_counter: int = 0 - # load the line into memory - instance: dict = json.loads(line) + for (subject_category, subject_id, subject_label), entries in group: + logger.info(f"subject_category: {subject_category}, subject_id: {subject_id}, subject_label: {subject_label}") - # save the identifier - # "The" identifier is the first one in the presorted identifiers list - identifier: str = instance['identifiers'][0]['i'] - - # We want to accumulate statistics for each implied type as well, though we are only keeping the - # leaf type in the file (and redis). so now is the time to expand. We'll regenerate the same - # list on output. - semantic_types = self.get_ancestors(instance['type']) - - # for each semantic type in the list - for semantic_type in semantic_types: - # save the semantic type in a set to avoid duplicates - self.semantic_types.add(semantic_type) - - # create a source prefix if it has not been encountered - if self.source_prefixes.get(semantic_type) is None: - self.source_prefixes[semantic_type] = {} - - # go through each equivalent identifier in the data row - # each will be assigned the semantic type information - for equivalent_id in instance['identifiers']: - # split the identifier to just get the data source out of the curie - source_prefix: str = equivalent_id['i'].split(':')[0] - - # save the source prefix if no already there - if self.source_prefixes[semantic_type].get(source_prefix) is None: - self.source_prefixes[semantic_type][source_prefix] = 1 - # else just increment the count for the semantic type/source - else: - self.source_prefixes[semantic_type][source_prefix] += 1 - - # equivalent_id might be an array, where the first element is - # the identifier, or it might just be a string. not worrying about that case yet. - equivalent_id = equivalent_id['i'] - term2id_pipeline.set(equivalent_id.upper(), identifier) - # term2id_pipeline.set(equivalent_id, identifier) - - id2eqids_pipeline.set(identifier, json.dumps(instance['identifiers'])) - id2type_pipeline.set(identifier, instance['type']) - - # if there is information content add it to the cache - if 'ic' in instance: - info_content_pipeline.set(identifier, instance['ic']) + entry_counter = entry_counter + 1 - if self._test_mode != 1 and line_counter % block_size == 0: - await RedisConnection.execute_pipeline(term2id_pipeline) - await RedisConnection.execute_pipeline(id2eqids_pipeline) - await RedisConnection.execute_pipeline(id2type_pipeline) - await RedisConnection.execute_pipeline(info_content_pipeline) + identifier = str(subject_id) - # Pipeline executed create a new one error - term2id_pipeline = term2id_redis.pipeline() - id2eqids_pipeline = id2eqids_redis.pipeline() - id2type_pipeline = id2type_redis.pipeline() - info_content_pipeline = info_content_redis.pipeline() + semantic_types = self.get_ancestors(subject_category) - self.print_debug_msg(f'{line_counter} {compendium_filename} lines processed.', True) + # save the semantic type in a set to avoid duplicates + [self.semantic_types.add(semantic_type) for semantic_type in semantic_types] - if self._test_mode != 1: + subject_prefix: str = subject_id.split(":")[0] + self.update_source_prefixes(subject_category, subject_prefix) + + ic_values = set() + for other in entries.loc[:, "other"]: + if other is not None: + other_json = json.loads(other) + if "subject_information_content" in other_json: + ic_values.add(other_json["subject_information_content"]) + + # if there is information content add it to the cache + if len(ic_values) > 1: + logger.debug(f"ic_values: {ic_values}") + logger.warning("len(ic_values) is > 1 across entries") + + # for each semantic type in the list + for semantic_type in semantic_types: + + logger.info(f"semantic_type: {semantic_type}") + + id2eqids_instance = [{"i": identifier, "l": str(subject_label)}] + + # go through each equivalent identifier in the data row + # each will be assigned the semantic type information + for (object_id, object_label, other) in entries[["object_id", "object_label", "other"]].values: + if subject_id == object_id and subject_label == object_label: + continue + + logger.info(f"object_id: {object_id}, object_label: {object_label}, other: {other}") + + source_prefix: str = object_id.split(":")[0] + self.update_source_prefixes(semantic_type, source_prefix) + + id2eqids_instance.append({"i": object_id, "l": object_label}) + term2id_pipeline.set(str(object_id).upper(), identifier) + + id2eqids_pipeline.set(identifier, json.dumps(id2eqids_instance)) + id2type_pipeline.set(identifier, subject_category) + + if len(ic_values) == 1: + info_content_pipeline.set(identifier, next(iter(ic_values))) + + if self._test_mode != 1 and entry_counter % block_size == 0: await RedisConnection.execute_pipeline(term2id_pipeline) await RedisConnection.execute_pipeline(id2eqids_pipeline) await RedisConnection.execute_pipeline(id2type_pipeline) await RedisConnection.execute_pipeline(info_content_pipeline) - self.print_debug_msg(f'{line_counter} {compendium_filename} total lines processed.', True) + # Pipeline executed create a new one error + term2id_pipeline = term2id_redis.pipeline() + id2eqids_pipeline = id2eqids_redis.pipeline() + id2type_pipeline = id2type_redis.pipeline() + info_content_pipeline = info_content_redis.pipeline() - print(f'Done loading {compendium_filename}...') - except Exception as e: - self.print_debug_msg(f'Exception thrown in load_compendium({compendium_filename}), line {line_counter}: {e}', True) + logger.debug(f"{entry_counter} {compendium_filename} entries processed") + + if self._test_mode != 1: + await RedisConnection.execute_pipeline(term2id_pipeline) + await RedisConnection.execute_pipeline(id2eqids_pipeline) + await RedisConnection.execute_pipeline(id2type_pipeline) + await RedisConnection.execute_pipeline(info_content_pipeline) + + logger.debug(f"{entry_counter} {compendium_filename} total entries processed") + + logger.info(f"Done loading {compendium_filename}...") + except Exception: + logger.exception(f"Exception thrown in load_compendium_sssom({compendium_filename})") return False # return to the caller return True - def print_debug_msg(self, msg: str, force: bool = False): + async def load_compendium(self, compendium_filename: str, block_size: int) -> bool: """ - Prints a debug message if enabled in the config file + Given the full path to a compendium, load it into redis so that it can + be read by R3. We also load extra keys, which are the upper-cased + identifiers, for ease of use """ - if self._config['debug_messages'] == 1 or force: - now: datetime = datetime.now() - print(f'{now.strftime("%Y/%m/%d %H:%M:%S")} - {msg}') + # init a line counter + line_counter: int = 0 + try: + term2id_redis: RedisConnection = await self.get_redis("eq_id_to_id_db") + id2eqids_redis: RedisConnection = await self.get_redis("id_to_eqids_db") + id2type_redis: RedisConnection = await self.get_redis("id_to_type_db") + info_content_redis: RedisConnection = await self.get_redis("info_content_db") + + term2id_pipeline = term2id_redis.pipeline() + id2eqids_pipeline = id2eqids_redis.pipeline() + id2type_pipeline = id2type_redis.pipeline() + info_content_pipeline = info_content_redis.pipeline() + + lines = list() + if compendium_filename.endswith("sssom.tsv"): + lines = nn_io_rs.sssom_to_legacy_format(str(compendium_filename)) + + if compendium_filename.endswith("json"): + file = open(compendium_filename, "r", encoding="utf-8") + lines = file.readlines() + file.close() + + logger.debug(f"Processing {compendium_filename} ({len(lines)} lines)...") + + # for each line in the file + for line in lines: + line_counter = line_counter + 1 + + # load the line into memory + instance: dict = json.loads(line) + + # save the identifier + # "The" identifier is the first one in the presorted identifiers list + identifier: str = instance["identifiers"][0]["i"] + + # We want to accumulate statistics for each implied type as well, though we are only keeping the + # leaf type in the file (and redis). so now is the time to expand. We'll regenerate the same + # list on output. + semantic_types = self.get_ancestors(instance["type"]) + + # for each semantic type in the list + for semantic_type in semantic_types: + # save the semantic type in a set to avoid duplicates + self.semantic_types.add(semantic_type) + + # create a source prefix if it has not been encountered + if self.source_prefixes.get(semantic_type) is None: + self.source_prefixes[semantic_type] = {} + + # go through each equivalent identifier in the data row + # each will be assigned the semantic type information + for equivalent_id in instance["identifiers"]: + # split the identifier to just get the data source out of the curie + source_prefix: str = equivalent_id["i"].split(":")[0] + + # save the source prefix if no already there + if self.source_prefixes[semantic_type].get(source_prefix) is None: + self.source_prefixes[semantic_type][source_prefix] = 1 + # else just increment the count for the semantic type/source + else: + self.source_prefixes[semantic_type][source_prefix] += 1 + + # equivalent_id might be an array, where the first element is + # the identifier, or it might just be a string. not worrying about that case yet. + equivalent_id = equivalent_id["i"] + term2id_pipeline.set(equivalent_id.upper(), identifier) + # term2id_pipeline.set(equivalent_id, identifier) + + id2eqids_pipeline.set(identifier, json.dumps(instance["identifiers"])) + id2type_pipeline.set(identifier, instance["type"]) + + # if there is information content add it to the cache + if "ic" in instance: + info_content_pipeline.set(identifier, instance["ic"]) + + if self._test_mode != 1 and line_counter % block_size == 0: + await RedisConnection.execute_pipeline(term2id_pipeline) + await RedisConnection.execute_pipeline(id2eqids_pipeline) + await RedisConnection.execute_pipeline(id2type_pipeline) + await RedisConnection.execute_pipeline(info_content_pipeline) + + # Pipeline executed create a new one error + term2id_pipeline = term2id_redis.pipeline() + id2eqids_pipeline = id2eqids_redis.pipeline() + id2type_pipeline = id2type_redis.pipeline() + info_content_pipeline = info_content_redis.pipeline() + + logger.debug(f"{line_counter} {compendium_filename} lines processed") + + if self._test_mode != 1: + await RedisConnection.execute_pipeline(term2id_pipeline) + await RedisConnection.execute_pipeline(id2eqids_pipeline) + await RedisConnection.execute_pipeline(id2type_pipeline) + await RedisConnection.execute_pipeline(info_content_pipeline) + + logger.debug(f"{line_counter} {compendium_filename} total lines processed") + + logger.info(f"Done loading {compendium_filename}...") + except Exception: + logger.exception(f"Exception thrown in load_compendium({compendium_filename}), line {line_counter}") + return False + + # return to the caller + return True From 11b42f0bb5dcf3f5657051403f898f4811f5bfef Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:08:09 -0400 Subject: [PATCH 06/15] adding setuptools --- requirements.txt | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7a4813e..60f4c3c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,21 @@ -redis~=3.5.3 -fastapi==0.65.2 -reasoner-pydantic==1.2.0.4 -uvicorn==0.15.0 -jsonschema~=3.2.0 -pytest==6.2.4 -pytest-cov==2.12.1 -pytest-asyncio==0.15.1 aioredis~=1.3.1 -pyyaml~=5.4.1 -requests~=2.25.1 -starlette==0.14.2 +bmt==0.8.4 +fastapi==0.78.0 +httptools==0.4.0 +jsonschema~=4.6.0 +numpy~=1.22.4 +pydantic~=1.9.1 +pytest==7.1.2 +pytest-cov==3.0.0 +pytest-asyncio==0.18.3 +pyyaml~=6.0 +reasoner-pydantic==2.2.2 +redis~=3.5.3 redis-py-cluster==2.1.3 -bmt==0.7.6 -httptools==0.3.0 -uvloop==0.16.0 \ No newline at end of file +requests~=2.27.1 +setuptools~=57.0.0 +sssom==0.3.11 +starlette==0.19.1 +uvicorn==0.17.6 +uvloop==0.16.0 + From ec31a327b88837df7ae673af0bdece2b3f6b69df Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:11:56 -0400 Subject: [PATCH 07/15] initial commit --- tests/resources/Cell.json | 7752 +++++++++++++++++++++++++++++ tests/resources/Cell.sssom.tsv | 8501 ++++++++++++++++++++++++++++++++ 2 files changed, 16253 insertions(+) create mode 100644 tests/resources/Cell.json create mode 100644 tests/resources/Cell.sssom.tsv diff --git a/tests/resources/Cell.json b/tests/resources/Cell.json new file mode 100644 index 0000000..c71290a --- /dev/null +++ b/tests/resources/Cell.json @@ -0,0 +1,7752 @@ +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979650", "l": "Blasts.cytoplasmic CD34"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002010", "l": "pre-conventional dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170940", "l": "Leukocytes | Stool | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2828335", "l": "Balloon Melanoma Cell"}, {"i": "NCIT:C62403", "l": "Balloon Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733660", "l": "Total Tumor mRNA-pulsed Tumor-specific Ex vivo-expanded Autologous Lymphocyte Transfer Cells"}, {"i": "NCIT:C155969", "l": "Total Tumor mRNA-pulsed Tumor-specific Ex vivo-expanded Autologous Lymphocyte Transfer Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514020", "l": "Neoplastic Medium-Sized to Large T-Lymphocyte"}, {"i": "NCIT:C39614", "l": "Neoplastic Medium-Sized to Large T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0007601", "l": "Cell Line, Transformed"}, {"i": "MESH:D002461", "l": "Cell Line, Transformed"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727036", "l": "Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01"}, {"i": "NCIT:C153118", "l": "Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173435", "l": "Monocytes | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708895", "l": "Malignant Neuroendocrine Small to Intermediate Size Cell"}, {"i": "NCIT:C45982", "l": "Malignant Neuroendocrine Small to Intermediate Size Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979641", "l": "Blast cell positive for CD24 antigen"}, {"i": "SNOMEDCT:724264006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4704950", "l": "Adipose-Derived Mesenchymal Stem Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513993", "l": "Neoplastic Keratinocyte"}, {"i": "NCIT:C36749", "l": "Neoplastic Keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257742", "l": "BALB 3T3 clone A31"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "NCIT:C33771", "l": "Thymic Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002674", "l": "H minus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1525452", "l": "Cells.CD11b+CD11c+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440309", "l": "Cells.CD42b"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "NCIT:C12977", "l": "Pluripotent Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0541681", "l": "Marrow Monocytes and Plasma Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0242245", "l": "Dendritic Cells, Follicular"}, {"i": "NCIT:C12622", "l": "Follicular Dendritic Cell"}, {"i": "MESH:D020566", "l": "Dendritic Cells, Follicular"}, {"i": "SNOMEDCT:56685008"}]} +{"type": "biolink:Cell", "ic": "60.993801520386391", "identifiers": [{"i": "CL:0002076", "l": "endo-epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507327", "l": "Cells.FLAER"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267860", "l": "Lymphocyte positive for CD9 antigen"}, {"i": "SNOMEDCT:117542003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178741", "l": "Be2 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513930", "l": "Neoplastic B-Prolymphocyte"}, {"i": "NCIT:C37183", "l": "Neoplastic B-Prolymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440395", "l": "Cells.SmIg"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182616", "l": "Neurecto-epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338473", "l": "Transitional myocyte of atrial branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336894", "l": "Goblet cell of epithelium proper of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182620", "l": "Epithelial cell of nasolacrimal duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4525410", "l": "Alloantigen-specific Allogeneic Type 1 Regulatory T Cells T-allo10"}, {"i": "NCIT:C134838", "l": "Alloantigen-specific Allogeneic Type 1 Regulatory T Cells T-allo10"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518168", "l": "Population of all immature basophils in portion of fluid"}, {"i": "SNOMEDCT:725439004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333844", "l": "Flaming plasma cell"}, {"i": "SNOMEDCT:81739009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0027950", "l": "neutrophil"}, {"i": "NCIT:C12533", "l": "Neutrophil"}, {"i": "MESH:D009504", "l": "Neutrophils"}, {"i": "SNOMEDCT:116712007"}]} +{"type": "biolink:Cell", "ic": "62.58441683152963", "identifiers": [{"i": "CL:0000183", "l": "contractile cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001575", "l": "uterine cervix squamous cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D007395", "l": "Interneurons"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005008", "l": "macular hair cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179470", "l": "Epithelial cell of stomach"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157922", "l": "Cells | Left anterior chamber | NEI eyeGENE slit lamp biomicroscopy"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0005024", "l": "somatomotor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170944", "l": "Leukocytes | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2981181", "l": "Autologous PBTL CD19CAR-28 zeta"}, {"i": "NCIT:C78823", "l": "Autologous PBTL CD19CAR-28 zeta"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514272", "l": "Postgerminal Center B-Lymphocyte of Unknown Differentiation Stage"}, {"i": "NCIT:C38341", "l": "Postgerminal Center B-Lymphocyte of Unknown Differentiation Stage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0042542", "l": "Vero Cells"}, {"i": "MESH:D014709", "l": "Vero Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518752", "l": "Mouse Ovarian Interstitial Cell"}, {"i": "NCIT:C22663", "l": "Mouse Ovarian Interstitial Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000432", "l": "reticular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831434", "l": "Autologous Mesenchymal Stem Cells Apceth_101"}, {"i": "NCIT:C113803", "l": "Autologous Mesenchymal Stem Cells Apceth_101"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3498290", "l": "A6sc cell group"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684890", "l": "Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19"}, {"i": "NCIT:C142887", "l": "Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:2000021", "l": "sebaceous gland cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440367", "l": "Cells.CD90"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1514034", "l": "Neoplastic Myeloblast"}, {"i": "NCIT:C37065", "l": "Neoplastic Myeloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0884137", "l": "Cells.CD3+CD16+/100 cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000834", "l": "neutrophil progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1648297", "l": "Cells.CD38+Lambda+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086010", "l": "Autologous beta-A(T87Q)-globin Gene-transduced CD34-positive Cells"}, {"i": "NCIT:C123881", "l": "Betibeglogene Autotemcel"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000813", "l": "memory T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000570", "l": "parafollicular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170951", "l": "Leukocytes other | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709171", "l": "Neoplastic Eosinophilic Precursor"}, {"i": "NCIT:C43232", "l": "Neoplastic Eosinophilic Precursor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0598170", "l": "Melanoblast"}, {"i": "NCIT:C85503", "l": "Melanoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155101", "l": "Bizarre platelets | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684104", "l": "glomerul(o)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514004", "l": "Neoplastic T-Cell Large Granular Lymphocyte"}, {"i": "NCIT:C37019", "l": "Neoplastic T-Cell Large Granular Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181363", "l": "Spermatozoa Motile | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000080", "l": "circulating cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440148", "l": "Blasts.CD5"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711301", "l": "Malignant Oval Endothelial Cell"}, {"i": "NCIT:C53413", "l": "Malignant Oval Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1510738", "l": "Abnormal Trophoblastic Cell"}, {"i": "NCIT:C36799", "l": "Abnormal Trophoblastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168979", "l": "Immature eosinophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514732", "l": "Rat-1"}, {"i": "NCIT:C19584", "l": "Rat-1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163722", "l": "Erythrocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178785", "l": "Adrenergic Neurons"}, {"i": "MESH:D059331", "l": "Adrenergic Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1829707", "l": "Cells.ZAP70+CD19+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0301867", "l": "Forbidden clone"}, {"i": "SNOMEDCT:24309006"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0005020", "l": "lymphangioblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D058953", "l": "Neural Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157470", "l": "CD3+HLA-DR+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000025", "l": "spinal cord oligodendrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000310", "l": "iron accumulating cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157664", "l": "CD8 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009069", "l": "CD8aa(II) thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002436", "l": "mature CD4 single-positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1514174", "l": "Pleomorphic Lymphocyte"}, {"i": "NCIT:C36995", "l": "Pleomorphic Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5151351", "l": "Abnormal lymphocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513945", "l": "Neoplastic Cuboidal Cell"}, {"i": "NCIT:C42082", "l": "Neoplastic Cuboidal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440317", "l": "Cells.CD45RO"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163724", "l": "Erythrocytes | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0314593", "l": "Colony-forming unit of megakarocytic lineage"}, {"i": "NCIT:C121478", "l": "Megakaryocyte Colony Forming Unit"}, {"i": "SNOMEDCT:445093009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000351", "l": "basal cell of epithelium of respiratory bronchiole"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "CL:0000077", "l": "mesothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C13015", "l": "Myeloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336440", "l": "Secondary motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514111", "l": "Neoplastic T-Lymphocyte with Clear Cytoplasm"}, {"i": "NCIT:C39657", "l": "Neoplastic T-Lymphocyte with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000057", "l": "femural osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440412", "l": "Cells.t(5;12)(q33.1;p13)(PDGFRB,ETV6)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002505", "l": "liver CD103-negative dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682548", "l": "Amphophilic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1978611", "l": "Cells.CD3+CD8+CD57+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323029", "l": "Mesothelial cell of dura mater"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519090", "l": "Pinealocyte"}, {"i": "NCIT:C33323", "l": "Pineocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322726", "l": "Mesothelial cell of arachnoid mater"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2930256", "l": "autologous cultured chondrocytes 1.2e+007 INTRA-ARTICULAR IMPLANT [CARTICEL]"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000779", "l": "multinuclear osteoclast"}]} +{"type": "biolink:Cell", "ic": "52.69729769927708", "identifiers": [{"i": "CL:0000988", "l": "hematopoietic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000612", "l": "eosinophilic myelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1978609", "l": "Cells.CD3+CD57+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727621", "l": "Autologous NY-ESO-1 TCR-targeted T Lymphocytes"}, {"i": "NCIT:C148150", "l": "Autologous NY-ESO-1 TCR-targeted T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002050", "l": "Fraction C' precursor B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157330", "l": "CD16+CD57+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1519112", "l": "Round Striated Muscle Cell"}, {"i": "NCIT:C36950", "l": "Round Striated Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023044", "l": "non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000636", "l": "Mueller cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831522", "l": "Anti-CD19-CAR FMC63-28Z Retroviral Vector-transduced Allogeneic T-lymphocytes"}, {"i": "NCIT:C111041", "l": "Anti-CD19-CAR FMC63-28Z Retroviral Vector-transduced Allogeneic T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831440", "l": "Autologous CD19-28z Chimeric Antigen Receptor-expressing T-lymphocytes"}, {"i": "NCIT:C106247", "l": "Autologous CD19-28z Chimeric Antigen Receptor-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5196052", "l": "Human Cord Blood Hematopoietic Progenitor Cell 900000000 in 25 mL INTRAVENOUS SOLUTION [HEMATOPOIETIC PROGENITOR CELLS, CORD BLOOD]"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:1001225", "l": "kidney collecting duct cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172546", "l": "Metamyelocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157396", "l": "CD22 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175604", "l": "Other cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002415", "l": "immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267823", "l": "T lymphocyte positive for both CD4 antigen and CD29 antigen"}, {"i": "SNOMEDCT:115401003"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002570", "l": "mesenchymal stem cell of adipose tissue"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440231", "l": "Cell positive for BCL2 protein"}, {"i": "SNOMEDCT:725310003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514173", "l": "Pleomorphic Lipoblast"}, {"i": "NCIT:C36974", "l": "Pleomorphic Lipoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181132", "l": "Smudge cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362002", "l": "CD41-Bf"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000709", "l": "R8 photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2348033", "l": "Cytomegalovirus pp65-Specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C71747", "l": "Cytomegalovirus pp65-Specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598613", "l": "HTC cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333057", "l": "Myocyte of middle internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173470", "l": "Monocytes+Macrophages | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C0024432", "l": "macrophage"}, {"i": "NCIT:C12558", "l": "Macrophage"}]} +{"type": "biolink:Cell", "ic": "69.63974591466652", "identifiers": [{"i": "UMLS:C4528422", "l": "NCI-60 Cell Line"}, {"i": "NCIT:C139309", "l": "NCI-60 Cell Line"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C0023516", "l": "Leukocytes"}, {"i": "NCIT:C12529", "l": "Leukocyte"}, {"i": "MESH:D007962", "l": "Leukocytes"}, {"i": "SNOMEDCT:52501007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518043", "l": "Lutzner Cell"}, {"i": "NCIT:C39648", "l": "Lutzner Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267885", "l": "Lymphoblast positive for CD19 antigen"}, {"i": "SNOMEDCT:117562006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267708", "l": "100 cells.CD3+CD8+"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002404", "l": "fetal thymocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002203", "l": "brush cell of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3830410", "l": "DNR-expressing Nasopharyngeal Carcinoma-specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C114378", "l": "DNR-expressing Nasopharyngeal Carcinoma-specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001502", "l": "mitral cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3177154", "l": "Mononuclear+Mesothelial cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002057", "l": "CD14-positive, CD16-negative classical monocyte"}]} +{"type": "biolink:Cell", "ic": "76.412572999466406", "identifiers": [{"i": "CL:0000154", "l": "protein secreting cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1518194", "l": "Malignant Mesothelial Cell"}, {"i": "NCIT:C36831", "l": "Malignant Mesothelial Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000774", "l": "band form eosinophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0001280", "l": "Armed macrophage"}, {"i": "SNOMEDCT:86373002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002612", "l": "neuron of the ventral spinal cord"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514074", "l": "Neoplastic Promonocyte"}, {"i": "NCIT:C37075", "l": "Neoplastic Promonocyte"}]} +{"type": "biolink:Cell", "ic": "75.076548671259488", "identifiers": [{"i": "CL:0000067", "l": "ciliated epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000607", "l": "ascospore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157272", "l": "CD11c cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000808", "l": "DN4 thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002416", "l": "mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000606", "l": "macroconidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329862", "l": "Set of adrenergic cells in area postrema [C1]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4512353", "l": "Entire secondary sclerotic mastoid cell"}, {"i": "SNOMEDCT:727109004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512309", "l": "HL-60/MX2"}, {"i": "NCIT:C20229", "l": "HL-60/MX2"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831562", "l": "Allogeneic Glioblastoma Stem-like Cell Line Lysate-pulsed Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C113296", "l": "Allogeneic Glioblastoma Stem-like Cell Line Lysate-pulsed Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334994", "l": "Brush cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2608015", "l": "Platelets.large"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000561", "l": "amacrine cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1518175", "l": "Malignant Epithelial Clear Cell"}, {"i": "NCIT:C36784", "l": "Malignant Epithelial Clear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023112", "l": "vestibular afferent neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000290", "l": "myocyte of middle internodal tract"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002112", "l": "B220-positive CD38-negative unswitched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183900", "l": "Basal cell of prostatic duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516901", "l": "Eosinophilic Meningothelial Cell"}, {"i": "NCIT:C37159", "l": "Eosinophilic Meningothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882931", "l": "Cells.CD8+CD25+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002578", "l": "mesenteric preadipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510890", "l": "Blast cell positive for CD5 antigen"}, {"i": "SNOMEDCT:724316000"}]} +{"type": "biolink:Cell", "ic": "71.632434359930443", "identifiers": [{"i": "CL:0000161", "l": "acid secreting cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000221", "l": "ectodermal cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000425", "l": "chromaffin cell of paraganglion"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12647", "l": "Nitrergic Neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168981", "l": "Immature lymphocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517659", "l": "Keratinizing Malignant Squamous Cell"}, {"i": "NCIT:C36791", "l": "Keratinizing Malignant Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4053747", "l": "Allogeneic Mesothelioma Tumor Lysate-pulsed Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C121640", "l": "Allogeneic Mesothelioma Tumor Lysate-pulsed Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514137", "l": "Plant Tissue, Cells"}, {"i": "NCIT:C18945", "l": "Plant Tissue, Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171750", "l": "Lymphocytes+Monocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1525453", "l": "Cells.CD19+CD33+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000998", "l": "CD8_alpha-negative CD11b-negative dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517358", "l": "GE91"}, {"i": "NCIT:C20261", "l": "GE91"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514012", "l": "Neoplastic Mast Cell"}, {"i": "NCIT:C37062", "l": "Neoplastic Mast Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724860", "l": "Autologous Mesothelin-specific CAR-T Cells"}, {"i": "NCIT:C148160", "l": "Autologous Mesothelin-specific CAR-T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055455", "l": "Anti-mesothelin iCasp9M28z CAR-transduced Autologous T Lymphocytes"}, {"i": "NCIT:C121782", "l": "Anti-mesothelin iCasp9M28z CAR-transduced Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1269647", "l": "Entire cell"}, {"i": "SNOMEDCT:362837007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325187", "l": "Lens epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0440752", "l": "Inflammatory cell"}, {"i": "SNOMEDCT:256923004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157381", "l": "CD20+CD25- cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000927", "l": "CD4-positive type I NK T cell secreting interleukin-4"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023005", "l": "dynamic nuclear bag fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000482", "l": "myocardial endocrine cell of interventricular septum"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0005025", "l": "visceromotor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335684", "l": "Myocyte of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000001", "l": "primary cultured cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2717940", "l": "Hep G2 Cells"}, {"i": "MESH:D056945", "l": "Hep G2 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170926", "l": "Leukocytes | Dialysis fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1515881", "l": "Activated Natural Killer Cell"}, {"i": "NCIT:C39609", "l": "Activated Natural Killer Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524911", "l": "3D-expanded Placenta-derived Cells PLX-R18"}, {"i": "NCIT:C133823", "l": "3D-expanded Placenta-derived Cells PLX-R18"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229647", "l": "Basophilic metamyelocyte"}, {"i": "SNOMEDCT:63369000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0008572", "l": "Chromatophore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326176", "l": "Set of serotoninergic cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1879787", "l": "Basal Cell of the Squamous Epithelium"}, {"i": "NCIT:C61604", "l": "Basal Cell of the Squamous Epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170916", "l": "Leukocytes | Bile fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514094", "l": "Neoplastic Small T-Prolymphocyte"}, {"i": "NCIT:C39571", "l": "Neoplastic Small T-Prolymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000365", "l": "transitional myocyte of atrial septal branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1709177", "l": "Neoplastic Granulocyte"}, {"i": "NCIT:C43230", "l": "Neoplastic Granulocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002589", "l": "smooth muscle cell of the brachiocephalic vasculature"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000014", "l": "germ line stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163548", "l": "Epithelial cells.extrarenal | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009086", "l": "endothelial cell of respiratory system lymphatic vessel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333719", "l": "Anuclear squame"}, {"i": "SNOMEDCT:85313000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267813", "l": "Lymphocyte positive for CD2 antigen"}, {"i": "SNOMEDCT:117516003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000315", "l": "tear secreting cell"}]} +{"type": "biolink:Cell", "ic": "68.560173062599716", "identifiers": [{"i": "CL:0000737", "l": "striated muscle cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C0039195", "l": "Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C12543", "l": "Cytotoxic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001109", "l": "kidney loop of Henle cortical thick ascending limb epithelial cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000922", "l": "type II NK T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2350467", "l": "Invariant Natural Killer T-Cells"}, {"i": "NCIT:C115216", "l": "Invariant Natural Killer T-Cell"}, {"i": "NCIT:NMDP/CIBMTR"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682552", "l": "Parenchymal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641664", "l": "Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001"}, {"i": "NCIT:C103865", "l": "Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009080", "l": "tuft cell of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1648295", "l": "Cells.CD13+CD56+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000486", "l": "basal cell of urothelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0013000", "l": "forebrain radial glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009027", "l": "transit amplifying cell of appendix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055424", "l": "Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01"}, {"i": "NCIT:C121536", "l": "Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0002454", "l": "Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:1000454", "l": "kidney collecting duct epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333771", "l": "Coil/whorled fibers"}, {"i": "SNOMEDCT:487002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001220", "l": "arcuate vein endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2599203", "l": "Donated egg"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163554", "l": "Epithelial cells.squamous | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163442", "l": "Eosinophils | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002148", "l": "dental pulp cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009044", "l": "lymphocyte of small intestine lamina propria"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001561", "l": "vomeronasal sensory neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899992", "l": "Autologous TNS9.3.55-transduced CD34-positive Cells"}, {"i": "NCIT:C116734", "l": "Autologous TNS9.3.55-transduced CD34-positive Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170008", "l": "Kappa lymphocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1520156", "l": "Wisconsin ES Cell Line"}, {"i": "NCIT:C20307", "l": "Wisconsin ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157440", "l": "CD3+CD4+CD27+CD45RO+CD62L+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176904", "l": "Cells.CD3+CD5+"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "UMLS:C1518241", "l": "Malignant Small Cell"}, {"i": "NCIT:C36860", "l": "Malignant Small Cell"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000108", "l": "cholinergic neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515428", "l": "Thymic B-Lymphocyte"}, {"i": "NCIT:C38329", "l": "Thymic B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1518180", "l": "Malignant Epithelioid Cell"}, {"i": "NCIT:C41435", "l": "Malignant Epithelioid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229628", "l": "Basophilic normoblast"}, {"i": "NCIT:C13130", "l": "Basophilic Erythroblast"}, {"i": "SNOMEDCT:464005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179876", "l": "Myocardial endocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000597", "l": "microconidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230520", "l": "Mitotic cell in metaphase"}, {"i": "SNOMEDCT:38980003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3653065", "l": "stem cells from umbilical cord blood"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4301985", "l": "Motile spermatozoa"}, {"i": "SNOMEDCT:723202000"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514181", "l": "Pleomorphic T-Lymphocyte"}, {"i": "NCIT:C36997", "l": "Pleomorphic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896803", "l": "Allogeneic Natural Killer Cell Line NK-92"}, {"i": "UMLS:C4552849", "l": "haNK"}, {"i": "NCIT:C117231", "l": "Allogeneic Natural Killer Cell Line NK-92"}]} +{"type": "biolink:Cell", "ic": "68.86768025975131", "identifiers": [{"i": "CL:0000167", "l": "peptide hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009035", "l": "stromal cell of lamina propria of vermiform appendix"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1518179", "l": "Malignant Epithelial Spindle Cell"}, {"i": "NCIT:C37109", "l": "Malignant Epithelial Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0376448", "l": "Jurkat Cells"}, {"i": "MESH:D019169", "l": "Jurkat Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440340", "l": "CD62P Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0027625", "l": "Circulating Neoplastic Cells"}, {"i": "NCIT:C63797", "l": "Circulating Tumor Cell"}, {"i": "MESH:D009360", "l": "Neoplastic Cells, Circulating"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329333", "l": "Anti-LeY-CAR-transduced Autologous T-Lymphocytes"}, {"i": "NCIT:C132683", "l": "Anti-LeY-CAR-transduced Autologous T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2347347", "l": "Ad5F35-LMP1/LMP2-Transduced Autologous Dendritic Cells"}, {"i": "NCIT:C73995", "l": "Ad5F35-LMP1/LMP2-Transduced Autologous Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002155", "l": "echinocyte"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1512141", "l": "ES ES Cell Line"}, {"i": "NCIT:C20248", "l": "ES ES Cell Line"}]} +{"type": "biolink:Cell", "ic": "73.344328060803463", "identifiers": [{"i": "CL:0000893", "l": "thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324226", "l": "Nonkeratinized cell of epithelium of inferior part of anal canal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022567", "l": "keratinocyte"}, {"i": "SNOMEDCT:74447004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002533", "l": "immature CD16-positive myeloid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C0018183", "l": "granulocyte"}, {"i": "NCIT:C12530", "l": "Granulocyte"}, {"i": "MESH:D006098", "l": "Granulocytes"}, {"i": "SNOMEDCT:256909001"}, {"i": "SNOMEDCT:48791004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4683875", "l": "Atypical Squamous Cell-Favor High-Grade Squamous Intraepithelial Lesion"}, {"i": "NCIT:C141519", "l": "Atypical Squamous Cell-Favor High-Grade Squamous Intraepithelial Lesion"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179517", "l": "Acinar cell of pancreas"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518172", "l": "Population of all fetal erythrocytes in portion of fluid"}, {"i": "SNOMEDCT:725441003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000065", "l": "ovarian microvascular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522157", "l": "Leukocyte - Promonocyte (MMHCC)"}, {"i": "NCIT:C22585", "l": "Mouse Promonocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510889", "l": "Blast cell positive for CD7 antigen"}, {"i": "SNOMEDCT:724315001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515275", "l": "Terminal Ductal Lobular Unit Cell"}, {"i": "NCIT:C33756", "l": "Terminal Ductal Lobular Unit Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5159882", "l": "Circulating tumor cells.prostate | Blood | Chemistry - non-challenge"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:1000500", "l": "kidney interstitial cell"}]} +{"type": "biolink:Cell", "ic": "39.487348087201433", "identifiers": [{"i": "CL:0000000", "l": "cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324943", "l": "Delayed type hypersensitivity-related T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0206428", "l": "Retinal Cone"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267938", "l": "Lymphocyte positive for CD49C antigen"}, {"i": "SNOMEDCT:117381002"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0014792", "l": "Erythrocytes"}, {"i": "NCIT:C12521", "l": "Erythrocyte"}, {"i": "MESH:D004912", "l": "Erythrocytes"}, {"i": "SNOMEDCT:41898006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010022", "l": "cardiac neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002266", "l": "type D cell of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000001", "l": "retrotrapezoid nucleus neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086006", "l": "Autologous Cytotoxic T-lymphocytes Induced with MUC1 Peptide-pulsed Dendritic Cells"}, {"i": "NCIT:C124998", "l": "Autologous Cytotoxic T-lymphocytes Induced with MUC1 Peptide-pulsed Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512639", "l": "Immature Platelet"}, {"i": "NCIT:C13126", "l": "Immature Platelet"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440328", "l": "Cells.CD5+CD8+"}]} +{"type": "biolink:Cell", "ic": "52.448104264660223", "identifiers": [{"i": "UMLS:C0597032", "l": "Neoplastic Cell"}, {"i": "NCIT:C12922", "l": "Neoplastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545677", "l": "Alveolar cell, type 3"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1275629", "l": "Keratocyte"}, {"i": "SNOMEDCT:397052000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710537", "l": "Undifferentiated Neoplastic Blast"}, {"i": "NCIT:C42873", "l": "Undifferentiated Neoplastic Blast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708866", "l": "Malignant Chromaffin Cell"}, {"i": "NCIT:C48560", "l": "Malignant Chromaffin Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246710", "l": "Vascular smooth muscle cell of coronary artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4745003", "l": "Autologous Anti-BCMA-CAR-mRNA-transfected CD8+ T-lymphocytes"}, {"i": "NCIT:C156706", "l": "Autologous Anti-BCMA-CAR-mRNA-transfected CD8+ T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517733", "l": "Large Megakaryocyte"}, {"i": "NCIT:C37044", "l": "Large Megakaryocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0883472", "l": "CD3-CD16+CD56+ cell"}, {"i": "SNOMEDCT:732281006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157449", "l": "CD3+CD56+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:4023012", "l": "near-projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005026", "l": "hepatoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696700", "l": "Cells.CD19+CD27+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1181299", "l": "Clear chief cell of parathyroid cell"}, {"i": "NCIT:C33267", "l": "Parathyroid Gland Clear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953241", "l": "Interdigitating dendritic cell of lymph node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0017001", "l": "splanchnic mesodermal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510962", "l": "Atypical Parabasal Cell"}, {"i": "NCIT:C36787", "l": "Atypical Parabasal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177618", "l": "Platelets | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182655", "l": "Mesothelial cell of anterior chamber of eye"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483187", "l": "CD19+SmIg lambda+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518243", "l": "Malignant Small Undifferentiated Cell"}, {"i": "NCIT:C36944", "l": "Malignant Small Undifferentiated Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000007", "l": "articular chondrocyte of knee joint"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000286", "l": "hyphal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000364", "l": "transitional myocyte of anterior internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4512352", "l": "Entire primary sclerotic mastoid cell"}, {"i": "SNOMEDCT:727108007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157512", "l": "CD38+ Lambda+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000865", "l": "gastrointestinal tract (lamina propria) macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899239", "l": "Exhausted T-Cell"}, {"i": "NCIT:C120000", "l": "Exhausted T-Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519381", "l": "Neoplastic Small to Medium-Sized B-Lymphocyte with Pale Cytoplasm"}, {"i": "NCIT:C36991", "l": "Neoplastic Small to Medium-Sized B-Lymphocyte with Pale Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000509", "l": "gastrin secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002375", "l": "Schwann cell precursor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182659", "l": "Hyalocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333839", "l": "Lipid histiocyte"}, {"i": "SNOMEDCT:76237002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267972", "l": "Lymphocyte positive for CD80 antigen"}, {"i": "SNOMEDCT:117412004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512308", "l": "HL-60/MX1"}, {"i": "NCIT:C20230", "l": "HL-60/MX1"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002507", "l": "langerin-positive lymph node dendritic cell"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000609", "l": "vestibular hair cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1711178", "l": "Bronchial Epithelial Cell"}, {"i": "NCIT:C54242", "l": "Bronchial Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157442", "l": "CD3+CD4+CD27-CD45RO+CD62L- cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181908", "l": "Stomatocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000060", "l": "placental villous trophoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267802", "l": "CYIG+ lymphocyte"}, {"i": "SNOMEDCT:117506006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518173", "l": "Population of all pitted erythrocytes in portion of fluid"}, {"i": "SNOMEDCT:725388003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340053", "l": "Type EC enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182665", "l": "Internal epithelial cell of tympanic membrane"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682698", "l": "Projection neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708948", "l": "Mature Tissue Histiocyte"}, {"i": "NCIT:C43249", "l": "Mature Tissue Histiocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314586", "l": "Colony-forming unit of eosinophilic lineage"}, {"i": "SNOMEDCT:445115004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696655", "l": "Cells.CD3+CD8+CD28+HLA DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174614", "l": "Neutrophils | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177470", "l": "Plasma cells/100 leukocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517642", "l": "KA42"}, {"i": "NCIT:C20272", "l": "KA42"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708884", "l": "Malignant Hyperchromatic Squamous Cell"}, {"i": "NCIT:C54208", "l": "Malignant Hyperchromatic Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C13159", "l": "Mesangial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D033761", "l": "Spores, Protozoan"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:4023076", "l": "Martinotti neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12591", "l": "Melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154298", "l": "Band form neutrophils | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518146", "l": "Population of all spermatozoa with double forms in portion of fluid"}, {"i": "SNOMEDCT:725251004"}]} +{"type": "biolink:Cell", "ic": "74.378130331796413", "identifiers": [{"i": "CL:0000586", "l": "germ cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322975", "l": "Radial astrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000699", "l": "kidney resident dendritic cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1510729", "l": "Abnormal Large Granular Lymphocyte"}, {"i": "NCIT:C40983", "l": "Abnormal Large Granular Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181967", "l": "Chromaffin cell of adrenal cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726557", "l": "Autologous CISH-inactivated TILs"}, {"i": "NCIT:C151926", "l": "Autologous CISH-inactivated TILs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000920", "l": "CD8-positive, CD28-negative, alpha-beta regulatory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441343", "l": "100 lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183712", "l": "Luminal cell of lactiferous gland"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1513953", "l": "Neoplastic Endocrine Clear Cell"}, {"i": "NCIT:C36930", "l": "Neoplastic Endocrine Clear Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023107", "l": "reticulospinal neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002002", "l": "Kit-positive granulocyte monocyte progenitor"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1518981", "l": "Perineural Cell"}, {"i": "NCIT:C41416", "l": "Perineural Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516958", "l": "Mouse Erythroblast"}, {"i": "NCIT:C22565", "l": "Mouse Erythroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727554", "l": "Autologous Anti-HER2-CAR-4-1BB-CD3zeta-CD19t+-expressing Tcm-enriched T-lymphocytes"}, {"i": "NCIT:C154281", "l": "Autologous Anti-HER2-CAR-4-1BB-CD3zeta-CD19t+-expressing Tcm-enriched T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979664", "l": "Cells.CD13+CD33+HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2718310", "l": "Gametes"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000653", "l": "glomerular visceral epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763574", "l": "CD45RA-depleted Donor T-lymphocytes"}, {"i": "NCIT:C157369", "l": "CD45RA-depleted Donor T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007010", "l": "preosteoblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002165", "l": "phalangeal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005002", "l": "xanthoblast"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000423", "l": "tip cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522117", "l": "Leukocyte - Lymphocyte - B-Lymphocyte - Plasma Cell (MMHCC)"}, {"i": "NCIT:C22577", "l": "Mouse Plasma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3656576", "l": "Cells.CD158b"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12651", "l": "Purkinje Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2826385", "l": "Umbilical Cord Blood-Derived Mesenchymal Stem Cells"}, {"i": "NCIT:C82688", "l": "Umbilical Cord Blood-Derived Mesenchymal Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697018", "l": "Cells.CD21+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000005", "l": "fibroblast neural crest derived"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000847", "l": "ciliated olfactory receptor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4758096", "l": "Entire G cell of digestive tract"}, {"i": "SNOMEDCT:781207006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724868", "l": "Autologous EGFRt/BCMA-41BBz-targeted CAR T Cells"}, {"i": "NCIT:C148168", "l": "Autologous EGFRt/BCMA-41BBz-targeted CAR T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157500", "l": "CD34+DR+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000347", "l": "enterocyte of colon"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002388", "l": "multinucleate arthroconidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157342", "l": "CD19 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4737460", "l": "terminal deoxyribonucleotidyl transferase cells per 100 cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267970", "l": "Lymphocyte positive for CD79A antigen"}, {"i": "SNOMEDCT:117410007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000655", "l": "secondary oocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440294", "l": "Cells.CD32"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427536", "l": "white blood cell type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086237", "l": "Dendritic Cell-Precision Multiple Antigen T-Lymphocytes"}, {"i": "NCIT:C125634", "l": "Dendritic Cell-Precision Multiple Antigen T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708946", "l": "Activated Mature Gamma/Delta T-Lymphocyte with a Cytotoxic Phenotype"}, {"i": "NCIT:C45341", "l": "Activated Mature Gamma/Delta T-Lymphocyte with a Cytotoxic Phenotype"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000972", "l": "class switched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182615", "l": "General ecto-epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157229", "l": "CD1 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000743", "l": "hypertrophic chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163716", "l": "Erythrocytes | Duodenal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0001053", "l": "IgD-negative memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0221284", "l": "Leptocyte"}, {"i": "SNOMEDCT:112660002"}, {"i": "SNOMEDCT:259686006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183324", "l": "Endothelial cell of venous sinusoid of spleen"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157266", "l": "CD11a blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267999", "l": "Lymphocyte positive for CD120B antigen"}, {"i": "SNOMEDCT:117439007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3849994", "l": "Ia Inhibitory Interneurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322913", "l": "Transitional myocyte of ventricular part of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325162", "l": "Primary afferent neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322673", "l": "CD8+HLA-DR+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519318", "l": "Signet Ring-Like Neoplastic T-Lymphocyte"}, {"i": "NCIT:C39683", "l": "Signet Ring-Like Neoplastic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519424", "l": "Somatotrophs"}, {"i": "NCIT:C33578", "l": "Somatotroph Cell"}, {"i": "MESH:D052683", "l": "Somatotrophs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518114", "l": "MB02"}, {"i": "NCIT:C20276", "l": "MB02"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545463", "l": "Cells.CD3+CD56+"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1000272", "l": "lung secretory cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000688", "l": "perijunctional fibroblast"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000822", "l": "B-2 B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157518", "l": "CD3-CD16+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:1001045", "l": "kidney cortex artery cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1292099", "l": "IgE B lymphocyte"}, {"i": "SNOMEDCT:115605003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717663", "l": "Cells.CD20+FMC7+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002510", "l": "CD103-negative, langerin-positive lymph node dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0231010", "l": "Penetrated oocyte"}, {"i": "SNOMEDCT:3447009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335679", "l": "Diploid germ cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000858", "l": "fast muscle myoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154478", "l": "Basophils | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002295", "l": "type-6 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518754", "l": "Mouse Ovarian Sertoli Cell"}, {"i": "NCIT:C22665", "l": "Mouse Ovarian Sertoli Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178285", "l": "Prolymphocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229633", "l": "myeloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336824", "l": "Type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001046", "l": "memory CCR4-positive regulatory T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711353", "l": "Malignant Large Hyperchromatic Fibrohistiocytic Cell"}, {"i": "NCIT:C49074", "l": "Malignant Large Hyperchromatic Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157410", "l": "CD25 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002347", "l": "CD27-high, CD11b-high natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4263667", "l": "T-cell naive & memory & effector (CD27 and CD45RA) subsets"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009060", "l": "marginal zone B cell of lymph node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709167", "l": "Plateletpheresis half units"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000114", "l": "surface ectodermal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4330725", "l": "Myelodysplastic Syndrome Clone"}, {"i": "NCIT:C130199", "l": "Myelodysplastic Syndrome Clone"}]} +{"type": "biolink:Cell", "ic": "71.786710504642102", "identifiers": [{"i": "CL:0002159", "l": "general ecto-epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000378", "l": "type 1 vestibular sensory cell of stato-acoustic epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002557", "l": "fibroblast of pulmonary artery"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335622", "l": "Serous cell of epithelium of bronchus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598117", "l": "stellate cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1882051", "l": "Neoplastic Epithelial Small Oval Cell"}, {"i": "NCIT:C60998", "l": "Neoplastic Epithelial Small Oval Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0883467", "l": "Cells.CD11+CD20+"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0009021", "l": "stromal cell of lamina propria of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229661", "l": "Myelomonoblast"}, {"i": "SNOMEDCT:88978008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1135922", "l": "Myoblasts, Skeletal"}, {"i": "MESH:D032448", "l": "Myoblasts, Skeletal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229641", "l": "Eosinophilic promyelocyte"}, {"i": "SNOMEDCT:4029003"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1519658", "l": "Trophoblast cell"}, {"i": "NCIT:C33917", "l": "Trophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000868", "l": "lymph node macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000719", "l": "kidney inner medulla collecting duct intercalated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157523", "l": "CD3-CD19+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "72.787515020653174", "identifiers": [{"i": "UMLS:C1519004", "l": "Peripheral (Post-Thymic) T-Lymphocyte"}, {"i": "NCIT:C38434", "l": "Peripheral (Post-Thymic) T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230521", "l": "Mitotic cell in anaphase"}, {"i": "SNOMEDCT:7566005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5159000", "l": "Chediak-Higashi cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000695", "l": "kidney interstitial alternatively activated macrophage"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1708646", "l": "Large Malignant Histiocyte"}, {"i": "NCIT:C43255", "l": "Large Malignant Histiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002083", "l": "type I cell of adrenal medulla"}]} +{"type": "biolink:Cell", "ic": "61.589284023391414", "identifiers": [{"i": "CL:0002320", "l": "connective tissue cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1565000", "l": "Retinal Horizontal Cells"}, {"i": "MESH:D051248", "l": "Retinal Horizontal Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008027", "l": "rod bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000892", "l": "smooth muscle cell derived foam cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002666", "l": "type 2 otic fibrocyte"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002573", "l": "Schwann cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019022", "l": "endothelial cell of pericentral hepatic sinusoid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002162", "l": "internal epithelial cell of tympanic membrane"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009048", "l": "anorectum macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005007", "l": "Kolmer-Agduhr neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709204", "l": "Neoplastic Spindle-Shaped Adipocyte"}, {"i": "NCIT:C48907", "l": "Neoplastic Spindle-Shaped Adipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0206441", "l": "Pyramidal Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086003", "l": "Autologous CEA-specific Cytotoxic T-lymphocytes"}, {"i": "NCIT:C123822", "l": "Autologous CEA-specific Cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170937", "l": "Leukocytes | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000051", "l": "splenic fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440357", "l": "Cells.CD7-CD13+CD33+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2952434", "l": "Interdigitating dendritic cell of splenic white pulp"}]} +{"type": "biolink:Cell", "ic": "73.153983691316824", "identifiers": [{"i": "NCIT:C12662", "l": "Stem Cell"}]} +{"type": "biolink:Cell", "ic": "44.046128218637797", "identifiers": [{"i": "CL:0000548", "l": "animal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000325", "l": "jejunal goblet cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002370", "l": "respiratory goblet cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000861", "l": "elicited macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5153167", "l": "Anulocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000442", "l": "urothelial cell of trigone of urinary bladder"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166478", "l": "Helmet cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708882", "l": "Malignant Histiocyte-Like Cell"}, {"i": "NCIT:C49051", "l": "Malignant Histiocyte-Like Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010014", "l": "type II pinealocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0391864", "l": "Cytomegaly"}, {"i": "NCIT:C36735", "l": "Cytomegalic Cell"}, {"i": "SNOMEDCT:125392001"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C0596993", "l": "Myeloid Progenitor Cells"}, {"i": "NCIT:C12552", "l": "Bone Marrow Myeloid Stem Cell"}, {"i": "MESH:D023461", "l": "Myeloid Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000041", "l": "dermis microvascular lymphatic vessel endothelial cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "NCIT:C43419", "l": "Multipotent Stem Cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1518229", "l": "Malignant Osteoblast"}, {"i": "NCIT:C36901", "l": "Malignant Osteoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881560", "l": "Malignant Hyperchromatic Small Epithelial Cell"}, {"i": "NCIT:C61588", "l": "Malignant Hyperchromatic Small Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979644", "l": "Blasts.CD30"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002195", "l": "hepatic stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170943", "l": "Leukocytes | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000647", "l": "multinucleated giant cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3656577", "l": "Cells.CD158a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002534", "l": "mature CD16-positive myeloid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0019018", "l": "blood vessel smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1954356", "l": "X linked heterotaxy"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763599", "l": "Autologous Anti-NY-ESO-1 mTCR Retroviral Vector Transduced PBLs"}, {"i": "NCIT:C157409", "l": "Autologous Anti-NY-ESO-1 mTCR Retroviral Vector Transduced PBLs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0033731", "l": "Protoplasts"}, {"i": "NCIT:C12659", "l": "Protoplast"}, {"i": "MESH:D011523", "l": "Protoplasts"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "UMLS:C1514005", "l": "Neoplastic Large Lymphocyte"}, {"i": "NCIT:C37008", "l": "Neoplastic Large Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323694", "l": "Dense-core granulated cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000072", "l": "adipose microvascular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1881538", "l": "Malignant Basaloid Cell"}, {"i": "NCIT:C62227", "l": "Malignant Basaloid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173497", "l": "Mononuclear cells | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002223", "l": "anterior lens cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000091246", "l": "Memory T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3890720", "l": "PC-3 cell line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945928", "l": "Cell positive for CD38 antigen"}, {"i": "SNOMEDCT:116827004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518152", "l": "Population of all spermatozoa with amorphous head in portion of fluid"}, {"i": "SNOMEDCT:725235007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511822", "l": "Population of all spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:726440009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519120", "l": "SA01"}, {"i": "NCIT:C20264", "l": "SA01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2981182", "l": "Autologous EBV-CTL CD19CAR zeta"}, {"i": "NCIT:C78824", "l": "Autologous EBV-CTL CD19CAR zeta"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172510", "l": "Mesothelial cells | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:4023058", "l": "mesothelial fibroblast of the leptomeninx"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1518309", "l": "Neutrophil with Abnormal Cytoplasmic Granulation"}, {"i": "NCIT:C37173", "l": "Neutrophil with Abnormal Cytoplasmic Granulation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168983", "l": "Immature reticulocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0009010", "l": "transit amplifying cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000077", "l": "skeletal muscle tissue of pectoralis major striated muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157467", "l": "CD3+HLA-DR+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157347", "l": "CD19 cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002313", "l": "endocrine-paracrine cell of prostate gland"}]} +{"type": "biolink:Cell", "ic": "76.125169645393314", "identifiers": [{"i": "CL:0002191", "l": "granulocytopoietic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000208", "l": "pH receptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0597690", "l": "WI38 cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323033", "l": "Type EC1 enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5160254", "l": "Clue cells | Vaginal | Microbiology"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000713", "l": "corona radiata cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002115", "l": "B220-positive CD38-positive unswitched memory B cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C0035316", "l": "Retinal Ganglion Cells"}, {"i": "NCIT:C12642", "l": "Retinal Ganglion Cell"}, {"i": "MESH:D012165", "l": "Retinal Ganglion Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002298", "l": "type-5 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000659", "l": "eggshell secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157464", "l": "CD3+DR+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1511449", "l": "Mouse Spinal Cord Neuron"}, {"i": "NCIT:C22626", "l": "Mouse Spinal Cord Neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598102", "l": "polarized cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180369", "l": "Type V taste bud cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246476", "l": "Ectomesenchymal cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002058", "l": "Gr1-low non-classical monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513176", "l": "Metaplastic Squamous Cell"}, {"i": "NCIT:C36817", "l": "Metaplastic Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002043", "l": "CD34-positive, CD38-negative multipotent progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4049868", "l": "Gitter Cell"}, {"i": "NCIT:C123738", "l": "Gitter Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174097", "l": "Myelocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513068", "l": "Medium-Sized Neoplastic Myeloblast with Coarse Cytoplasmic Basophilic Granules"}, {"i": "NCIT:C37180", "l": "Medium-Sized Neoplastic Myeloblast with Coarse Cytoplasmic Basophilic Granules"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009077", "l": "subcapsular thymic epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000424", "l": "chromaffin cell of paraaortic body"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000862", "l": "suppressor macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225828", "l": "Myocytes, Cardiac"}, {"i": "NCIT:C13002", "l": "Cardiomyocyte"}, {"i": "MESH:D032383", "l": "Myocytes, Cardiac"}, {"i": "SNOMEDCT:86441007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157626", "l": "CD59 Granulocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514028", "l": "Neoplastic Monocytoid B-Lymphocyte"}, {"i": "NCIT:C37003", "l": "Neoplastic Monocytoid B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000084", "l": "conjunctiva goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229660", "l": "Promyelomonocyte"}, {"i": "SNOMEDCT:68936005"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000072", "l": "non-branched duct epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010004", "l": "mononuclear cell of bone marrow"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182651", "l": "Smooth muscle fiber of sphincter of pupil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009061", "l": "intestinal crypt stem cell of anorectum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157520", "l": "CD3-CD16+CD56+ (Natural killer) cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225698", "l": "Alveolar Epithelial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5148826", "l": "Reticulocytes.medium fluorescence"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0020200", "l": "Hybrid Cells"}, {"i": "MESH:D006822", "l": "Hybrid Cells"}]} +{"type": "biolink:Cell", "ic": "72.438504002572699", "identifiers": [{"i": "UMLS:C1513929", "l": "Neoplastic B-Lymphocyte"}, {"i": "NCIT:C38640", "l": "Neoplastic B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002356", "l": "primitive reticulocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002425", "l": "early T lineage precursor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157517", "l": "CD3-CD16+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174615", "l": "Neutrophils | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517915", "l": "Mouse Ito Cell"}, {"i": "NCIT:C22519", "l": "Mouse Ito Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023006", "l": "static nuclear bag fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710695", "l": "Xanthomatous Fibrohistiocytic Cell"}, {"i": "NCIT:C49081", "l": "Xanthomatous Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000676", "l": "cap cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327597", "l": "Central neuroglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955383", "l": "Spermatozoa.isolated head"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002080", "l": "pancreatic centro-acinar cell"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "UMLS:C0031307", "l": "Phagocytes"}, {"i": "NCIT:C12657", "l": "Phagocytic Cell"}, {"i": "MESH:D010586", "l": "Phagocytes"}, {"i": "SNOMEDCT:73568005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D005854", "l": "Germ Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0011010", "l": "lateral mesodermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157651", "l": "CD7+CD3- | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329372", "l": "Autologous PD-1-targeted Chimeric Switch Receptor-modified T Lymphocytes"}, {"i": "NCIT:C132251", "l": "Autologous PD-1-targeted Chimeric Switch Receptor-modified T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184821", "l": "Variant lymphocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979666", "l": "Cells.CD19+CD58+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896612", "l": "Tumor Antigen-reactive CD28+/CCR7+/CD27+/CD45RA- Cytotoxic T-lymphocyte"}, {"i": "NCIT:C118848", "l": "Tumor Antigen-reactive CD28+/CCR7+/CD27+/CD45RA- Cytotoxic T-lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002657", "l": "glandular cell of esophagus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522237", "l": "Thyroid Gland - Parafollicular Cell (MMHCC)"}, {"i": "NCIT:C22651", "l": "Mouse Thyroid Gland Parafollicular Cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1511569", "l": "CyThera ES Cell Line"}, {"i": "NCIT:C20246", "l": "CyThera ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312739", "l": "Granular null cell"}, {"i": "SNOMEDCT:67124000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267879", "l": "Lymphocyte positive for CD16B antigen"}, {"i": "SNOMEDCT:117556001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514002", "l": "Neoplastic Large Ganglioid Astrocyte"}, {"i": "NCIT:C41469", "l": "Neoplastic Large Ganglioid Astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440253", "l": "Cells.CD126"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000608", "l": "zygospore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155146", "l": "Bladder cells | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000921", "l": "type I NK T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002337", "l": "keratinocyte stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333821", "l": "Micromyeloblast"}, {"i": "SNOMEDCT:19651007"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000122", "l": "stellate neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163445", "l": "Eosinophils | Sputum | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257743", "l": "3T3-L1 Cells"}, {"i": "MESH:D041721", "l": "3T3-L1 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289953", "l": "Autologous CD34-positive Hematopoietic Progenitor Cells"}, {"i": "NCIT:C128249", "l": "Autologous CD34-positive Hematopoietic Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002361", "l": "primitive erythroid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1622561", "l": "lateral part of motile cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186845", "l": "Neutrophils | Control | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322814", "l": "CD45RB+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002673", "l": "tongue muscle cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "NCIT:C12571", "l": "Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0030173", "l": "Pacinian Corpuscles"}, {"i": "MESH:D010141", "l": "Pacinian Corpuscles"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C1513932", "l": "Neoplastic Blast"}, {"i": "NCIT:C37064", "l": "Neoplastic Blast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253015", "l": "Set of type D cells of pancreatic islet"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002262", "l": "endothelial cell of sinusoid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001474", "l": "medium spiny neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000340", "l": "glioblast (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323724", "l": "Diencephalic neural crest cell group"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764035", "l": "Umbilical Cord Blood-derived CD4+/CD25+ T-regulatory Cells CK0801"}, {"i": "NCIT:C158084", "l": "Umbilical Cord Blood-derived CD4+/CD25+ T-regulatory Cells CK0801"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007011", "l": "enteric neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518683", "l": "Cochlear outer hair cell"}, {"i": "NCIT:C33233", "l": "Outer Hair Cell of the Organ of the Corti"}, {"i": "MESH:D018072", "l": "Hair Cells, Auditory, Outer"}, {"i": "SNOMEDCT:43313002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072756", "l": "Cells.RARA gene rearrangements"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0222677", "l": "Cell of bone"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512945", "l": "Intraepithelial T-Lymphocyte of the Intestine"}, {"i": "NCIT:C39613", "l": "Intraepithelial T-Lymphocyte of the Intestine"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1516470", "l": "Chief cell"}, {"i": "NCIT:C12580", "l": "Chief Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002324", "l": "myoepithelial cell of mammary gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596979", "l": "Muller Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267997", "l": "Lymphocyte positive for CD118 antigen"}, {"i": "SNOMEDCT:117437009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267797", "l": "Lymphocyte positive for CDA antigen"}, {"i": "SNOMEDCT:117501001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711394", "l": "Neoplastic Thyroid Gland Follicular Cell with Large and Hyperchromatic Nucleus"}, {"i": "NCIT:C47833", "l": "Neoplastic Thyroid Gland Follicular Cell with Large and Hyperchromatic Nucleus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163725", "l": "Erythrocytes | Seminal plasma | Fertility testing"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001073", "l": "CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182604", "l": "Stem cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955875", "l": "F9 Teratocarcinoma Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519322", "l": "Signet Ring Stromal Cell"}, {"i": "NCIT:C36902", "l": "Signet Ring Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254549", "l": "Stippled Erythrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4068113", "l": "Cells.CD3+CD4+CD8+"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1513987", "l": "Neoplastic Hobnail Cell"}, {"i": "NCIT:C36758", "l": "Neoplastic Hobnail Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1514073", "l": "Neoplastic Prolymphocyte"}, {"i": "NCIT:C37182", "l": "Neoplastic Prolymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171676", "l": "Lymphocytes Plasmacytoid | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335490", "l": "Cranial parasympathetic ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000889", "l": "myeloid suppressor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000591", "l": "warmth sensing thermoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267909", "l": "Lymphoblast positive for CD34 antigen"}, {"i": "SNOMEDCT:117580002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229629", "l": "Polychromatophilic erythroblast"}, {"i": "NCIT:C13131", "l": "Polychromatic Erythroblast"}, {"i": "SNOMEDCT:16779009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000111", "l": "peripheral neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440353", "l": "Cells.CD74"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002004", "l": "CD34-negative, GlyA-negative proerythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332053", "l": "Type Mo enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157425", "l": "CD3 cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4330828", "l": "Non-Fucosylated Umbilical Cord Blood Regulatory T-cells"}, {"i": "NCIT:C131536", "l": "Non-Fucosylated Umbilical Cord Blood Regulatory T-cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000130", "l": "neuron associated cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517732", "l": "Large Keratinocyte"}, {"i": "NCIT:C36750", "l": "Large Keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157547", "l": "CD4+CD45RA+CD45RB+CD45RC+ cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182658", "l": "Myoepithelial cell of dilator pupillae"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000810", "l": "CD4-positive, alpha-beta thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329360", "l": "Brush cell of epithelium of terminal bronchiole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179606", "l": "Anterior lens cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157354", "l": "CD19+CD27+IgD-IgM- cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229638", "l": "Neutrophilic metamyelocyte"}, {"i": "SNOMEDCT:50134008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000121", "l": "Purkinje cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000322", "l": "pneumocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002434", "l": "CD24-positive, CD8 single-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652653", "l": "indium (111In) oxinate labelled cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000129", "l": "microglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979672", "l": "Cells.CD4+CD7-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3179121", "l": "Human Umbilical Vein Endothelial Cells"}, {"i": "MESH:D061307", "l": "Human Umbilical Vein Endothelial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317188", "l": "Cells.CD13+CD33+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325022", "l": "Myocyte of posterior internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276851", "l": "Structure of parathyroid wasserhelle cell"}, {"i": "SNOMEDCT:177629009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440326", "l": "Cells.CD49f"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:1000510", "l": "kidney glomerular epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4512367", "l": "Entire glia"}, {"i": "SNOMEDCT:727123002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002414", "l": "immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1709082", "l": "Mucin-Producing Malignant Epithelial Cell"}, {"i": "NCIT:C54219", "l": "Mucin-Producing Malignant Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002306", "l": "epithelial cell of proximal tubule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000444", "l": "mesothelial cell of anterior chamber of eye"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186854", "l": "Normoblasts | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023001", "l": "static beta motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515880", "l": "Activated Mature Cytotoxic T-Lymphocyte"}, {"i": "NCIT:C39687", "l": "Activated Mature Cytotoxic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1510737", "l": "Abnormal Transitional Cell"}, {"i": "NCIT:C36767", "l": "Abnormal Transitional Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518310", "l": "Neutrophil with Pseudo Pelger-Huet Nucleus"}, {"i": "NCIT:C36724", "l": "Neutrophil with Pseudo Pelger-Huet Nucleus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174657", "l": "Neutrophils/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955940", "l": "Common Lymphoid Progenitors"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000838", "l": "lymphoid lineage restricted progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000848", "l": "microvillous olfactory receptor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085961", "l": "Anti-CD133-CAR Vector-transduced Allogeneic T Lymphocytes"}, {"i": "NCIT:C124132", "l": "Anti-CD133-CAR Vector-transduced Allogeneic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304497", "l": "Population of all dacryocytes in portion of fluid"}, {"i": "SNOMEDCT:719691002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322826", "l": "CD16+CD56+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708870", "l": "Malignant Cytotrophoblastic Cell"}, {"i": "NCIT:C54118", "l": "Malignant Cytotrophoblastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0521391", "l": "Central motor neuron"}, {"i": "SNOMEDCT:61548005"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002386", "l": "multinucleate macroconidium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001081", "l": "group 2 innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0038250", "l": "Stem cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002091", "l": "primary polar body"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000058", "l": "calvarial osteoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000686", "l": "cerebrospinal fluid secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C13121", "l": "Promonocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708923", "l": "Malignant Transitional Cell with Eccentrically Placed Large Nucleus and Small Nucleolus"}, {"i": "NCIT:C54555", "l": "Malignant Transitional Cell with Eccentrically Placed Large Nucleus and Small Nucleolus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2984196", "l": "Therapeutic Allogeneic Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C91374", "l": "Therapeutic Allogeneic Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336716", "l": "Stromal cell of ovarian medulla"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827147", "l": "Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201"}, {"i": "NCIT:C106242", "l": "Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C0018496", "l": "Auditory Hair Cell"}, {"i": "NCIT:C12629", "l": "Cochlear Hair Cell"}, {"i": "MESH:D006198", "l": "Hair Cells, Auditory"}, {"i": "SNOMEDCT:52148002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546506", "l": "P.B. reticulum cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512636", "l": "Immature Myxoid Mesenchymal Cell"}, {"i": "NCIT:C37119", "l": "Immature Myxoid Mesenchymal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322732", "l": "CD33+ hemal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0431085", "l": "Tumor cells, uncertain whether benign or malignant"}, {"i": "SNOMEDCT:252987004"}, {"i": "SNOMEDCT:39577004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300379", "l": "Erythrocytes.Babesia sp infected"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440298", "l": "Cells.CD34+DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2951309", "l": "Endothelial cell of endocardium for left atrium"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0229630", "l": "Sideroblast"}, {"i": "NCIT:C36718", "l": "Sideroblast"}, {"i": "SNOMEDCT:53838007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177777", "l": "Polymorphonuclear cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510782", "l": "Adenocarcinoma Cell with Perinuclear Clearing"}, {"i": "NCIT:C36841", "l": "Adenocarcinoma Cell with Perinuclear Clearing"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:1000334", "l": "enterocyte of epithelium of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000246", "l": "Mauthner neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12640", "l": "Posterior Horn Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1301171", "l": "Eccentrocyte"}, {"i": "SNOMEDCT:397051007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0432610", "l": "Giant metamyelocyte"}, {"i": "SNOMEDCT:259711002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D050417", "l": "Insulin-Secreting Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697019", "l": "Cells.CD25+CD45RO+CD127Low+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332843", "l": "Enterocyte of epithelium of small intestine"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1513065", "l": "Neoplastic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm"}, {"i": "NCIT:C37005", "l": "Neoplastic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519129", "l": "SBIL-2 Transduced Autologous Tumor-Infiltrating Lymphocyte"}, {"i": "NCIT:C38118", "l": "SBIL-2 Transduced Autologous Tumor-Infiltrating Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881542", "l": "Malignant Cutaneous Basal Cell"}, {"i": "NCIT:C60783", "l": "Malignant Cutaneous Basal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000654", "l": "primary oocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333912", "l": "Transitional myocyte of middle internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008029", "l": "inhibitory neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157357", "l": "CD19+CD38+IgM- cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000308", "l": "fibrocyte of adventitia of ureter"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725083", "l": "Autologous BCMA-4-1BBz-targeted CAR T-cells"}, {"i": "NCIT:C148506", "l": "Autologous BCMA-4-1BBz-targeted CAR T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1880539", "l": "Epithelioid Osteoblast"}, {"i": "NCIT:C67121", "l": "Epithelioid Osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000091244", "l": "Immunological Memory Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725828", "l": "Allogeneic Most Closely HLA-matched Adenovirus-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C150553", "l": "Allogeneic Most Closely HLA-matched Adenovirus-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334011", "l": "Wandering histiocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182691", "l": "Epithelial cell of gland of skin"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1512977", "l": "Mammalian Cell"}, {"i": "NCIT:C12958", "l": "Mammalian Cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1513962", "l": "Neoplastic Epithelial Spindle Cell"}, {"i": "NCIT:C36849", "l": "Neoplastic Epithelial Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178844", "l": "Mesenchymal Stromal Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440352", "l": "Cells.CD73"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000041", "l": "mature eosinophil"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001000", "l": "CD8_alpha-positive CD11b-negative dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000143", "l": "lung goblet cell"}]} +{"type": "biolink:Cell", "ic": "75.848614326174683", "identifiers": [{"i": "UMLS:C1513019", "l": "Mature B-Lymphocyte"}, {"i": "NCIT:C33058", "l": "Mature B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155095", "l": "Bite cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267907", "l": "Lymphocyte positive for CD33 antigen"}, {"i": "SNOMEDCT:117578008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687587", "l": "NY-ESO-1 TCR Retroviral Vector-transduced Autologous PBMCs"}, {"i": "NCIT:C146939", "l": "NY-ESO-1 TCR Retroviral Vector-transduced Autologous PBMCs"}]} +{"type": "biolink:Cell", "ic": "64.000820534647843", "identifiers": [{"i": "UMLS:C1513942", "l": "Neoplastic Connective and Soft Tissue Cell"}, {"i": "NCIT:C36887", "l": "Neoplastic Connective and Soft Tissue Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599819", "l": "PBL (peripheral blood lymphocyte)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157385", "l": "CD20+FMC7+ cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166080", "l": "Granulocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002216", "l": "intermediate muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000382", "l": "type 2 vestibular sensory cell of stato-acoustic epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329779", "l": "Enterocyte of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000146", "l": "simple columnar epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157524", "l": "CD3-CD45+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267896", "l": "Lymphocyte positive for CD24 antigen"}, {"i": "SNOMEDCT:117569002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317735", "l": "Agglutinated spermatozoa"}, {"i": "SNOMEDCT:726593007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175608", "l": "Other cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000993", "l": "mature CD11c-low plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "59.224050245530144", "identifiers": [{"i": "UMLS:C1510721", "l": "Abnormal Epithelial Cell"}, {"i": "NCIT:C36745", "l": "Abnormal Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177477", "l": "Plasma cells/100 leukocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519174", "l": "Salivary Gland Myoepithelial Cell"}, {"i": "NCIT:C40411", "l": "Salivary Gland Myoepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000562", "l": "nucleate erythrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267921", "l": "Lymphocyte positive for CD42A antigen"}, {"i": "SNOMEDCT:117589001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000348", "l": "choroidal cell of the eye"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0487179", "l": "Oval macrocyte"}, {"i": "SNOMEDCT:117170009"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1708915", "l": "Malignant Spindle Cell"}, {"i": "NCIT:C53637", "l": "Malignant Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5185785", "l": "ZAP70 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323784", "l": "Fibroblast of connective tissue of glandular part of prostate"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0008049", "l": "Betz cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000029", "l": "neural crest derived neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002143", "l": "dark chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0222619", "l": "Structure of granular polyhedral cells of breast"}, {"i": "SNOMEDCT:15192008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337419", "l": "Splenic macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331294", "l": "Interdental cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000282", "l": "smooth muscle fiber of ascending colon"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514093", "l": "Neoplastic Small T-Lymphocyte"}, {"i": "NCIT:C39605", "l": "Neoplastic Small T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163552", "l": "Epithelial cells.renal | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0282479", "l": "Muscle Fibers, Red"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000903", "l": "natural T-regulatory cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4527154", "l": "TCR-specific, alpha Fetoprotein-enhanced Autologous T Lymphocytes"}, {"i": "NCIT:C136982", "l": "TCR-specific, alpha Fetoprotein-enhanced Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C0085133", "l": "Reed-Sternberg Cells"}, {"i": "NCIT:C12660", "l": "Reed-Sternberg Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000477", "l": "ovarian follicle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764235", "l": "Autologous Anti-MUC1*-CAR-4-1BB-CD3zeta-expressing T-lymphocytes"}, {"i": "NCIT:C158439", "l": "Autologous Anti-MUC1*-CAR-4-1BB-CD3zeta-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333816", "l": "Hypersegmented leukocyte"}, {"i": "SNOMEDCT:24481008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038488", "l": "Cervical cells.overexpressing HPV E6+E7 mRNA"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267873", "l": "Lymphoblast positive for CD14 antigen"}, {"i": "SNOMEDCT:117552004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002430", "l": "CD4-intermediate, CD8-positive double-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314595", "l": "Colony-forming unit of neutrophilic-monocytic lineage"}, {"i": "SNOMEDCT:445287005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267863", "l": "Lymphocyte positive for both CD10 antigen and CD20 antigen"}, {"i": "SNOMEDCT:117544002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1455886", "l": "Atypical Endocervical Cell"}, {"i": "NCIT:C141518", "l": "Atypical Endocervical Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440252", "l": "Cells.CD122"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148429", "l": "Unidentified cell"}, {"i": "SNOMEDCT:115425006"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000906", "l": "activated CD8-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000897", "l": "CD4-positive, alpha-beta memory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157447", "l": "CD3+CD5+ cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440320", "l": "Cells.CD48"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955939", "l": "Lymphoid Progenitor Cells"}, {"i": "MESH:D054503", "l": "Lymphoid Progenitor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179580", "l": "Endothelial cell of sinusoid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000452", "l": "parietal epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182645", "l": "Ciliary epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229652", "l": "Basophilic megakaryocyte"}, {"i": "SNOMEDCT:75790005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518630", "l": "Mouse Osteoclast"}, {"i": "NCIT:C22681", "l": "Mouse Osteoclast"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0682545", "l": "Basophil cell"}, {"i": "NCIT:C32198", "l": "Basophilic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157371", "l": "CD2 cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000590", "l": "small luteal cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000837", "l": "hematopoietic multipotent progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333742", "l": "Syncytial cell"}, {"i": "SNOMEDCT:72263005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883044", "l": "Small Adenocarcinoma Cell with Scant Amount of Cytoplasm"}, {"i": "NCIT:C61144", "l": "Small Adenocarcinoma Cell with Scant Amount of Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277739", "l": "Tenocytes"}, {"i": "MESH:D000070916", "l": "Tenocytes"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000885", "l": "gut-associated lymphoid tissue macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267984", "l": "Lymphocyte positive for CD97 antigen"}, {"i": "SNOMEDCT:117424006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000094", "l": "nasal cavity respiratory epithelium epithelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513729", "l": "Mucus-Secreting Cell"}, {"i": "NCIT:C13142", "l": "Mucus-Secreting Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3476509", "l": "Siderophages"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0227897", "l": "Structure of hilar cell of ovary"}, {"i": "SNOMEDCT:79891005"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000306", "l": "fibroblast of tunica adventitia of artery"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000293", "l": "structural cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022688", "l": "Natural Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174624", "l": "Neutrophils | Stool | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440409", "l": "Cells.t(2;5)(p23;q35.1)(ALK,NPM1)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327855", "l": "Type ECL enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1656735", "l": "Cells.CD9+CD41+"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0000387", "l": "hemocyte (sensu Arthropoda)"}]} +{"type": "biolink:Cell", "ic": "77.349316285872916", "identifiers": [{"i": "UMLS:C0887899", "l": "Myeloid Cells"}, {"i": "NCIT:C12549", "l": "Myeloid Cell"}, {"i": "MESH:D022423", "l": "Myeloid Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440054", "l": "Abnormal blood cells.CD33"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173060", "l": "Microcytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267897", "l": "Lymphocyte positive for CD25 antigen"}, {"i": "SNOMEDCT:116844000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725791", "l": "Allogeneic T-lymphocytes Expressing NY-ESO-1-C259-specific TCR"}, {"i": "NCIT:C150511", "l": "Allogeneic T-lymphocytes Expressing NY-ESO-1-C259-specific TCR"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267946", "l": "Lymphocyte positive for CD54 antigen"}, {"i": "SNOMEDCT:117389000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440386", "l": "Cells.euploid+Cells.aneuploid.population 2"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0000148", "l": "melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182617", "l": "External epithelial cell of tympanic membrane"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4331503", "l": "Virus-specific Cytotoxic T-lymphocytes"}, {"i": "NCIT:C131870", "l": "Virus-specific Cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002366", "l": "myometrial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157297", "l": "CD13 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000845", "l": "marginal zone B cell of spleen"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000205", "l": "thermoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328882", "l": "Myocardial endocrine cell of interventricular septum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170451", "l": "Lambda lymphocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002207", "l": "brush cell of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000931", "l": "activated type II NK T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725094", "l": "EPS8 Peptide-specific Dendritic Cells"}, {"i": "NCIT:C148518", "l": "EPS8 Peptide-specific Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514740", "l": "Reactive Plasma Cell"}, {"i": "NCIT:C40563", "l": "Reactive Plasma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176807", "l": "Blasts.cytoplasmic CD3"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023069", "l": "medial ganglionic eminence derived GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1707939", "l": "Neoplastic Epithelioid Smooth Muscle Cell"}, {"i": "NCIT:C49117", "l": "Neoplastic Epithelioid Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514000", "l": "Neoplastic Large Cell with Abundant Pale Cytoplasm"}, {"i": "NCIT:C37163", "l": "Neoplastic Large Cell with Abundant Pale Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000088", "l": "female germ line stem cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882058", "l": "Neoplastic Sertoli Cell with Clear Cytoplasm"}, {"i": "NCIT:C61418", "l": "Neoplastic Sertoli Cell with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440232", "l": "Cells.CD10+CD19+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002325", "l": "mammary alveolar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697021", "l": "Cells.CD27+"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1513752", "l": "Multipolar neuron"}, {"i": "NCIT:C33143", "l": "Multipolar Neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D016466", "l": "CHO Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267935", "l": "Lymphocyte positive for CD48 antigen"}, {"i": "SNOMEDCT:117378007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000964", "l": "Bm2' B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518169", "l": "Malignant Clear Cell Oncocyte"}, {"i": "NCIT:C36940", "l": "Malignant Clear Cell Oncocyte"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0000174", "l": "steroid hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1317395", "l": "Immature granulocyte"}, {"i": "NCIT:C13113", "l": "Immature Granulocyte"}, {"i": "SNOMEDCT:726594001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002644", "l": "endo-epithelial cell of tympanic part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300407", "l": "Cells.chromosome 7 monosomy"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183180", "l": "Set of aminergic cells in compact part of substantia nigra [A9]"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000342", "l": "pigment cell (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000974", "l": "long lived plasma cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000843", "l": "follicular B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0007635", "l": "Cultured Cells"}, {"i": "NCIT:C45382", "l": "Cell Strain"}, {"i": "MESH:D002478", "l": "Cells, Cultured"}, {"i": "SNOMEDCT:702451000"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "NCIT:C12597", "l": "Germ Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513746", "l": "Multinucleated Malignant Squamous Cell"}, {"i": "NCIT:C36774", "l": "Multinucleated Malignant Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267906", "l": "Lymphoblast positive for CD33 antigen"}, {"i": "SNOMEDCT:117577003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038493", "l": "Cells.CD4+CD3-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D025042", "l": "Amacrine Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546501", "l": "P.B. promegakaryocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002499", "l": "spongiotrophoblast cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519715", "l": "Type II Epithelial Receptor Cell"}, {"i": "NCIT:C33825", "l": "Type II Epithelial Receptor Cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000782", "l": "myeloid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709188", "l": "Neoplastic Ovoid Mononuclear Stromal Cell"}, {"i": "NCIT:C49053", "l": "Neoplastic Ovoid Mononuclear Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000367", "l": "transitional myocyte of posterior internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330982", "l": "Tanycytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1306700", "l": "Platycyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1321301", "l": "Peripheral blood mononuclear cell (cell)"}, {"i": "NCIT:C12954", "l": "Peripheral Blood Mononuclear Cell"}, {"i": "SNOMEDCT:404798000"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0019003", "l": "tracheobronchial goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183200", "l": "Set of adrenergic cells in area postrema and anterior reticular nucleus [C1, C2]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170899", "l": "Leukemia markers | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000844", "l": "germinal center B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023075", "l": "L6 tyrosine hydroxylase positive sst expressing GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229521", "l": "Perilymphatic cell"}, {"i": "SNOMEDCT:76535006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4505243", "l": "Suprachiasmatic Nucleus Neurons"}, {"i": "MESH:D000074523", "l": "Suprachiasmatic Nucleus Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009071", "l": "medullary thymic epithelial cell type 1"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0007005", "l": "notochordal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002675", "l": "H plus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000419", "l": "myoepithelial cell of lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000052", "l": "totipotent stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184824", "l": "Variant lymphocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545585", "l": "Blood small lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1522076", "l": "Abnormal Monocyte"}, {"i": "NCIT:C37040", "l": "Abnormal Monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323503", "l": "Set of leukocytes"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000703", "l": "sustentacular cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002067", "l": "type A enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178319", "l": "Pronormoblasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000482", "l": "juvenile hormone secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177615", "l": "Platelets | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000042", "l": "embryonic fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225323", "l": "Lipoblast (cell)"}, {"i": "NCIT:C32990", "l": "Lipoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181294", "l": "Endo-epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900001", "l": "Autologous Cytomegalovirus-specific Cytotoxic T-lymphocytes"}, {"i": "NCIT:C116732", "l": "Autologous Cytomegalovirus-specific Cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "46.852872432552509", "identifiers": [{"i": "CL:0000578", "l": "experimentally modified cell in vitro"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154482", "l": "Basophils | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1881551", "l": "Malignant Epithelial Oval Cell"}, {"i": "NCIT:C60991", "l": "Malignant Epithelial Oval Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706986", "l": "Bone Marrow Stem Cell with Variable Lineage Potential"}, {"i": "NCIT:C42884", "l": "Bone Marrow Stem Cell with Variable Lineage Potential"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000306", "l": "crystallin accumulating cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514013", "l": "Neoplastic Mature Ganglion Cell"}, {"i": "NCIT:C42084", "l": "Neoplastic Mature Ganglion Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002144", "l": "capillary endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740204", "l": "Cells.CD4+2H4"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331711", "l": "Blue cone bipolar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0282501", "l": "Spheroids, Cellular"}, {"i": "MESH:D018874", "l": "Spheroids, Cellular"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "UMLS:C1514934", "l": "Rhabdomyoblast"}, {"i": "NCIT:C36744", "l": "Rhabdomyoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023065", "l": "meis2 expressing cortical GABAergic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4477473", "l": "human cord blood hematopoietic progenitor cell 500000000 in 25 mL INTRAVENOUS INJECTION, SUSPENSION [CLEVECORD]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180271", "l": "Myoepithelial cell of lactiferous alveolus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518169", "l": "Population of all band eosinophils in portion of fluid"}, {"i": "SNOMEDCT:725233000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519317", "l": "Signet Ring Lipoblast"}, {"i": "NCIT:C36975", "l": "Signet Ring Lipoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441121", "l": "Purkinje cell cytoplasmic type 2"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708885", "l": "Malignant Lactotroph Cell"}, {"i": "NCIT:C45951", "l": "Malignant Lactotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157533", "l": "CD4 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002479", "l": "F4/80-positive adipose macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D012708", "l": "Sertoli Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170900", "l": "Leukemia markers | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000953", "l": "preBCR-negative large pre-B-II cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000011", "l": "dermis lymphatic vessel endothelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000435", "l": "epithelial cell of lacrimal duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0080202", "l": "T-Lymphocyte Subsets"}, {"i": "MESH:D016176", "l": "T-Lymphocyte Subsets"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000675", "l": "female gamete"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001224", "l": "interlobulary vein smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000968", "l": "Be cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C2699839", "l": "EBV-Transformed Mature B-Lymphocyte"}, {"i": "NCIT:C80283", "l": "EBV-Transformed Mature B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440289", "l": "Cells.CD3+CD8+CD45RO-CD45RA-"}]} +{"type": "biolink:Cell", "ic": "58.034540461058569", "identifiers": [{"i": "CL:0000542", "l": "lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327311", "l": "Stromal cell of ovarian cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440321", "l": "Cells.CD49a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007004", "l": "premigratory neural crest cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1370155", "l": "Lymphocytes+Monocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513814", "l": "NC01"}, {"i": "NCIT:C20281", "l": "NC01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001013", "l": "mature interstitial dendritic cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002233", "l": "epithelial cell of prostatic acinus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3897804", "l": "RNA Electroporated CD19CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes"}, {"i": "NCIT:C118947", "l": "RNA Electroporated CD19CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "55.790472019705511", "identifiers": [{"i": "CL:0000151", "l": "secretory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440144", "l": "Blasts.CD2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157310", "l": "CD14 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173441", "l": "Monocytes.abnormal/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522153", "l": "Leukocyte - Monoblast (MMHCC)"}, {"i": "NCIT:C22584", "l": "Mouse Monoblast"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:2000004", "l": "pituitary gland cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514032", "l": "Neoplastic Protoplasmic Astrocyte"}, {"i": "NCIT:C41459", "l": "Neoplastic Protoplasmic Astrocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000952", "l": "preBCR-positive large pre-B-II cell"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "CL:0000098", "l": "sensory epithelial cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1708898", "l": "Malignant Parathyroid Gland Cell"}, {"i": "NCIT:C48266", "l": "Malignant Parathyroid Gland Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002341", "l": "basal cell of prostate epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002564", "l": "nucleus pulposus cell of intervertebral disc"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C174117", "l": "Pancreatic Acinar Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178092", "l": "Prekeratocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1515408", "l": "Therapeutic Tumor Infiltrating Lymphocytes"}, {"i": "NCIT:C28699", "l": "Therapeutic Tumor Infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0008002", "l": "skeletal muscle fiber"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3871166", "l": "2000 erythrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725001", "l": "MDS Neoantigen-specific Autologous T-lymphocytes"}, {"i": "NCIT:C148393", "l": "MDS Neoantigen-specific Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177781", "l": "Polymorphonuclear cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019015", "l": "lung parenchyma resident eosinophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179463", "l": "Endothelial cell of hepatic sinusoid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325885", "l": "Free macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000372", "l": "transitional myocyte of atrial part of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186011", "l": "Band form neutrophils | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4324226", "l": "CD43+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000155", "l": "peptic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507325", "l": "Cells.CD13+CD16+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002300", "l": "type-7 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519000", "l": "Peripheral Epidermotropic T-Lymphocyte"}, {"i": "NCIT:C38323", "l": "Peripheral Epidermotropic T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882937", "l": "Cells.CD8+CD57+"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000232", "l": "erythrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002229", "l": "light chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157405", "l": "CD235a cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148324", "l": "Cells.CD20+CD25+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0553257", "l": "Epithelial cell of renal tubule"}, {"i": "NCIT:C33455", "l": "Renal Cortical Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023052", "l": "Betz upper motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955926", "l": "Pro-B Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000314", "l": "milk secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182636", "l": "Primary follicular cell of ovary"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524525", "l": "Derived Placental Blood Cell"}, {"i": "NCIT:C133262", "l": "Derived Placental Blood Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3826997", "l": "Carboxylesterase-expressing Allogeneic Neural Stem Cells"}, {"i": "NCIT:C113657", "l": "Carboxylesterase-expressing Allogeneic Neural Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724856", "l": "Autologous CD19CAR-CD28-CD137/CD27/CD3zeta-iCasp9-expressing T-lymphocytes"}, {"i": "NCIT:C148156", "l": "Autologous CD19CAR-CD28-CD137/CD27/CD3zeta-iCasp9-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516096", "l": "B-Immunoblast"}, {"i": "NCIT:C34033", "l": "B-Immunoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011023", "l": "CD25+ mast cell"}]} +{"type": "biolink:Cell", "ic": "57.799653486124861", "identifiers": [{"i": "CL:0000540", "l": "neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230522", "l": "Mitotic cell in telophase"}, {"i": "SNOMEDCT:31443005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002011", "l": "Kit-positive macrophage dendritic cell progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512505", "l": "Breast Cancer Cell"}, {"i": "NCIT:C12959", "l": "Breast Cancer Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517170", "l": "Fibrillary Neoplastic Astrocyte"}, {"i": "NCIT:C37129", "l": "Fibrillary Neoplastic Astrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000692", "l": "terminal Schwann cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023110", "l": "amygdala pyramidal neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0231044", "l": "Structure of primordial sex cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002023", "l": "CD34-positive, CD41-positive, CD42-positive megakaryocyte progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882831", "l": "Cells.CD3+CD26+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000703", "l": "kidney pelvis urothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317495", "l": "Leukocyte clumps"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009019", "l": "nephrogenic zone cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174860", "l": "Nonhematic cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013170", "l": "Spores"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023047", "l": "L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333743", "l": "Corps ronds"}, {"i": "SNOMEDCT:40302004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000582", "l": "neutrophilic metamyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522074", "l": "Skin - Melanocyte (MMHCC)"}, {"i": "NCIT:C22543", "l": "Mouse Melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072766", "l": "Cells.9q34 chromosome region"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979649", "l": "Blasts.cytoplasmic CD2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1861193", "l": "THROMBOCYTE B"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440282", "l": "Cells.CD3+CD4+CD45RO+CD45RA+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008035", "l": "microcirculation associated smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440246", "l": "Cells.CD11b+CD56+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727588", "l": "Neoplastic Corticotroph Cell with Abundant Secretory Granules"}, {"i": "NCIT:C154337", "l": "Neoplastic Corticotroph Cell with Abundant Secretory Granules"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000444", "l": "obliquely striated muscle cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002412", "l": "Vgamma1.1-positive, Vdelta6.3-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267886", "l": "Lymphocyte positive for CD19 antigen"}, {"i": "SNOMEDCT:116851009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440418", "l": "Cells.t(9;22)(q22;q12.2)(NR4A3,EWSR1)"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000459", "l": "noradrenergic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002333", "l": "neural crest derived fat cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440251", "l": "Cells.CD120b"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596568", "l": "fiber cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179416", "l": "Endothelial cell of venous sinus of red pulp of spleen"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010010", "l": "cerebellar stellate cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519682", "l": "Tumor Infiltrating Lymphocytes-N2-Transduced"}, {"i": "NCIT:C29478", "l": "Tumor Infiltrating Lymphocytes-N2-Transduced"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007018", "l": "epidermal ciliary cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317197", "l": "Cells.CD4+CD45RO+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1707838", "l": "EBV-Transformed Late Germinal Center/Post-Germinal Center B-Lymphocyte"}, {"i": "NCIT:C45694", "l": "EBV-Transformed Late Germinal Center/Post-Germinal Center B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0206436", "l": "Photoreceptor Cells, Invertebrate"}, {"i": "NCIT:C12635", "l": "Photoreceptors, Invertebrate"}, {"i": "MESH:D017956", "l": "Photoreceptor Cells, Invertebrate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333606", "l": "Transitional myocyte of posterior division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882818", "l": "Cell positive for CD20 antigen"}, {"i": "SNOMEDCT:116754005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733644", "l": "Autologous Anti-CD19 CAR T-cells IM19"}, {"i": "NCIT:C155888", "l": "Autologous Anti-CD19 CAR T-cells IM19"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0085236", "l": "Macrophages, Alveolar"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268009", "l": "Basophilic granulocytic cell"}, {"i": "SNOMEDCT:127917000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072765", "l": "Cells.ALK gene rearrangements"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002600", "l": "smooth muscle cell of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516963", "l": "Glandular cell of esophagus"}, {"i": "NCIT:C32537", "l": "Esophageal Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510967", "l": "Atypical Transitional Cell"}, {"i": "NCIT:C36911", "l": "Atypical Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157370", "l": "CD2 cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000296", "l": "epithelial cell of urethra"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333828", "l": "Myeloid cell containing Auer rod(s)"}, {"i": "SNOMEDCT:74787005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517811", "l": "Leukemic Plasma Cell"}, {"i": "NCIT:C41071", "l": "Leukemic Plasma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157428", "l": "CD3+CD16+CD56+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0231011", "l": "Ootid"}, {"i": "SNOMEDCT:49268005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002345", "l": "CD27-low, CD11b-low immature natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000692", "l": "kidney interstitial fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267981", "l": "Lymphocyte positive for CD94 antigen"}, {"i": "SNOMEDCT:117421003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172504", "l": "Mesothelial cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000948", "l": "IgE memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322671", "l": "CD14+ myeloid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333793", "l": "Abnormal hematopoietic cell"}, {"i": "SNOMEDCT:107677004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175153", "l": "Nucleated cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002435", "l": "CD69-positive, CD8-positive single-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323499", "l": "Hematopoietic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085984", "l": "Anti-Programmed Cell Death Protein 1 Antibody Expressing Pluripotent Killer T-Lymphocytes"}, {"i": "NCIT:C125654", "l": "Anti-Programmed Cell Death Protein 1 Antibody Expressing Pluripotent Killer T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000059", "l": "ameloblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011008", "l": "embryonic hemocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4287595", "l": "CD16+ CD56+ CD69+ Lymphocyte"}, {"i": "NCIT:C128465", "l": "CD16+ CD56+ CD69+ Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1444185", "l": "Cleidoic ovum part"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009011", "l": "transit amplifying cell of colon"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000637", "l": "chromophil cell of anterior pituitary gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000355", "l": "microfold cell of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000241", "l": "stratified cuboidal epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545061", "l": "May-Hegglin cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267850", "l": "Lymphocyte positive for CD6 antigen"}, {"i": "SNOMEDCT:117536002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317186", "l": "Cells.CD10+CD25+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708865", "l": "Malignant Chondrocyte with Clear Cytoplasm"}, {"i": "NCIT:C53492", "l": "Malignant Chondrocyte with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157921", "l": "Cells | Cervical mucus | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326168", "l": "Oligodendroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518267", "l": "Mouse Neuroblast"}, {"i": "NCIT:C22630", "l": "Mouse Neuroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0080261", "l": "Tumor-Derived Activated Cells"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0010008", "l": "cardiac endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950201", "l": "Type D cell of duodenum"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514031", "l": "Neoplastic Multinucleated Stromal Cell"}, {"i": "NCIT:C37124", "l": "Neoplastic Multinucleated Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023038", "l": "L6b glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002034", "l": "long term hematopoietic stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440333", "l": "Cells.CD54"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881580", "l": "Malignant Neuroendocrine Small Round Cell"}, {"i": "NCIT:C47805", "l": "Malignant Neuroendocrine Small Round Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831515", "l": "Anti-EGFRvIII CAR-transduced Allogeneic T-lymphocytes"}, {"i": "NCIT:C111565", "l": "Anti-EGFRvIII CAR-transduced Allogeneic T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2347257", "l": "CD3/CD28 Costimulated Autologous T-Cells"}, {"i": "NCIT:C74017", "l": "CD3/CD28 Costimulated Autologous T-Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0227882", "l": "Secondary oocyte"}, {"i": "NCIT:C33523", "l": "Secondary Oocyte"}, {"i": "SNOMEDCT:46886002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179017", "l": "Endothelial cell of vein"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002030", "l": "Fc-epsilon RIalpha-high basophil progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D015603", "l": "Keratinocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514069", "l": "Neoplastic Polygonal Cell with Abundant Granular Cytoplasm"}, {"i": "NCIT:C36852", "l": "Neoplastic Polygonal Cell with Abundant Granular Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0002372", "l": "myotube"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001063", "l": "neoplastic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697017", "l": "Cells.CD21-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0079722", "l": "Lymphocytes, Tumor-Infiltrating"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2737142", "l": "Monocytes.CD59"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511247", "l": "Bone Marrow Stem Cell at the Earliest Stage of Myeloid Differentiation"}, {"i": "NCIT:C41061", "l": "Bone Marrow Stem Cell at the Earliest Stage of Myeloid Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177775", "l": "Polyclonal plasma cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5159803", "l": "Chronic leukemia markers | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000827", "l": "pro-T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000706", "l": "ureter urothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002171", "l": "globose cell of olfactory epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684874", "l": "Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101"}, {"i": "NCIT:C142864", "l": "Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0000765", "l": "erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362006", "l": "Cells.CD3+CD4-CD8-CD45+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000853", "l": "olfactory epithelial supporting cell"}]} +{"type": "biolink:Cell", "ic": "74.836269892493803", "identifiers": [{"i": "CL:0001067", "l": "group 1 innate lymphoid cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515108", "l": "Syncytiotrophoblast cell"}, {"i": "NCIT:C38574", "l": "Syncytiotrophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518314", "l": "Nevus Cell C-Type"}, {"i": "NCIT:C36866", "l": "Nevus Cell C-Type"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163711", "l": "Erythrocytes | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1513961", "l": "Neoplastic Epithelial Polygonal Cell"}, {"i": "NCIT:C37036", "l": "Neoplastic Epithelial Polygonal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002591", "l": "smooth muscle cell of the pulmonary artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000437", "l": "epithelial cell of nasolacrimal duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000427", "l": "GLR cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12556", "l": "Adipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440278", "l": "Cells.CD29"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002472", "l": "MHC-II-low non-classical monocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000552", "l": "orthochromatic erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304491", "l": "Population of all polymorphonuclear cells in portion of fluid"}, {"i": "SNOMEDCT:719697003"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000094", "l": "granulocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171662", "l": "Lymphocytes | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "UMLS:C1513935", "l": "Neoplastic Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C37105", "l": "Neoplastic Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337445", "l": "Type EC2 enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317625", "l": "Plasma cell precursor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173432", "l": "Monocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899033", "l": "Genetically Engineered Hematopoietic Stem Progenitor Cells"}, {"i": "NCIT:C119988", "l": "Genetically Engineered Hematopoietic Stem Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708893", "l": "Malignant Neuroectodermal Small Cell"}, {"i": "NCIT:C54044", "l": "Malignant Neuroectodermal Small Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000583", "l": "alveolar macrophage"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002069", "l": "type II vestibular sensory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736929", "l": "Cells.CD19+CD20+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038497", "l": "Cells.aneuploid.G2 phase population"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440143", "l": "Blasts.CD19"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157240", "l": "CD10+CD20+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336252", "l": "Type 2A muscle fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514891", "l": "Reserve Stem Cell"}, {"i": "NCIT:C33464", "l": "Reserve Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518113", "l": "MB01"}, {"i": "NCIT:C20275", "l": "MB01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005003", "l": "leucoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023097", "l": "arachnoid barrier cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708978", "l": "Melanoma Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte"}, {"i": "NCIT:C48814", "l": "Melanoma Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324544", "l": "Type I enteric ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171751", "l": "Lymphocytes+Monocytes/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0008010", "l": "Chemoreceptor Cells"}, {"i": "MESH:D002628", "l": "Chemoreceptor Cells"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000408", "l": "male gamete"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000959", "l": "T2 B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022686", "l": "Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002558", "l": "fibroblast of villous mesenchyme"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000657", "l": "secondary spermatocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001586", "l": "mammary gland glandular cell"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C1879552", "l": "Adenocarcinoma Cell with Abundant Cytoplasm"}, {"i": "NCIT:C60433", "l": "Adenocarcinoma Cell with Abundant Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001026", "l": "CD34-positive, CD38-positive common myeloid progenitor"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002257", "l": "epithelial cell of thyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5187201", "l": "RBC^Patient"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709185", "l": "Neoplastic Mature Adipocyte"}, {"i": "NCIT:C48897", "l": "Neoplastic Mature Adipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4528183", "l": "Derived Dental Pulp"}, {"i": "NCIT:C138973", "l": "Derived Dental Pulp"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163717", "l": "Erythrocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000470", "l": "myoepithelial cell of primary lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0443611", "l": "Fat globule"}, {"i": "SNOMEDCT:259580005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0003649", "l": "APUD Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000497", "l": "red sensitive photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:4023041", "l": "L5 extratelencephalic projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1512944", "l": "Intraepithelial Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000452", "l": "thyroid hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009038", "l": "colon macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335794", "l": "Myocyte of atrial septal branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514088", "l": "Neoplastic Small Immature Neuroepithelial Cell"}, {"i": "NCIT:C41836", "l": "Neoplastic Small Immature Neuroepithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163771", "l": "Erythroid cells | Blood or Marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267971", "l": "Lymphocyte positive for CD79B antigen"}, {"i": "SNOMEDCT:117411006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186830", "l": "Myelocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350150", "l": "Pronormoblasts"}]} +{"type": "biolink:Cell", "ic": "77.02358060617253", "identifiers": [{"i": "UMLS:C1514039", "l": "Neoplastic Myeloid Cell"}, {"i": "NCIT:C41063", "l": "Neoplastic Myeloid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518184", "l": "Malignant Thyroid Gland Oncocyte"}, {"i": "NCIT:C37097", "l": "Malignant Thyroid Gland Oncocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001041", "l": "CD8-positive, CXCR3-positive, alpha-beta regulatory T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002656", "l": "glandular cell of endometrium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1277067", "l": "Entire corneal corpuscle"}, {"i": "SNOMEDCT:368826000"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513168", "l": "Metaplastic Apocrine Cell"}, {"i": "NCIT:C36882", "l": "Metaplastic Apocrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725101", "l": "Autologous CD20-4SCAR-expressing T-cells 4SCAR20"}, {"i": "NCIT:C148525", "l": "Autologous CD20-4SCAR-expressing T-cells 4SCAR20"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002302", "l": "type A synovial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0443779", "l": "Microspherocyte"}, {"i": "SNOMEDCT:259683003"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000878", "l": "central nervous system macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507335", "l": "Ciliated columnar lining cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000904", "l": "central memory CD4-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598828", "l": "granule cell (connective tissue)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000700", "l": "dopaminergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179549", "l": "Epithelial cell of esophagus"}]} +{"type": "biolink:Cell", "ic": "73.344328060803463", "identifiers": [{"i": "CL:0002086", "l": "specialized cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267969", "l": "Lymphocyte positive for CD77 antigen"}, {"i": "SNOMEDCT:117409002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979202", "l": "Blast cell positive for CD3 antigen"}, {"i": "SNOMEDCT:724261003"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000050", "l": "megakaryocyte-erythroid progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000606", "l": "kidney nerve cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086901", "l": "Therapeutic gamma delta T-lymphocytes"}, {"i": "NCIT:C124644", "l": "Therapeutic gamma delta T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157423", "l": "CD3- CD8- CD57+ Cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1001320", "l": "urethra cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0001051", "l": "CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023122", "l": "oxytocin receptor sst GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000528", "l": "nitrergic neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522131", "l": "Leukocyte - Lymphocyte - T-Lymphocyte (MMHCC)"}, {"i": "NCIT:C22582", "l": "Mouse T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514082", "l": "Neoplastic Sertoli Cell"}, {"i": "NCIT:C36895", "l": "Neoplastic Sertoli Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085971", "l": "Anti-Epidermal Growth Factor Receptor 2 Antibody Expressing Pluripotent Killer T-Lymphocytes"}, {"i": "NCIT:C125633", "l": "Anti-Epidermal Growth Factor Receptor 2 Antibody Expressing Pluripotent Killer T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441341", "l": "100 erythrocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1631611", "l": "Bone marrow derived somatic stem cell"}, {"i": "SNOMEDCT:420190000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440292", "l": "Cells.CD3+TCR"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000380", "l": "thecogen cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924227", "l": "Cells.CD7+CD34+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009093", "l": "smooth muscle cell of placenta"}]} +{"type": "biolink:Cell", "ic": "68.460472936803939", "identifiers": [{"i": "CL:0000791", "l": "mature alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3847488", "l": "Cells.CD3-CD4+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002443", "l": "Ly49CI-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002544", "l": "aortic endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267888", "l": "Lymphocyte positive for both CD19 antigen and surface lambda immunoglobulin light chain"}, {"i": "SNOMEDCT:117564007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945932", "l": "Cells.CD42"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007020", "l": "bottle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157544", "l": "CD4+CD45RA+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0014802", "l": "Erythroid Precursor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000372", "l": "tormogen cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000257", "l": "Eumycetozoan cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899314", "l": "EGFRvIII-specific CAR-transduced Autologous T Lymphocytes"}, {"i": "NCIT:C117727", "l": "EGFRvIII-specific CAR-transduced Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002177", "l": "folliculostellate cell of pars distalis of adenohypophysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268003", "l": "Lymphocyte positive for CD198 antigen"}, {"i": "SNOMEDCT:117443006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085987", "l": "Anti-mesothelin CAR Vector-transduced Autologous T-lymphocytes"}, {"i": "NCIT:C124650", "l": "Anti-mesothelin CAR Vector-transduced Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3714800", "l": "SCID-Repopulating Cell"}, {"i": "NCIT:C114279", "l": "SCID-Repopulating Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0029974", "l": "Ovum"}, {"i": "MESH:D010063", "l": "Ovum"}, {"i": "SNOMEDCT:263828003"}, {"i": "SNOMEDCT:308796009"}, {"i": "SNOMEDCT:73153001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333823", "l": "Smudge cell"}, {"i": "SNOMEDCT:34717007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175159", "l": "Nucleated erythrocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000059", "l": "prostate gland microvascular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000391", "l": "podocyte (sensu Diptera)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002054", "l": "Fraction E immature B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157492", "l": "CD34 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007017", "l": "Stiftchenzellen"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000131", "l": "gut endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0162556", "l": "Suppressor inducer T lymphocyte"}, {"i": "NCIT:C12541", "l": "Suppressor-Inducer T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000218", "l": "myelinating Schwann cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440365", "l": "Cells.CD88"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733125"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3656574", "l": "Cells.CD3-CD16+CD56+HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157235", "l": "CD10 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0920751", "l": "Heart cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979670", "l": "Cells.CD19+IgM+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334042", "l": "Microfold cell of epithelium proper of ileum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440362", "l": "Cells.CD85"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2698236", "l": "Mobilized Peripheral Blood Stem Cell"}, {"i": "NCIT:C75576", "l": "Mobilized Peripheral Blood Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229604", "l": "Reticuloendothelial cell"}, {"i": "SNOMEDCT:27604002"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513988", "l": "Neoplastic Thyroid Gland Oncocyte"}, {"i": "NCIT:C37095", "l": "Neoplastic Thyroid Gland Oncocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4082861", "l": "Vascular smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324017", "l": "H II cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253022", "l": "Set of cells of pancreatic islet"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000840", "l": "immature conventional dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0871657", "l": "Auditory Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4517923", "l": "Population of all round cells in portion of fluid"}, {"i": "SNOMEDCT:732289008"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0008028", "l": "visual system neuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1518994", "l": "Peripheral B-Lymphocyte"}, {"i": "NCIT:C38330", "l": "Peripheral B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0227693", "l": "Umbrella cell"}, {"i": "SNOMEDCT:16023000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4521048", "l": "JR-0301"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514042", "l": "Neoplastic Natural Killer Cell"}, {"i": "NCIT:C36994", "l": "Neoplastic Natural Killer Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1515878", "l": "Activated B-Lymphocyte"}, {"i": "NCIT:C38333", "l": "Activated B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881408", "l": "Lipid-Rich Neoplastic Spindle Cell"}, {"i": "NCIT:C61424", "l": "Lipid-Rich Neoplastic Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174627", "l": "Neutrophils | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "UMLS:C1265916", "l": "Abnormal macrophage"}, {"i": "NCIT:C36832", "l": "Abnormal Macrophage"}, {"i": "SNOMEDCT:127565009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186196", "l": "Donated egg | Patient | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172547", "l": "Metamyelocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000084282", "l": "HaCaT Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000411", "l": "Caenorhabditis hypodermal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515997", "l": "Anti-gp100 TCR Retroviral Vector-Transduced Autologous TIL"}, {"i": "NCIT:C38135", "l": "Anti-gp100 TCR Retroviral Vector-Transduced Autologous TIL"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000340", "l": "enterocyte of epithelium proper of duodenum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524817", "l": "Mossy Fibers, Hippocampal"}, {"i": "MESH:D019599", "l": "Mossy Fibers, Hippocampal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002628", "l": "immature microglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518150", "l": "Population of all spermatozoa with bent midpiece in portion of fluid"}, {"i": "SNOMEDCT:725239001"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000547", "l": "proerythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1563926", "l": "Th3 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322738", "l": "CD57+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086897", "l": "Tergenpumatucel-L"}, {"i": "NCIT:C66985", "l": "Tergenpumatucel-L"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516092", "l": "Atypical Endothelial Cell"}, {"i": "NCIT:C37087", "l": "Atypical Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:1000600", "l": "lower urinary tract cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000466", "l": "chromaffin cell of right ovary"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001603", "l": "lung macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085999", "l": "Autologous Anti-CD123 CAR TCR/4-1BB-expressing T-lymphocytes"}, {"i": "NCIT:C125101", "l": "Autologous Anti-CD123 CAR TCR/4-1BB-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001016", "l": "immature CD1a-positive Langerhans cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267792", "l": "Cells.CD25+CD127-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518307", "l": "Neutrophil with Cytoplasmic Hypogranularity"}, {"i": "NCIT:C37174", "l": "Neutrophil with Cytoplasmic Hypogranularity"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1135917", "l": "Myoblasts, Cardiac"}, {"i": "MESH:D032386", "l": "Myoblasts, Cardiac"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881552", "l": "Malignant Epithelial Small Oval Cell"}, {"i": "NCIT:C60999", "l": "Malignant Epithelial Small Oval Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000320", "l": "large intestine goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328655", "l": "Reticular cell of splenic cord"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896611", "l": "ROR1 CAR-specific Autologous T-Lymphocytes"}, {"i": "NCIT:C117237", "l": "ROR1 CAR-specific Autologous T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178739", "l": "Effector B Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000397", "l": "ganglion interneuron"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000225", "l": "anucleate cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333817", "l": "Hyposegmented leukocyte"}, {"i": "SNOMEDCT:42997003"}]} +{"type": "biolink:Cell", "ic": "74.159372409045062", "identifiers": [{"i": "CL:0002321", "l": "embryonic cell (metazoa)"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1001579", "l": "cerebral cortex glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744687", "l": "Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s"}, {"i": "NCIT:C156251", "l": "Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005023", "l": "branchiomotor neuron"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000841", "l": "mature conventional dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338514", "l": "Set of Ch3 cholinergic cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002090", "l": "polar body"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000802", "l": "CD8-alpha alpha positive, gamma-delta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000769", "l": "basophilic metamyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002020", "l": "GlyA-positive reticulocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1510753", "l": "Acantholytic Keratinocyte"}, {"i": "NCIT:C36747", "l": "Acantholytic Keratinocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513175", "l": "Metaplastic Myoepithelial Cell"}, {"i": "NCIT:C37168", "l": "Metaplastic Myoepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086900", "l": "Therapeutic Dendritic Cells/Cytokine-induced Killer Cells"}, {"i": "NCIT:C123819", "l": "Therapeutic Dendritic Cells/Cytokine-induced Killer Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1510959", "l": "Atypical Melanocyte"}, {"i": "NCIT:C36867", "l": "Atypical Melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002303", "l": "pigmented ciliary epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002669", "l": "type 3 otic fibrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178306", "l": "Promyelocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181285", "l": "Prickle cell of epidermis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709194", "l": "Neoplastic Plump Endothelial Cell"}, {"i": "NCIT:C53305", "l": "Neoplastic Plump Endothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336943", "l": "Transitional myocyte of interatrial septum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708692", "l": "Leukemic Mast Cell"}, {"i": "NCIT:C43274", "l": "Leukemic Mast Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000323", "l": "pyloric gastric gland goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4525866", "l": "Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718"}, {"i": "NCIT:C135534", "l": "Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000682", "l": "kidney medulla interstitial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317328", "l": "Eosinophils.immature"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440257", "l": "Cells.CD14+HLA-DR+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005022", "l": "vascular lymphangioblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267974", "l": "Lymphocyte positive for CD83 antigen"}, {"i": "SNOMEDCT:117414003"}]} +{"type": "biolink:Cell", "ic": "75.324974028080362", "identifiers": [{"i": "CL:0000319", "l": "mucus secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3640939", "l": "tisagenlecleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000930", "l": "CD4-negative, CD8-negative type I NK T cell secreting interleukin-4"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0376702", "l": "COS Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333736", "l": "Alzheimer type II glial cell"}, {"i": "SNOMEDCT:29209006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176795", "l": "Blasts.cytoplasmic CD179a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0683191", "l": "Ooblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440265", "l": "Cells.CD19+CD23+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881590", "l": "Malignant Round Germ Cell with Glycogen-Rich Cytoplasm and Round Nucleus"}, {"i": "NCIT:C61064", "l": "Malignant Round Germ Cell with Glycogen-Rich Cytoplasm and Round Nucleus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333349", "l": "Retinal microglial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002151", "l": "late promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640100", "l": "Lentivirus Vector rHIV7-shI-TAR-CCR5RZ-transduced Hematopoietic Progenitor Cells"}, {"i": "NCIT:C101371", "l": "Lentivirus Vector rHIV7-shI-TAR-CCR5RZ-transduced Hematopoietic Progenitor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180941", "l": "Siderocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001072", "l": "CD34-negative, CD117-positive innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708897", "l": "Malignant Ovoid to Spindle-Shaped Fibrohistiocytic Cell"}, {"i": "NCIT:C49067", "l": "Malignant Ovoid to Spindle-Shaped Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4042840", "l": "RAW 264.7 Cells"}, {"i": "MESH:D000067996", "l": "RAW 264.7 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002626", "l": "immature astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1525454", "l": "Cells.CD2+CD3+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000556", "l": "megakaryocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4319573", "l": "Clue cell"}, {"i": "SNOMEDCT:726573004"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000651", "l": "mucous neck cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697026", "l": "Cells.CD27+IgD-IgM+"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:1000405", "l": "epithelial cell of appendix"}]} +{"type": "biolink:Cell", "ic": "66.945115279808661", "identifiers": [{"i": "CL:0000236", "l": "B cell"}]} +{"type": "biolink:Cell", "ic": "69.756993955295187", "identifiers": [{"i": "UMLS:C1512104", "l": "Dysplastic Glandular Cell"}, {"i": "NCIT:C36794", "l": "Dysplastic Glandular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322736", "l": "CD25+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0949432", "l": "TC2 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518313", "l": "Nevus Cell B-Type"}, {"i": "NCIT:C36865", "l": "Nevus Cell B-Type"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323865", "l": "Non-spiny stellate cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:2000019", "l": "compound eye photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148382", "l": "Monocytes+Macrophages"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C12596", "l": "Eukaryotic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522066", "l": "Skin - Epidermis - Basal Cell (MMHCC)"}, {"i": "NCIT:C22540", "l": "Mouse Basal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12518", "l": "Blastomere"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002660", "l": "luminal cell of acinus of lactiferous gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323609", "l": "Type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002041", "l": "immature NK T cell stage III"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514026", "l": "Neoplastic Monoblast"}, {"i": "NCIT:C37181", "l": "Neoplastic Monoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173415", "l": "Monoblasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157551", "l": "CD4+CD45RO+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0376604", "l": "Chromaffin Cells"}, {"i": "NCIT:C12554", "l": "Chromaffin Cell"}, {"i": "MESH:D019439", "l": "Chromaffin Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000533", "l": "primary motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0227276", "l": "Paneth Cells"}, {"i": "NCIT:C12593", "l": "Paneth Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0521182", "l": "Opalski cell"}, {"i": "SNOMEDCT:83687003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181301", "l": "Inactive chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267991", "l": "CD105+ lymphocyte"}, {"i": "SNOMEDCT:117431005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023115", "l": "type 1 spiral ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979636", "l": "Blasts.CD11c"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009082", "l": "committed double negative thymocyte (Homo sapiens)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514086", "l": "Neoplastic Small Cleaved Follicle Center Cell"}, {"i": "NCIT:C37002", "l": "Neoplastic Small Cleaved Follicle Center Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173436", "l": "Monocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4533461", "l": "Cells.CD4-CD8-CD45R+TCR alpha beta+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515127", "l": "T-Cell Large Granular Lymphocyte"}, {"i": "NCIT:C38673", "l": "T-Cell Large Granular Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510902", "l": "Blast cell positive for CD11a antigen"}, {"i": "SNOMEDCT:724244001"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:4023000", "l": "beta motor neuron"}]} +{"type": "biolink:Cell", "ic": "75.848614326174683", "identifiers": [{"i": "CL:0002632", "l": "epithelial cell of lower respiratory tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000061", "l": "placental amniotic mesenchymal stromal cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0008037", "l": "gamma motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0007658", "l": "Cementoblasts"}, {"i": "NCIT:C32274", "l": "Cementoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000753", "l": "type 1 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001210", "l": "outer medulla vasa recta ascending limb cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002146", "l": "clear cell of eccrine sweat gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000697", "l": "kidney interstitial suppressor macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023020", "l": "dynamic gamma motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333855", "l": "Parasympathetic preganglionic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682540", "l": "spindle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724905", "l": "Autologous PD-L1/CD80/CD86-targeted CAR-T Cells"}, {"i": "NCIT:C148216", "l": "Autologous PD-L1/CD80/CD86-targeted CAR-T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229637", "l": "Neutrophilic myelocyte"}, {"i": "SNOMEDCT:4717004"}]} +{"type": "biolink:Cell", "ic": "74.159372409045062", "identifiers": [{"i": "CL:0000064", "l": "ciliated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163449", "l": "Eosinophils | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950760", "l": "Interdigitating dendritic cell of mucosa-associated lymphoid tissue"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229470", "l": "Pillar cell"}, {"i": "NCIT:C33322", "l": "Pillar Cell"}, {"i": "SNOMEDCT:55842008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023007", "l": "L2/3 bipolar vip GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157311", "l": "CD14 Monocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0008025", "l": "noradrenergic neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724904", "l": "Allogeneic iC9/CD19-CAR-CD28-zeta-2A-IL15-transduced Cord Blood-derived Natural Killer Cells"}, {"i": "NCIT:C148215", "l": "Allogeneic iC9/CD19-CAR-CD28-zeta-2A-IL15-transduced Cord Blood-derived Natural Killer Cells TAK-007"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:4023040", "l": "L2/3-6 intratelencephalic projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1880084", "l": "Ciliated Adenocarcinoma Cell"}, {"i": "NCIT:C61577", "l": "Ciliated Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12539", "l": "Type 1 Helper Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002021", "l": "GlyA-positive erythrocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514091", "l": "Neoplastic Small Neuroepithelial Cell"}, {"i": "NCIT:C41835", "l": "Neoplastic Small Neuroepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517809", "l": "Leukemic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm"}, {"i": "NCIT:C41068", "l": "Leukemic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334670", "l": "Tracheal goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267927", "l": "Lymphocyte positive for CD44R antigen"}, {"i": "SNOMEDCT:117371001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3655457", "l": "Platelets Ord"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697031", "l": "Cells.CD38+IgM-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763664", "l": "CD56-enriched CD3-positive Donor Lymphocytes"}, {"i": "NCIT:C157500", "l": "CD56-enriched CD3-positive Donor Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000025", "l": "egg cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157320", "l": "CD15 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440375", "l": "Cells.CD99"}]} +{"type": "biolink:Cell", "ic": "72.438504002572699", "identifiers": [{"i": "CL:0011005", "l": "GABAergic interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979668", "l": "CD19+IgD+ cell"}, {"i": "SNOMEDCT:732276002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182650", "l": "Ciliary muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0597407", "l": "retinal bipolar neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000035", "l": "anterior lateral line neuromast mantle cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000549", "l": "basophilic erythroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000671", "l": "centripetally migrating follicle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2981629", "l": "Anti-CD19-CAR Retroviral Vector-Transduced Autologous T Cells"}, {"i": "NCIT:C88055", "l": "Anti-CD19-CAR Retroviral Vector-Transduced Autologous T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1524111", "l": "Erythrocyte (RBC) (MMHCC)"}, {"i": "NCIT:C22566", "l": "Mouse Erythrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0521184", "l": "Atypical squamous cells of uncertain significance"}, {"i": "NCIT:C8434", "l": "Atypical Squamous Cell of Undetermined Significance"}, {"i": "SNOMEDCT:39035006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1977364", "l": "Granulocytes.CD55"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516944", "l": "Epithelial Reticular Cell"}, {"i": "NCIT:C13124", "l": "Epithelial Reticular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002448", "l": "Ly49H-negative natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268001", "l": "Lymphocyte positive for CD126 antigen"}, {"i": "SNOMEDCT:117441008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177622", "l": "Platelets | Plasma | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175006", "l": "Normoblasts | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001043", "l": "activated CD4-positive, alpha-beta T cell, human"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831512", "l": "Anti-NY-ESO1 TCR-transduced Autologous CD62L+-derived T-Lymphocytes"}, {"i": "NCIT:C114295", "l": "Anti-NY-ESO1 TCR-transduced Autologous CD62L+-derived T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4522300", "l": "CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes"}, {"i": "NCIT:C133073", "l": "CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000200", "l": "touch receptor cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1001431", "l": "kidney collecting duct principal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340284", "l": "Differentiated hemal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176907", "l": "Cells.cytoplasmic CD79a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4240450", "l": "Vascular smooth muscle cell of arteriole"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000203", "l": "gravity sensitive cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900005", "l": "Autologous Anti-HPV-16 E6 T-cell Receptor Gene-engineered Peripheral Blood Lymphocytes"}, {"i": "NCIT:C118850", "l": "Autologous Anti-HPV-16 E6 T-cell Receptor Gene-engineered Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1513971", "l": "Neoplastic Germ Cell"}, {"i": "NCIT:C36903", "l": "Neoplastic Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182621", "l": "Epithelial cell of wall of inferior part of anal canal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327051", "l": "Epithelial cell of esophageal gland proper"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010020", "l": "cardiac glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000068", "l": "pericardium fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013093", "l": "Spermatogonia"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545578", "l": "Marrow plasmablast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1292097", "l": "IgA B lymphocyte"}, {"i": "SNOMEDCT:115603005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002668", "l": "type 4 otic fibrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023090", "l": "small basket cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519459", "l": "Spindle-Shaped Meningothelial Cell"}, {"i": "NCIT:C37156", "l": "Spindle-Shaped Meningothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0884134", "l": "Cells.CD24"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157368", "l": "CD2 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979010", "l": "Cells.CD38+CD138+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163441", "l": "Eosinophils | Nose | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1328818", "l": "Podocytes"}, {"i": "NCIT:C33334", "l": "Podocyte"}, {"i": "MESH:D050199", "l": "Podocytes"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0000413", "l": "haploid cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1001585", "l": "appendix glandular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157468", "l": "CD3+HLA-DR+ cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1710694", "l": "Xanthomatous Cell"}, {"i": "NCIT:C49071", "l": "Xanthomatous Cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1708904", "l": "Malignant Rhabdomyoblast"}, {"i": "NCIT:C49198", "l": "Malignant Rhabdomyoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171770", "l": "Lymphoma cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171872", "l": "Macrophages | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000505", "l": "substance P secreting cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513934", "l": "Neoplastic Blastemal Cell"}, {"i": "NCIT:C37121", "l": "Neoplastic Blastemal Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002508", "l": "langerin-negative, CD103-negative lymph node dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682549", "l": "argentaffin cell (stain)"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1513925", "l": "Neoplastic Astrocyte"}, {"i": "NCIT:C37127", "l": "Neoplastic Astrocyte"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "CL:0000824", "l": "mature natural killer cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0001012", "l": "CD7-negative lymphoid progenitor OR granulocyte monocyte progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000839", "l": "kidney proximal straight tubule epithelial cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0002231", "l": "epithelial cell of prostate"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1510735", "l": "Abnormal Syncytiotrophoblastic Cell"}, {"i": "NCIT:C36800", "l": "Abnormal Syncytiotrophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009013", "l": "fetal hepatobiliary progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002424", "l": "DN2b thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002128", "l": "Tc17 cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1709183", "l": "Neoplastic Lipoblast"}, {"i": "NCIT:C48878", "l": "Neoplastic Lipoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510903", "l": "Blast cell positive for CD11b antigen"}, {"i": "SNOMEDCT:724243007"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1510727", "l": "Abnormal Intermediate Type Trophoblastic Cell"}, {"i": "NCIT:C36802", "l": "Abnormal Intermediate Type Trophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000932", "l": "type II NK T cell secreting interferon-gamma"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0022801", "l": "Hepatic macrophage"}, {"i": "NCIT:C12564", "l": "Kupffer Cell"}, {"i": "MESH:D007728", "l": "Kupffer Cells"}, {"i": "SNOMEDCT:256002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512337", "l": "HeLa/SF"}, {"i": "NCIT:C20228", "l": "HeLa/SF"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330614", "l": "Transitional myocyte of atrial part of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1282866", "l": "Entire blastomere"}, {"i": "SNOMEDCT:343113005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546508", "l": "P.B. lymphoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157650", "l": "CD7 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157553", "l": "CD4+CD45RO+ cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512551", "l": "Hyperchromatic Stromal Cell"}, {"i": "NCIT:C36980", "l": "Hyperchromatic Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000635", "l": "Deiter's cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157374", "l": "CD2+CD26+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1171322", "l": "Adult Stem Cells"}, {"i": "NCIT:C43420", "l": "Adult Stem Cell"}, {"i": "MESH:D053687", "l": "Adult Stem Cells"}, {"i": "SNOMEDCT:417904004"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:2000032", "l": "peripheral nervous system neuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1519466", "l": "Spindle Endothelial Cell"}, {"i": "NCIT:C37092", "l": "Spindle Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "CL:0000199", "l": "mechanoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157446", "l": "CD3+CD5- cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000734", "l": "embryonic gland plasmatocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736934", "l": "Cells.CD5+FMC7+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002580", "l": "preadipocyte of the breast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0947305", "l": "Erythrocytes.CD59"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514179", "l": "Pleomorphic Small T-Lymphocyte"}, {"i": "NCIT:C39601", "l": "Pleomorphic Small T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000437", "l": "gonadtroph"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440384", "l": "Cells.euploid+Cells.aneuploid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725769", "l": "Cord Blood-derived Expanded Allogeneic Natural Killer Cells"}, {"i": "NCIT:C150483", "l": "Cord Blood-derived Expanded Allogeneic Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002056", "l": "Fraction F mature B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4745144", "l": "Autologous CD4+/CD8+ EGFR806 Specific 4-1BB-CD3zeta-EGFRt-expressing CAR T Cells"}, {"i": "NCIT:C156883", "l": "Autologous CD4+/CD8+ EGFR806 Specific 4-1BB-CD3zeta-EGFRt-expressing CAR T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007019", "l": "epidermal mucus secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725073", "l": "Autologous CD5-specific CAR-28 zeta CAR T-cells"}, {"i": "NCIT:C148490", "l": "Autologous CD5-specific CAR-28 zeta CAR T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513815", "l": "NC02"}, {"i": "NCIT:C20282", "l": "NC02"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001031", "l": "cerebellar granule cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317736", "l": "Progressive spermatozoa"}, {"i": "SNOMEDCT:726586008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173496", "l": "Mononuclear cells | Dialysis fluid peritoneal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522252", "l": "Ovary - Granulosa Cell (MMHCC)"}, {"i": "NCIT:C22662", "l": "Mouse Granulosa Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744926", "l": "Bone Marrow Mononuclear Cell"}, {"i": "NCIT:C156591", "l": "Bone Marrow Mononuclear Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000484", "l": "Purkinje myocyte of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1000458", "l": "melanocyte of skin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709115", "l": "Cells.CD138+Lambda+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009056", "l": "transit amplifying cell of anorectum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717666", "l": "Cells.CD4+CD45RA+CD45RB+CD45RC+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000380", "l": "type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157545", "l": "CD4+CD45RA+CD45RB+CD45RC+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000223", "l": "endodermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229610", "l": "Tissue eosinophil"}, {"i": "SNOMEDCT:55109005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510904", "l": "Blast cell positive for CD179a antigen"}, {"i": "SNOMEDCT:724249006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317511", "l": "Lymphocytes.immunoblastic"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002379", "l": "meningothelial cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000980", "l": "plasmablast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314596", "l": "Spleen colony-forming unit"}, {"i": "SNOMEDCT:445288000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515965", "l": "Anaplastic Large B-Lymphocyte"}, {"i": "NCIT:C37015", "l": "Anaplastic Large B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682519", "l": "rodent cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3898995", "l": "HLA-DP0401/0402-Restricted MAGE-A3-Reactive T Cell Receptor-transduced Autologous T Cells"}, {"i": "NCIT:C115979", "l": "HLA-DP0401/0402-Restricted MAGE-A3-Reactive T Cell Receptor-transduced Autologous T Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1711298", "l": "Malignant Chondrocyte"}, {"i": "NCIT:C53478", "l": "Malignant Chondrocyte"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:0000790", "l": "immature alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002552", "l": "fibroblast of gingiva"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955385", "l": "Spermatozoa.short tail"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440287", "l": "Cells.CD3+CD8+CD45RO+CD45RA-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181474", "l": "Chromaffin cell of adrenal medulla"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267887", "l": "CD19+SMIG KAPPA+ lymphocyte"}, {"i": "SNOMEDCT:117563001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254548", "l": "Polychromatocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4761464", "l": "Autologous CD4+/CD8+ 4-1BB-CD3zeta-EGFR806-CAR-EGFRt/4-1BB-CD3zeta-CD19-CAR-HER2tG-expressing CARs T Cells"}, {"i": "NCIT:C157090", "l": "Autologous CD4+/CD8+ 4-1BB-CD3zeta-EGFR806-CAR-EGFRt/4-1BB-CD3zeta-CD19-CAR-HER2tG-expressing CARs T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229663", "l": "Marrow fibroblast"}, {"i": "SNOMEDCT:24151005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001062", "l": "effector memory CD8-positive, alpha-beta T cell, terminally differentiated"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000488", "l": "cholangiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511043", "l": "Balloon Epithelial Cell"}, {"i": "NCIT:C36751", "l": "Balloon Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002665", "l": "otic fibrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157476", "l": "CD30 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267902", "l": "Lymphocyte positive for CD29 antigen"}, {"i": "SNOMEDCT:117573004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517540", "l": "Giant Astrocyte"}, {"i": "NCIT:C36842", "l": "Giant Astrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000391", "l": "melanocyte of eyelid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002209", "l": "intermediate epitheliocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000053", "l": "splenic endothelial cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0005009", "l": "renal principal cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0225335", "l": "Mesothelial cell"}, {"i": "NCIT:C33104", "l": "Mesothelial Cell"}, {"i": "SNOMEDCT:58966000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000193", "l": "cardiac muscle cell (sensu Arthopoda)"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C1518275", "l": "Neuroendocrine Cells"}, {"i": "NCIT:C12485", "l": "Neuroendocrine Cell"}, {"i": "MESH:D055099", "l": "Neuroendocrine Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334580", "l": "Enterocyte of epithelium of duodenal gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163538", "l": "Epithelial cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513753", "l": "Multipotent Bone Marrow Stem Cell"}, {"i": "NCIT:C41058", "l": "Multipotent Bone Marrow Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055234", "l": "Circulating Clonotypic B-Cell"}, {"i": "NCIT:C120462", "l": "Circulating Clonotypic B-Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12646", "l": "Gamma Motor Neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518066", "l": "Lymphocyte with Abundant Pale Cytoplasm"}, {"i": "NCIT:C37028", "l": "Lymphocyte with Abundant Pale Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333809", "l": "Microcytic hypochromic erythrocyte"}, {"i": "SNOMEDCT:62570005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725081", "l": "Allogeneic interleukin-17-producing CD8-positive T-cells"}, {"i": "NCIT:C148499", "l": "Allogeneic interleukin-17-producing CD8-positive T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170939", "l": "Leukocytes | Sputum | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682699", "l": "neuron type by location"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518156", "l": "Population of all spermatozoa with abnormal head size in portion of fluid"}, {"i": "SNOMEDCT:725225001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177798", "l": "Polymorphonuclear cells/leukocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333845", "l": "Polyploid plasmablast"}, {"i": "SNOMEDCT:55093000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000395", "l": "procrystal cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000871", "l": "splenic macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440250", "l": "Cells.CD120a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1277065", "l": "Entire interstitial cell of Leydig"}, {"i": "SNOMEDCT:367715001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882871", "l": "Cells.CD41"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953150", "l": "Type D enteroendocrine cell of epithelium of principal gastric gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0242633", "l": "T-helper cell type 2"}, {"i": "NCIT:C12540", "l": "Type 2 Helper Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340022", "l": "Resting histiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2347293", "l": "Mononucleated Blood Cell"}, {"i": "NCIT:C73123", "l": "Mononucleated Blood Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510684", "l": "ADA Transduced T Cell"}, {"i": "NCIT:C28797", "l": "ADA Transduced T Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0007600", "l": "Cultured Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002008", "l": "CD34-positive, CD38-positive eosinophil progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180368", "l": "Type III taste bud cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322818", "l": "CD99+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175602", "l": "Other cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267998", "l": "Lymphocyte positive for CD120A antigen"}, {"i": "SNOMEDCT:117438004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763553", "l": "Allogeneic CMV Antigen-specific CD4+/CD8+ T-lymphocytes"}, {"i": "NCIT:C157340", "l": "Allogeneic CMV Antigen-specific CD4+/CD8+ T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002442", "l": "CD94-negative, Ly49CI-negative natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002273", "l": "type ECL enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0019031", "l": "intestine goblet cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000390", "l": "blood cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1514003", "l": "Neoplastic Large Germ Cell"}, {"i": "NCIT:C36904", "l": "Neoplastic Large Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D008184", "l": "Luteal Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001124", "l": "kidney cortex peritubular capillary cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289001", "l": "HPV-16 E7 TCR Expressing T-cells"}, {"i": "NCIT:C128485", "l": "HPV-16 E7 TCR Expressing T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598625", "l": "myeloma and spleen cell hybrid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267839", "l": "Lymphocyte negative for CD3 antigen and positive for both CD16 antigen and CD56 antigen"}, {"i": "SNOMEDCT:116730000"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1709215", "l": "Neural Crest-Derived Cell"}, {"i": "NCIT:C48431", "l": "Neural Crest-Derived Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979182", "l": "Blasts.CD179a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000358", "l": "microfold cell of epithelium proper of ileum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002440", "l": "Ly49D-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267836", "l": "Lymphocyte positive for both CD3 antigen and IL2R1 antigen"}, {"i": "SNOMEDCT:117526005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177340", "l": "Pincer cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001567", "l": "lung endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001757", "l": "Blastomeres"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0814005", "l": "Neuroblast"}, {"i": "NCIT:C12991", "l": "Neuroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267961", "l": "Lymphocyte positive for CD66D antigen"}, {"i": "SNOMEDCT:117402006"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1180326", "l": "Olfactory epithelial cell"}, {"i": "NCIT:C13150", "l": "Olfactory Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896577", "l": "LMP1/BARF1/EBNA1-specific Cytotoxic T-lymphocytes"}, {"i": "NCIT:C118956", "l": "LMP1/BARF1/EBNA1-specific Cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157302", "l": "CD135 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157465", "l": "CD3+HLA-DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155168", "l": "Blasts | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4700206", "l": "Cells.CD25+CD45RA+CD127Low+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000438", "l": "epithelial cell of wall of inferior part of anal canal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183359", "l": "Type-3 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4683874", "l": "Atypical Glandular Cell-Favor Neoplasia"}, {"i": "NCIT:C141517", "l": "Atypical Glandular Cell-Favor Neoplasia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4006001", "l": "fibroblast of skin of scalp"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002582", "l": "visceral preadipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12630", "l": "Type I Hair Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440266", "l": "Cells.CD19+CD38+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000735", "l": "lymph gland hemocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335912", "l": "Fibroblast of papillary layer of dermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0282542", "l": "Cells, Immobilized"}, {"i": "MESH:D018914", "l": "Cells, Immobilized"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682526", "l": "lymphoblastoid cell line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267833", "l": "Lymphocyte positive for both CD3 antigen and CD8 antigen"}, {"i": "SNOMEDCT:116725004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515627", "l": "gp100-Reactive Autologous Tumor Infiltrating Lymphocyte"}, {"i": "NCIT:C38125", "l": "gp100-Reactive Autologous Tumor Infiltrating Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3274612", "l": "Allogeneic CD19-specific CAR-modified CD8 Plus Central Memory-derived Virus-specific T Cells"}, {"i": "NCIT:C99215", "l": "Allogeneic CD19-specific CAR-modified CD8 Plus Central Memory-derived Virus-specific T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182612", "l": "Epithelial cell of lacrimal canaliculus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340535", "l": "Spiny stellate cell of cerebral cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329214", "l": "Neurogliaform cell of cerebral cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172503", "l": "Mesothelial cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267882", "l": "Lymphocyte negative for CD16 antigen and positive for CD57 antigen"}, {"i": "SNOMEDCT:117559008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736932", "l": "Cells.CD3+CD45+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183360", "l": "Type-4 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002274", "l": "histamine secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545063", "l": "P.B. osteoclast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229611", "l": "Tissue neutrophil"}, {"i": "SNOMEDCT:88397004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0036387", "l": "Schwann Cells"}, {"i": "MESH:D012583", "l": "Schwann Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182912", "l": "Terminal deoxyribonucleotidyl transferase cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709674", "l": "Primitive Mesenchymal Round to Oval Cell"}, {"i": "NCIT:C48916", "l": "Primitive Mesenchymal Round to Oval Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177623", "l": "Platelets | Platelet rich plasma | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1514736", "l": "Reactive Epithelial Cell"}, {"i": "NCIT:C36809", "l": "Reactive Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157335", "l": "CD16-CD57+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545228", "l": "Cells.CD3-CD57+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002082", "l": "type II cell of adrenal medulla"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157528", "l": "CD3-CD57+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3891065", "l": "Mucosal-Associated Invariant T-Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170925", "l": "Leukocytes | Cervix | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12557", "l": "Chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D007760", "l": "Labyrinth Supporting Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1519377", "l": "Neoplastic Small Lymphocyte with Clumped Chromatin"}, {"i": "NCIT:C36999", "l": "Neoplastic Small Lymphocyte with Clumped Chromatin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154477", "l": "Basophils | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168997", "l": "Immunodeficiency markers | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682634", "l": "Leukocyte precursor"}]} +{"type": "biolink:Cell", "ic": "67.359228065374083", "identifiers": [{"i": "CL:0001201", "l": "B cell, CD19-positive"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000704", "l": "endothelial tip cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518176", "l": "Population of all promyelocytes in portion of fluid"}, {"i": "SNOMEDCT:726509004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182708", "l": "Epithelial cell of stratum germinativum of esophagus"}]} +{"type": "biolink:Cell", "ic": "72.270040348674314", "identifiers": [{"i": "CL:0000498", "l": "inhibitory interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005013", "l": "single ciliated epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427567", "l": "Microthrombocyte"}, {"i": "SNOMEDCT:250316002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519907", "l": "Vacuolated Endothelial Cell"}, {"i": "NCIT:C37091", "l": "Vacuolated Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002670", "l": "type 1 otic fibrocyte"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:0002178", "l": "epithelial cell of stomach"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002087", "l": "nongranular leukocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514067", "l": "Neoplastic Plump Epithelial Cell"}, {"i": "NCIT:C36886", "l": "Neoplastic Plump Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "69.52434437680833", "identifiers": [{"i": "CL:0002031", "l": "hematopoietic lineage restricted progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186736", "l": "Leukocytes other | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267846", "l": "Lymphocyte positive for CD5 antigen and negative for CD2 antigen"}, {"i": "SNOMEDCT:117533005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0221282", "l": "Schistocyte"}, {"i": "SNOMEDCT:70310009"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1510717", "l": "Abnormal Cytotrophoblastic Cell"}, {"i": "NCIT:C36801", "l": "Abnormal Cytotrophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000768", "l": "kidney connecting tubule epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517807", "l": "Leukemic Hematopoietic Stem Cell"}, {"i": "NCIT:C41069", "l": "Leukemic Hematopoietic Stem Cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000037", "l": "hematopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709677", "l": "Primitive Stem Cell with Some Degree of Commitment to the Erythroid Lineage"}, {"i": "NCIT:C43220", "l": "Bone Marrow Myeloid Stem Cell with Some Degree of Commitment to the Erythroid Lineage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708910", "l": "Malignant Smooth Muscle Cell with Granular Cytoplasmic Change"}, {"i": "NCIT:C49128", "l": "Malignant Smooth Muscle Cell with Granular Cytoplasmic Change"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514037", "l": "Neoplastic Myeloblast without Azurophilic Granules"}, {"i": "NCIT:C37179", "l": "Neoplastic Myeloblast without Azurophilic Granules"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334654", "l": "Type A cell of stomach"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1440938", "l": "Immature Lymphocyte"}, {"i": "NCIT:C13118", "l": "Immature Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0026473", "l": "Monocytes"}, {"i": "SNOMEDCT:55918008"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002556", "l": "fibroblast of periodontium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181530", "l": "Type I cell of adrenal medulla"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518164", "l": "Population of all spermatozoa with abnormal head in portion of fluid"}, {"i": "SNOMEDCT:725222003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515889", "l": "Mouse Adrenal Subcapsular Cell"}, {"i": "NCIT:C22638", "l": "Mouse Adrenal Subcapsular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000155", "l": "Malpighian tubule stellate cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1516839", "l": "Endocrine-Stromal Cell"}, {"i": "NCIT:C41608", "l": "Endocrine-Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002108", "l": "CD38-negative IgG memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253033", "l": "Epithelial cell of intraprostatic part of ejaculatory duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513872", "l": "Naive Pregerminal Center B-Lymphocyte"}, {"i": "NCIT:C38337", "l": "Naive Pregerminal Center B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000742", "l": "glomerular mesangial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2936608", "l": "Side-Population Cells"}, {"i": "MESH:D058985", "l": "Side-Population Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708916", "l": "Malignant Spindle Endothelial Cell"}, {"i": "NCIT:C53405", "l": "Malignant Spindle Endothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179871", "l": "Myocyte of sinuatrial node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510905", "l": "Blast cell positive for CD16 antigen"}, {"i": "SNOMEDCT:724250006"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002340", "l": "luminal cell of prostate epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253014", "l": "Set of enteroendocrine cells of epithelium of small intestine"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0005014", "l": "auditory epithelial supporting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173472", "l": "Monocytes+Macrophages | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350826", "l": "Rhabdomeric Photoreceptor Cells"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1514058", "l": "Neoplastic Plasma Cell"}, {"i": "NCIT:C37077", "l": "Neoplastic Plasma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000330", "l": "serous cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1515964", "l": "Anaplastic Cell"}, {"i": "NCIT:C36734", "l": "Anaplastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3282340", "l": "Cells, Cultured, Autologous"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516898", "l": "Eosinophil Precursor Cell"}, {"i": "NCIT:C41177", "l": "Eosinophil Precursor Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514108", "l": "Neoplastic T-Lymphoblast"}, {"i": "NCIT:C37071", "l": "Neoplastic T-Lymphoblast"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0002260", "l": "epithelial cell of parathyroid gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000936", "l": "early lymphoid progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709201", "l": "Neoplastic Somatotroph Cell with Abundant Secretory Granules"}, {"i": "NCIT:C45939", "l": "Neoplastic Somatotroph Cell with Abundant Secretory Granules"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000577", "l": "type EC enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C0814999", "l": "thymocyte"}, {"i": "NCIT:C12994", "l": "Thymocyte"}, {"i": "MESH:D060168", "l": "Thymocytes"}, {"i": "SNOMEDCT:39105001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001029", "l": "common dendritic progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641721", "l": "Naive T-Lymphocyte"}, {"i": "NCIT:C104081", "l": "Naive T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174618", "l": "Neutrophils | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1510722", "l": "Abnormal Erythroblast"}, {"i": "NCIT:C37057", "l": "Abnormal Erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229471", "l": "Phalangeal cell of cochlea"}, {"i": "SNOMEDCT:4799000"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001569", "l": "hippocampal interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000678", "l": "commissural neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011113", "l": "spiral ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002015", "l": "Kit-negative, Ly-76 high polychromatophilic erythroblast"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000490", "l": "photopic photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170929", "l": "Leukocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229651", "l": "Promegakaryocytes"}, {"i": "SNOMEDCT:50284009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0221283", "l": "Drepanocyte (cell)"}, {"i": "NCIT:C36717", "l": "Sickle Cell"}, {"i": "SNOMEDCT:49938009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4296892", "l": "Enterochromaffin cell (EC), serotonin-producing"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001580", "l": "hippocampus glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882962", "l": "Round Adenocarcinoma Cell with Abundant Cytoplasm and Vesicular Nucleus"}, {"i": "NCIT:C54689", "l": "Round Adenocarcinoma Cell with Abundant Cytoplasm and Vesicular Nucleus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517640", "l": "KA40 cell line"}, {"i": "NCIT:C20270", "l": "KA40"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000550", "l": "polychromatophilic erythroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002061", "l": "T-helper 9 cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:2000005", "l": "brain macroglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328847", "l": "Set of cholinergic cells of globus pallidus [Ch2]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514659", "l": "RL20"}, {"i": "NCIT:C20293", "l": "RL20"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000069", "l": "branched duct epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518238", "l": "Malignant Perineural Cell"}, {"i": "NCIT:C41434", "l": "Malignant Perineural Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267868", "l": "Lymphocyte positive for CD11C antigen"}, {"i": "SNOMEDCT:116849005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517355", "l": "GE09 Cell Line"}, {"i": "NCIT:C20258", "l": "GE09"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440277", "l": "CD28+ cell"}, {"i": "SNOMEDCT:732270008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163750", "l": "Erythrocytes.fresh/100 erythrocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000287", "l": "myocyte of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511466", "l": "CY51"}, {"i": "NCIT:C20240", "l": "CY51"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229426", "l": "Secondary sclerotic mastoid cell"}, {"i": "SNOMEDCT:57106004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002294", "l": "type-1 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157433", "l": "CD3+CD25+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709208", "l": "Neoplastic Thyroid Gland Follicular Clear Cell"}, {"i": "NCIT:C47832", "l": "Neoplastic Thyroid Gland Follicular Clear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330431", "l": "Goblet cell of epithelium proper of duodenum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002663", "l": "myocardial endocrine cell of atrium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338585", "l": "Set of cholinergic cells of basal nucleus [Ch4]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D041905", "l": "Erythroid Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696657", "l": "Cells.CD3+CD4+CD28+HLA DR+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002348", "l": "CD27-low, CD11b-high natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000023", "l": "spinal cord ventral column interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000732", "l": "amoeboid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182618", "l": "Epithelial cell of lacrimal duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512135", "l": "ES06 (cell line)"}, {"i": "NCIT:C20254", "l": "ES06"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5164690", "l": "FLAER cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518268", "l": "Neoplastic Neuroblast"}, {"i": "NCIT:C37145", "l": "Neoplastic Neuroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0030420", "l": "Paraganglia, Nonchromaffin"}, {"i": "MESH:D010234", "l": "Paraganglia, Nonchromaffin"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4745325", "l": "ECT-001 Expanded Cord Blood"}, {"i": "NCIT:C156693", "l": "ECT-001 Expanded Cord Blood"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002354", "l": "yolk sac hematopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000546", "l": "kidney medulla collecting duct epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157426", "l": "CD3 cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000092", "l": "osteoclast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440229", "l": "Cells.aneuploid.population 1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329620", "l": "Regular interatrial cardiac myocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005021", "l": "mesenchymal lymphangioblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687588", "l": "NY-ESO-1 TCR/sr39TK Lentiviral Vector-transduced Autologous PBSCs"}, {"i": "NCIT:C146940", "l": "NY-ESO-1 TCR/sr39TK Lentiviral Vector-transduced Autologous PBSCs"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350244", "l": "Megakaryocyte-Erythroid Progenitor Cells"}, {"i": "MESH:D055015", "l": "Megakaryocyte-Erythroid Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225332", "l": "Fibrocyte"}, {"i": "NCIT:C120463", "l": "Fibrocyte"}, {"i": "SNOMEDCT:24735009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002662", "l": "luminal cell of lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510783", "l": "Adenocarcinoma Spindle Cell"}, {"i": "NCIT:C37108", "l": "Adenocarcinoma Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000589", "l": "cochlear inner hair cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514085", "l": "Neoplastic Small Cell"}, {"i": "NCIT:C37103", "l": "Neoplastic Small Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D008533", "l": "Megakaryocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267895", "l": "Lymphocyte positive for CD23 antigen"}, {"i": "SNOMEDCT:117568005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000401", "l": "macrophage (sensu Diptera)"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000768", "l": "immature basophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001028", "l": "CD7-positive lymphoid progenitor cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1708878", "l": "Malignant Germ Cell"}, {"i": "NCIT:C54110", "l": "Malignant Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228090", "l": "Fibrillary astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D019556", "l": "COS Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440052", "l": "Abnormal blood cells.CD2"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1518369", "l": "Non-Keratinizing Malignant Squamous Cell"}, {"i": "NCIT:C36792", "l": "Non-Keratinizing Malignant Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0369668", "l": "Microcytic erythrocyte (cell)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598089", "l": "established cell line"}]} +{"type": "biolink:Cell", "ic": "77.349316285872916", "identifiers": [{"i": "CL:0002369", "l": "fungal spore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329382", "l": "Brush cell of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170923", "l": "Leukocytes | Buffy Coat | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267986", "l": "Lymphocyte positive for CD99 antigen"}, {"i": "SNOMEDCT:117426008"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002101", "l": "CD38-positive naive B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4042879", "l": "Mouse Embryonic Stem Cells"}, {"i": "MESH:D000066450", "l": "Mouse Embryonic Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170957", "l": "Leukocytes other | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1510719", "l": "Abnormal Endothelial Cell"}, {"i": "NCIT:C37086", "l": "Abnormal Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711299", "l": "Malignant Epithelioid Endothelial Cell"}, {"i": "NCIT:C53404", "l": "Malignant Epithelioid Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517098", "l": "FSH Cells"}, {"i": "NCIT:C32641", "l": "FSH Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001126", "l": "inner renal medulla vasa recta cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002513", "l": "Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180273", "l": "Myoepithelial cell of terminal lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522105", "l": "Mouse Pre-B-Lymphocyte"}, {"i": "NCIT:C22574", "l": "Mouse Pre-B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009055", "l": "paneth cell of anorectum"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513941", "l": "Neoplastic Clear Cell Oncocyte"}, {"i": "NCIT:C36939", "l": "Neoplastic Clear Cell Oncocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338356", "l": "Basal cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175146", "l": "Nucleated cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157359", "l": "CD19+IgM+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514057", "l": "Neoplastic Perineurial Cell"}, {"i": "NCIT:C37154", "l": "Neoplastic Perineurial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335177", "l": "Mesothelial cell of visceral pleura"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709541", "l": "Piloid Astrocyte"}, {"i": "NCIT:C45857", "l": "Piloid Astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518175", "l": "Population of all immature granulocytes in portion of fluid"}, {"i": "SNOMEDCT:726595000"}]} +{"type": "biolink:Cell", "ic": "53.896348951510667", "identifiers": [{"i": "CL:0002242", "l": "nucleate cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1513977", "l": "Neoplastic Glandular Cell with Eosinophilic Granular Cytoplasm"}, {"i": "NCIT:C36881", "l": "Neoplastic Glandular Cell with Eosinophilic Granular Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440342", "l": "Cells.CD64"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4525936", "l": "Neural Stem Cells-expressing CRAd-S-pk7"}, {"i": "NCIT:C135612", "l": "Neural Stem Cells-expressing CRAd-S-pk7"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008005", "l": "obliquely striated somatic muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640216", "l": "TIL 1383I T Cell Receptor-Transduced Autologous T Cells"}, {"i": "NCIT:C101787", "l": "TIL 1383I T Cell Receptor-Transduced Autologous T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733629", "l": "Autologous Cervical Cancer-specific Engineered Immune Effector Cells"}, {"i": "NCIT:C155657", "l": "Autologous Cervical Cancer-specific Engineered Immune Effector Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002006", "l": "Kit-positive, CD34-negative megakaryocyte erythroid progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513926", "l": "Neoplastic Astrocyte with Few Flaccid Processes"}, {"i": "NCIT:C37135", "l": "Neoplastic Astrocyte with Few Flaccid Processes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496271", "l": "B9 serotonin cells"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514435", "l": "Primitive Mesenchymal Cell"}, {"i": "NCIT:C36907", "l": "Primitive Mesenchymal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0027836", "l": "Neuroglia"}, {"i": "MESH:D009457", "l": "Neuroglia"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001611", "l": "cerebellar neuron"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1708370", "l": "Histiocytic and Dendritic Cell"}, {"i": "NCIT:C43251", "l": "Histiocytic and Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697025", "l": "Cells.CD27+IgD-IgM-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510955", "l": "Malignant Glomus Cell"}, {"i": "NCIT:C36966", "l": "Malignant Glomus Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4288532", "l": "PDCD-1 Knockout Autologous T-lymphocytes"}, {"i": "NCIT:C128281", "l": "PDCD-1 Knockout Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4706671", "l": "Genetically modified T-cell"}, {"i": "SNOMEDCT:764084004"}, {"i": "SNOMEDCT:764087006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710398", "l": "Thymic Epithelial Cell Capable of Differentiating Towards Cortical Cell Type"}, {"i": "NCIT:C45705", "l": "Thymic Epithelial Cell Capable of Differentiating Towards Cortical Cell Type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764271", "l": "Autologous Anti-MUC16 CAR-mbIL15-HER1t T-cells PRGN-3005"}, {"i": "NCIT:C158533", "l": "Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183167", "l": "Set of aminergic cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518068", "l": "Popcorn Cell"}, {"i": "NCIT:C37027", "l": "Popcorn Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D034101", "l": "Sporozoites"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514161", "l": "Mouse Platelet"}, {"i": "NCIT:C22568", "l": "Mouse Platelet"}]} +{"type": "biolink:Cell", "ic": "65.758228954553815", "identifiers": [{"i": "CL:0000945", "l": "lymphocyte of B lineage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495384", "l": "A16 dopamine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5142688", "l": "Plasma cells.abnormal marker pattern"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1689938", "l": "Erythrocyte component of blood"}, {"i": "SNOMEDCT:418525009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337177", "l": "Mesothelial cell of parietal pleura"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225466", "l": "Structure of anterior cells of ethmoid sinus"}, {"i": "SNOMEDCT:26357003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000830", "l": "basophilic promyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175648", "l": "Ovalocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002272", "l": "motilin secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157399", "l": "CD227 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000177", "l": "testosterone secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184138", "l": "Myoepithelial cell of primary lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177471", "l": "Plasma cells/100 leukocytes | Bronchial | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182622", "l": "Definitive germ cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515967", "l": "Anaplastic Large T-Lymphocyte"}, {"i": "NCIT:C37017", "l": "Anaplastic Large T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518224", "l": "Malignant Neuroendocrine Spindle Cell"}, {"i": "NCIT:C36854", "l": "Malignant Neuroendocrine Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171867", "l": "Macrophages | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000803", "l": "CD4-negative CD8-negative gamma-delta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011009", "l": "embryonic plasmatocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1882060", "l": "Neoplastic Small Epithelial Cell with Scant Amount of Cytoplasm"}, {"i": "NCIT:C61296", "l": "Neoplastic Small Epithelial Cell with Scant Amount of Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0369738", "l": "Neutrophils.band form"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C32390", "l": "Corticotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267844", "l": "Lymphoblast positive for CD5 antigen"}, {"i": "SNOMEDCT:117531007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002310", "l": "mammosomatotroph"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163439", "l": "Eosinophils | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0008024", "l": "pancreatic endocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333863", "l": "Dysplastic platelet"}, {"i": "SNOMEDCT:25624002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495989", "l": "A3 catecholamine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682700", "l": "Peripheral neuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000295", "l": "somatotropin secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001108", "l": "kidney loop of Henle medullary thick ascending limb epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764285", "l": "Autologous Cytoplasmic Activated PD-1 CAR T-cells"}, {"i": "NCIT:C158599", "l": "Autologous Cytoplasmic Activated PD-1 CAR T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157262", "l": "CD117 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000123", "l": "neuron associated cell (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157265", "l": "CD11a blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000298", "l": "mesothelial cell of dura mater"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0682610", "l": "Enterocytes"}, {"i": "NCIT:C12585", "l": "Enterocyte"}, {"i": "MESH:D020895", "l": "Enterocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706983", "l": "Bone Marrow Stem Cell with Some Commitment to Monocytic Differentiation"}, {"i": "NCIT:C42780", "l": "Bone Marrow Stem Cell with Some Commitment to Monocytic Differentiation"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000128", "l": "oligodendrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000523", "l": "mononuclear cytotrophoblast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1831990", "l": "Anti-p53 T-Cell Receptor-Transduced Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514221", "l": "Poorly Differentiated Adenocarcinoma Cell"}, {"i": "NCIT:C36798", "l": "Poorly Differentiated Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171661", "l": "Lymphocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001142", "l": "arcuate vein cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009067", "l": "vacuolated fetal-type enterocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520026", "l": "Visceral Afferent Neuron"}, {"i": "NCIT:C33877", "l": "Visceral Afferent Neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986402", "l": "Anti-CTLA4 MoAb RNA-transfected Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C94217", "l": "Anti-CTLA4 MoAb RNA-transfected Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522212", "l": "Endocrine Pancreas - Islet of Langerhans - Alpha Cell (MMHCC)"}, {"i": "NCIT:C22641", "l": "Mouse Alpha Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086612", "l": "Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107"}, {"i": "NCIT:C124054", "l": "Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5148515", "l": "Plasma cells.abnormal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3830334", "l": "EFS-ADA Lentiviral Vector-transduced CD34-positive Autologous Lymphocytes"}, {"i": "NCIT:C113438", "l": "EFS-ADA Lentiviral Vector-transduced CD34-positive Autologous Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000058", "l": "chondroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0933804", "l": "Type B synoviocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514090", "l": "Neoplastic Small Mature Neuroepithelial Cell"}, {"i": "NCIT:C41837", "l": "Neoplastic Small Mature Neuroepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0043544", "l": "Structure of zygote"}, {"i": "NCIT:C12601", "l": "Zygote"}, {"i": "MESH:D015053", "l": "Zygote"}, {"i": "SNOMEDCT:57323001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899843", "l": "C46/CCR5/P140K Lentiviral Vector-transduced Autologous HSPCs"}, {"i": "NCIT:C119735", "l": "C46/CCR5/P140K Lentiviral Vector-transduced Autologous HSPCs"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002122", "l": "B220-positive CD38-positive IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000987", "l": "IgA plasma cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0000752", "l": "cone retinal bipolar cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002308", "l": "epithelial cell of skin gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000196", "l": "flight muscle cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1514030", "l": "Neoplastic Multinucleated Giant Cell"}, {"i": "NCIT:C36819", "l": "Neoplastic Multinucleated Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182611", "l": "Conjunctival epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000311", "l": "adipocyte of epicardial fat of left ventricle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267883", "l": "Lymphocyte positive for CD17 antigen"}, {"i": "SNOMEDCT:117560003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010000", "l": "keratinized cell of hair follicle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023031", "l": "L4 sst GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "61.360270191050041", "identifiers": [{"i": "UMLS:C1510725", "l": "Abnormal Hematopoietic and Lymphoid Cell"}, {"i": "NCIT:C36987", "l": "Abnormal Hematopoietic and Lymphoid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524459", "l": "Autologous EGFRt/19-28z/4-1BBL CAR T-Lymphocytes"}, {"i": "NCIT:C133189", "l": "Autologous EGFRt/19-28z/4-1BBL CAR T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000141", "l": "cementocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440262", "l": "Cells.CD16-CD57+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009050", "l": "B cell of anorectum"}]} +{"type": "biolink:Cell", "ic": "60.024245862843117", "identifiers": [{"i": "CL:0000763", "l": "myeloid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323448", "l": "Endocrine-paracrine cell of prostatic gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184137", "l": "Myoepithelial cell of main lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1954324", "l": "Leukocytes+Platelets"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1954880", "l": "Erythrocyte inclusion bodies"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163730", "l": "Erythrocytes | Vaginal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514099", "l": "Neoplastic Spindle-Shaped to Round Cell"}, {"i": "NCIT:C37123", "l": "Neoplastic Spindle-Shaped to Round Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175606", "l": "Other cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3829574", "l": "iC9-GD2-CD28-OX40-expressing T Lymphocytes"}, {"i": "NCIT:C106123", "l": "iC9-GD2-CD28-OX40-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000726", "l": "chlamydospore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725102", "l": "Autologous CD123-4SCAR-expressing T-cells 4SCAR123"}, {"i": "NCIT:C148526", "l": "Autologous CD123-4SCAR-expressing T-cells 4SCAR123"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514177", "l": "Pleomorphic Plasma Cell"}, {"i": "NCIT:C37083", "l": "Pleomorphic Plasma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519720", "l": "Type I Epithelial Receptor Cell"}, {"i": "NCIT:C33824", "l": "Type I Epithelial Receptor Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709170", "l": "Neoplastic Elongated Mononuclear Stromal Cell"}, {"i": "NCIT:C49054", "l": "Neoplastic Elongated Mononuclear Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181334", "l": "Spermatozoa | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333851", "l": "Sezary cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011106", "l": "GABAnergic interplexiform cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1519550", "l": "Dental pulp cell"}, {"i": "NCIT:C33793", "l": "Tooth Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267982", "l": "Lymphocyte positive for CD95 antigen"}, {"i": "SNOMEDCT:117422005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3273204", "l": "MAGE-A3 Reactive T Cell Receptor-transduced Autologous T Cells"}, {"i": "NCIT:C97035", "l": "MAGE-A3 Reactive T Cell Receptor-transduced Autologous T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496529", "l": "A14 dopamine cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002200", "l": "oxyphil cell of thyroid"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0001074", "l": "CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000032", "l": "neuroplacodal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641631", "l": "FAP-specific CD8-positive T Cells"}, {"i": "NCIT:C103829", "l": "FAP-specific CD8-positive T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831071", "l": "cMet CAR-mRNA Electroporated Autologous T Lymphocytes"}, {"i": "NCIT:C106230", "l": "cMet CAR-mRNA Electroporated Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1284809", "l": "Entire supporting cell of organ of Corti"}, {"i": "SNOMEDCT:362573009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513487", "l": "Monovacuolated Lipoblast"}, {"i": "NCIT:C36972", "l": "Monovacuolated Lipoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725930", "l": "Autologous Ovarian Cancer Immunogene-modified T Lymphocytes"}, {"i": "NCIT:C150696", "l": "Autologous Ovarian Cancer Immunogene-modified T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3656575", "l": "Cells.CD158e"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000573", "l": "retinal cone cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1881589", "l": "Malignant Round Germ Cell"}, {"i": "NCIT:C61387", "l": "Malignant Round Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684115", "l": "macroblast of Naegeli"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5187200", "l": "RBC^Fetus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002596", "l": "smooth muscle cell of the carotid artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002585", "l": "retinal blood vessel endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733097", "l": "PG13-CD19-H3 (anti-CD19 CAR) retroviral vector-transduced peripheral blood lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709162", "l": "Mycobacterium tuberculosis A60"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709192", "l": "Neoplastic Parathyroid Gland Water-Clear Cell"}, {"i": "NCIT:C48625", "l": "Neoplastic Parathyroid Gland Water-Clear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179517", "l": "Reticulocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277646", "l": "Place Cells"}, {"i": "MESH:D000071037", "l": "Place Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350248", "l": "Hemangioblasts"}, {"i": "MESH:D055018", "l": "Hemangioblasts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002428", "l": "double-positive blast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019017", "l": "lymphatic vessel smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518174", "l": "Population of all hyperchromic erythrocytes in portion of fluid"}, {"i": "SNOMEDCT:725442005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005015", "l": "inner phalangeal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009065", "l": "tuft cell of anorectum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3830333", "l": "EGFR CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes"}, {"i": "NCIT:C107191", "l": "EGFR CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182629", "l": "Ecto-epithelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0206116", "l": "Microglia"}, {"i": "NCIT:C12616", "l": "Microglia"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267899", "l": "Lymphocyte positive for CD26 antigen"}, {"i": "SNOMEDCT:117570001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184141", "l": "Myoepithelial cell of quarternary lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3273372", "l": "CD4 Positive Naive T-Lymphocyte"}, {"i": "NCIT:C97350", "l": "CD4 Positive Naive T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1657751", "l": "Cells.CD4+CD7+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300320", "l": "100 viable tumor cells"}]} +{"type": "biolink:Cell", "ic": "75.324974028080362", "identifiers": [{"i": "CL:0000521", "l": "fungal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002085", "l": "tanycyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956421", "l": "Neoplastic Stem Cells"}, {"i": "MESH:D014411", "l": "Neoplastic Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599856", "l": "Muscle satellite cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000389", "l": "socket cell (sensu Nematoda)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882409", "l": "Pluripotent Bronchial Precursor Cell"}, {"i": "NCIT:C55819", "l": "Pluripotent Bronchial Precursor Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183328", "l": "Cell body of bipolar cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157353", "l": "CD19+CD27+IgD+IgM+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5151348", "l": "Abnormal lymphocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002190", "l": "squamous cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0444088", "l": "Tissue cell sample"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000929", "l": "CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327682", "l": "Chandelier cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726562", "l": "Anti-CD19/CD20/CD22/CD30 CAR-T Cells"}, {"i": "NCIT:C151935", "l": "Anti-CD19/CD20/CD22/CD30 CAR-T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179873", "l": "Myocyte of atrioventricular node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267865", "l": "Lymphocyte positive for both CD11 antigen and CD20 antigen"}, {"i": "SNOMEDCT:117546000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000925", "l": "activated CD4-positive type I NK T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229587", "l": "Structure of parathyroid transitional cell"}, {"i": "SNOMEDCT:15824004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510956", "l": "Atypical Histiocyte"}, {"i": "NCIT:C40999", "l": "Atypical Histiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12620", "l": "Schwann Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0010021", "l": "cardiac myoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956120", "l": "Dermal Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733591", "l": "autologous anti-CD20 CAR-T cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002238", "l": "male gonocyte"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0000605", "l": "fungal asexual spore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267964", "l": "Lymphocyte positive for CD69 antigen"}, {"i": "SNOMEDCT:117405008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333838", "l": "Gaucher-like cell"}, {"i": "SNOMEDCT:59870003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513928", "l": "Neoplastic B-Lymphoblast"}, {"i": "NCIT:C37070", "l": "Neoplastic B-Lymphoblast"}]} +{"type": "biolink:Cell", "ic": "56.529419610672292", "identifiers": [{"i": "UMLS:C1711172", "l": "therapeutic autologous lymphocytes"}, {"i": "NCIT:C28681", "l": "Therapeutic Autologous Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322559", "l": "Set of antigen-presenting cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002279", "l": "type L enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001096", "l": "kidney afferent arteriole endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002296", "l": "type-4 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002395", "l": "Gr1-high classical monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000705", "l": "R6 photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179892", "l": "Transitional myocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515962", "l": "Anaplastic Astrocyte"}, {"i": "NCIT:C37136", "l": "Anaplastic Astrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000517", "l": "macrophage derived foam cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514040", "l": "Neoplastic Myoepithelial Cell"}, {"i": "NCIT:C36770", "l": "Neoplastic Myoepithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332398", "l": "Stromal cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333847", "l": "Mott plasma cell"}, {"i": "SNOMEDCT:83718009"}]} +{"type": "biolink:Cell", "ic": "65.48928698272745", "identifiers": [{"i": "UMLS:C1513973", "l": "Neoplastic Glandular Cell"}, {"i": "NCIT:C36763", "l": "Neoplastic Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002630", "l": "actinomycete-type spore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C26454", "l": "Dopaminergic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496269", "l": "B6 serotonin cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182709", "l": "Epithelial cell of stratum spinosum of esophagus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002460", "l": "CD8alpha-negative thymic conventional dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000807", "l": "DN3 thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3494452", "l": "Central Pattern Generator Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D016676", "l": "Macrophages, Alveolar"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000716", "l": "lymph gland crystal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709635", "l": "Precursor Adenohypophysial Cell"}, {"i": "NCIT:C45957", "l": "Precursor Adenohypophysial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440356", "l": "Cells.CD79b"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1522667", "l": "Leukocyte - Monocyte (MMHCC)"}, {"i": "NCIT:C22586", "l": "Mouse Monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314583", "l": "Colony-forming unit of basophilic lineage"}, {"i": "SNOMEDCT:445114000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023025", "l": "long-range projecting sst GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514107", "l": "Neoplastic T-Immunoblast"}, {"i": "NCIT:C37012", "l": "Neoplastic T-Immunoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229659", "l": "Myelomonocyte"}, {"i": "NCIT:C37041", "l": "Neoplastic Monocyte"}, {"i": "SNOMEDCT:41621006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157338", "l": "CD179a blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513980", "l": "Neoplastic Gonadotroph Cell"}, {"i": "NCIT:C36921", "l": "Neoplastic Gonadotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157484", "l": "CD33 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328733", "l": "Pseudo-unipolar neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706982", "l": "Bone Marrow Stem Cell with Potential to Differentiate to Granulocytic and Monocytic Lineages"}, {"i": "NCIT:C42766", "l": "Granulocyte-Monocyte Progenitor Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510964", "l": "Atypical Spindle Melanocyte"}, {"i": "NCIT:C36868", "l": "Atypical Spindle Melanocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000349", "l": "basal cell of epithelium of bronchus"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0001019", "l": "CD115-positive monocyte OR common dendritic progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000090", "l": "pronephric nephron tubule epithelial cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000909", "l": "CD8-positive, alpha-beta memory T cell"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0002328", "l": "bronchial epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002025", "l": "CD34-positive, CD41-positive, CD42-negative megakaryocyte progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173063", "l": "Micromegakaryocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170927", "l": "Leukocytes | Dialysis fluid peritoneal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511446", "l": "Mouse Oligodendroglial Cell"}, {"i": "NCIT:C22620", "l": "Mouse Oligodendroglial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323550", "l": "Primary motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12747", "l": "Mast Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000439", "l": "prolactin secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267821", "l": "T lymphocyte positive for both CD3 antigen and CD4 antigen"}, {"i": "SNOMEDCT:115396002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000043", "l": "brain pericyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339342", "l": "Set of A14 dopaminergic cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322825", "l": "CD8+CD57+ T Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000816", "l": "immature B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086009", "l": "Autologous T-lymphocytes-expressing NY-ESO-1-C259-specific Enhanced T-cell Receptors"}, {"i": "NCIT:C124655", "l": "Autologous T-lymphocytes-expressing NY-ESO-1-C259-specific Enhanced T-cell Receptors"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002503", "l": "adventitial cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1709189", "l": "Neoplastic Parathyroid Gland Cell"}, {"i": "NCIT:C48265", "l": "Neoplastic Parathyroid Gland Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002258", "l": "thyroid follicular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4704952", "l": "Bone Marrow Mesenchymal Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519741", "l": "UC06"}, {"i": "NCIT:C20306", "l": "UC06"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000464", "l": "epidermoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3898190", "l": "NY-ESO-1-specific CD4-positive T Lymphocytes"}, {"i": "NCIT:C117724", "l": "NY-ESO-1-specific CD4-positive T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "UMLS:C1522078", "l": "Abnormal Granulocyte"}, {"i": "NCIT:C37050", "l": "Abnormal Granulocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522254", "l": "Ovary - Theca Cell (MMHCC)"}, {"i": "NCIT:C22666", "l": "Mouse Theca Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326946", "l": "Goblet cell of epithelium of duodenal gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000469", "l": "ganglion mother cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000978", "l": "IgM short lived plasma cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023045", "l": "medulla-projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0369602", "l": "Leukocytes other"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1879716", "l": "Apocrine Carcinoma Cell with Eosinophilic Granular Cytoplasm"}, {"i": "NCIT:C62206", "l": "Apocrine Carcinoma Cell with Eosinophilic Granular Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0030281", "l": "Structure of beta Cell of islet"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181479", "l": "Spherocytes | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157411", "l": "CD25 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267924", "l": "Lymphocyte positive for CD42D antigen"}, {"i": "SNOMEDCT:117368009"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000422", "l": "mitogenic signaling cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163723", "l": "Erythrocytes | Prostatic fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1636199", "l": "Adipose derived adult stem cell"}, {"i": "SNOMEDCT:419288001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000066", "l": "cardiac ventricle fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640296", "l": "Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo"}, {"i": "NCIT:C101892", "l": "Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726587", "l": "Donor-derived CD34+ Hematopoietic Stem and Progenitor Cells Plus CD3+ T-cells MDR-101"}, {"i": "NCIT:C151968", "l": "Sizavaleucel"}]} +{"type": "biolink:Cell", "ic": "65.22986710590574", "identifiers": [{"i": "CL:0000034", "l": "stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000088", "l": "Ammon's horn basket cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163682", "l": "Erythrocyte clumps | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0301864", "l": "Target cell of immunologic reaction"}, {"i": "SNOMEDCT:56709009"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0008018", "l": "somatic muscle myoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708861", "l": "Malignant Adrenal Cortical Cell"}, {"i": "NCIT:C48363", "l": "Malignant Adrenal Cortical Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000500", "l": "follicular epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3484293", "l": "Basophils+Mast cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000702", "l": "R5 photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4316898", "l": "Segmented basophil"}, {"i": "SNOMEDCT:30061004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000745", "l": "retina horizontal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512130", "l": "ES01 (cell line)"}, {"i": "NCIT:C20249", "l": "ES01"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:1001610", "l": "bone marrow hematopoietic cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513370", "l": "MizMedi ES Cell Line"}, {"i": "NCIT:C20278", "l": "MizMedi ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181286", "l": "Intermediate epitheliocyte"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:1000494", "l": "nephron tubule epithelial cell"}]} +{"type": "biolink:Cell", "ic": "54.638320739875638", "identifiers": [{"i": "CL:0000211", "l": "electrically active cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12577", "l": "G-Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D017948", "l": "Retinal Rod Photoreceptor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179532", "l": "Reticulocytes.medium fluorescence/100 erythrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001436", "l": "hair-tylotrich neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329740", "l": "Set of lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440146", "l": "Blasts.CD33"}]} +{"type": "biolink:Cell", "ic": "67.190764411475698", "identifiers": [{"i": "CL:0000234", "l": "phagocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023093", "l": "stellate pyramidal neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3829191", "l": "MART-1/gp100/Tyrosinase/MAGE-A3 Peptides-loaded Irradiated Allogeneic Plasmacytoid Dendritic Cells"}, {"i": "NCIT:C107159", "l": "MART-1/gp100/Tyrosinase/MAGE-A3 Peptides-loaded Irradiated Allogeneic Plasmacytoid Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3826624", "l": "Cancer cells--Motility"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000794", "l": "CD8-positive, alpha-beta cytotoxic T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545062", "l": "P.B. osteoblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001008", "l": "Kit and Sca1-positive hematopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000006", "l": "tonsil germinal center B cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002387", "l": "arthroconidium"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0010003", "l": "epithelial cell of alveolus of lung"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339058", "l": "Myocyte of atrial branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900006", "l": "Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing T Lymphocytes"}, {"i": "NCIT:C116914", "l": "Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173500", "l": "Mononuclear cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000924", "l": "CD4-negative, CD8-negative type I NK T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0026609", "l": "Motor Neurons"}, {"i": "SNOMEDCT:31513005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009049", "l": "smooth muscle cell of high endothelial venule of lymph node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023109", "l": "vasopressin-secreting magnocellular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2698146", "l": "Anti-Her-2-CAR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes"}, {"i": "NCIT:C79834", "l": "Anti-Her-2-CAR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167388", "l": "Histiocytes | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3828361", "l": "Recent Thymic Emigrant"}, {"i": "NCIT:C112039", "l": "Recent Thymic Emigrant"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709095", "l": "Multipotent Bone Marrow Stem Cell with Wide Myeloid Potential"}, {"i": "NCIT:C43219", "l": "Multipotent Bone Marrow Stem Cell with Wide Myeloid Potential"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181740", "l": "Type III cell of adrenal cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157386", "l": "CD20+FMC7+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002226", "l": "non-nucleated secondary lens fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514097", "l": "Neoplastic Small to Medium-Sized T-Lymphocyte with Irregular Nucleus"}, {"i": "NCIT:C39681", "l": "Neoplastic Small to Medium-Sized T-Lymphocyte with Irregular Nucleus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180238", "l": "Capillary Endothelial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831561", "l": "Allogeneic HLA-A2/4-1BB ligand-expressing Melanoma Vaccine"}, {"i": "NCIT:C107169", "l": "Allogeneic HLA-A2/4-1BB ligand-expressing Melanoma Vaccine"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002208", "l": "brush cell of bronchus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953996", "l": "Endothelial cell of endocardium of left ventricle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3825563", "l": "Ultrastructure (Biology)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440314", "l": "Cells.CD45+CD14+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C3273605", "l": "Disseminated Tumor Cell"}, {"i": "NCIT:C97750", "l": "Disseminated Tumor Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002445", "l": "Ly49D-negative natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157251", "l": "CD11+CD18+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000727", "l": "primary pigment cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000367", "l": "sheath cell (sensu Nematoda)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002488", "l": "trophoblast giant cell"}]} +{"type": "biolink:Cell", "ic": "71.786710504642102", "identifiers": [{"i": "CL:0000071", "l": "blood vessel endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709137", "l": "Frozen packed erythrocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176905", "l": "Cells.cytoplasmic CD22"}]} +{"type": "biolink:Cell", "ic": "64.27530379215159", "identifiers": [{"i": "NCIT:C12578", "l": "Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002140", "l": "acinar cell of sebaceous gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000781", "l": "mononuclear odontoclast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008021", "l": "anterior lateral line ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229216", "l": "Amacrine Cells"}]} +{"type": "biolink:Cell", "ic": "70.120432712247734", "identifiers": [{"i": "CL:1000449", "l": "epithelial cell of nephron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002389", "l": "uninucleate arthroconidium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514658", "l": "RL15"}, {"i": "NCIT:C20292", "l": "RL15"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183897", "l": "Epithelial cell of prostatic acinus"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000736", "l": "embryonic gland hemocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312866", "l": "Sensitized leukocyte"}, {"i": "SNOMEDCT:64668006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267874", "l": "Lymphocyte positive for CD15 antigen"}, {"i": "SNOMEDCT:117553009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229535", "l": "Pituitary cell"}, {"i": "SNOMEDCT:82406005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3869774", "l": "Siderocytes.HPF"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979671", "l": "Cells.CD3-CD16+CD56+CD244+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228078", "l": "Partly differentiated neural cell"}, {"i": "SNOMEDCT:71609000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173434", "l": "Monocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000996", "l": "mature CD11c-negative plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002477", "l": "adipose macrophage"}]} +{"type": "biolink:Cell", "ic": "54.504407133260116", "identifiers": [{"i": "UMLS:C0007634", "l": "Cells"}, {"i": "NCIT:C12508", "l": "Cell"}, {"i": "MESH:D002477", "l": "Cells"}, {"i": "SNOMEDCT:4421005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334698", "l": "Transitional myocyte of internodal tract"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513975", "l": "Neoplastic Glandular Cell with Enlarged Nucleus"}, {"i": "NCIT:C37122", "l": "Neoplastic Glandular Cell with Enlarged Nucleus"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C3161470", "l": "Cartilage Cell"}, {"i": "NCIT:C48695", "l": "Cartilage Cell"}, {"i": "SNOMEDCT:86024004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179787", "l": "Vacuolar absorptive cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154488", "l": "Basophils/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000618", "l": "sheath cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1709175", "l": "Neoplastic Fibroblast"}, {"i": "NCIT:C48682", "l": "Neoplastic Fibroblast"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:1000892", "l": "kidney capillary endothelial cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000836", "l": "promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515153", "l": "TE72"}, {"i": "NCIT:C20303", "l": "TE72"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184810", "l": "Endocardial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177460", "l": "Plasma cells with abnormal marker pattern | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157460", "l": "CD3+CD8+CD27-CD45RO+CD62L- cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0242277", "l": "Proerythroblasts"}, {"i": "NCIT:C13129", "l": "Proerythroblast"}, {"i": "SNOMEDCT:16671004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519599", "l": "Transformed Neoplastic Lymphocyte"}, {"i": "NCIT:C40562", "l": "Transformed Neoplastic Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002282", "l": "type TG enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328196", "l": "Sympathetic preganglionic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440236", "l": "Cell positive for CD104 antigen"}, {"i": "SNOMEDCT:725329009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955382", "l": "Spermatozoa.immature"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225336", "l": "Endothelial Cells"}, {"i": "NCIT:C12865", "l": "Endothelial Cell"}, {"i": "MESH:D042783", "l": "Endothelial Cells"}, {"i": "SNOMEDCT:45709008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001005", "l": "glomerular capillary endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333825", "l": "Lymphoplasmacytoid Cell"}, {"i": "NCIT:C37000", "l": "Lymphoplasmacytoid Cell"}, {"i": "SNOMEDCT:59509005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440322", "l": "Cells.CD49b"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055458", "l": "Anti-HLA-A2/NY-ESO-1 TCR-transduced Autologous T Lymphocytes"}, {"i": "NCIT:C122679", "l": "Anti-HLA-A2/NY-ESO-1 TCR-transduced Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C3496194", "l": "Epidermal cells"}, {"i": "NCIT:C32271", "l": "Cell of the Epidermis"}, {"i": "MESH:D000078404", "l": "Epidermal Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4528709", "l": "Autologous Genetically-modified MAGE-A4 C1032 T Cells"}, {"i": "NCIT:C138107", "l": "Autologous Genetically-modified MAGE-A4 C1032 T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3890599", "l": "Circulating Melanoma Cell"}, {"i": "NCIT:C118497", "l": "Circulating Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3272995", "l": "Lymphoma TAA-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C96736", "l": "Lymphoma TAA-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229657", "l": "Plasmablast (cell)"}, {"i": "NCIT:C37082", "l": "Plasmablast"}, {"i": "SNOMEDCT:2579009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323184", "l": "Purkinje myocyte of internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300404", "l": "Cells.chromosome region 17p13.1 deletion"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510960", "l": "Atypical Metaplastic Apocrine Cell"}, {"i": "NCIT:C36909", "l": "Atypical Metaplastic Apocrine Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "NCIT:C13155", "l": "Ganglion Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229640", "l": "Segmented neutrophil"}, {"i": "NCIT:C36719", "l": "Segmented Neutrophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740190", "l": "100 Cells.235a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001024", "l": "CD34-positive, CD38-negative hematopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000532", "l": "CAP motoneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440285", "l": "Cells.CD3+CD69+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899624", "l": "Circulating Adipose Stromal Cell"}, {"i": "NCIT:C116009", "l": "Circulating Adipose Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177461", "l": "Plasma cells.abnormal marker pattern/Cells counted | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007008", "l": "notochordal vacuole cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228086", "l": "Glioblast"}, {"i": "SNOMEDCT:15837001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019021", "l": "endothelial cell of periportal hepatic sinusoid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267965", "l": "Lymphocyte positive for CD71 antigen"}, {"i": "SNOMEDCT:116846003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289582", "l": "EpCAM-specific CAR-expressing Autologous T-lymphocytes"}, {"i": "NCIT:C126801", "l": "EpCAM-specific CAR-expressing Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161799", "l": "Cytoplasmic CD22 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518244", "l": "Malignant Spindle Squamous Cell"}, {"i": "NCIT:C36775", "l": "Malignant Spindle Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002367", "l": "trabecular meshwork cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0008019", "l": "mesenchymal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267807", "l": "SMIg lambda+ lymphocyte"}, {"i": "SNOMEDCT:117511008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180269", "l": "Myoepithelial cell of lactiferous gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000555", "l": "neuronal brush cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002639", "l": "amniotic stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5148822", "l": "Reticulocytes.high fluorescence"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0883208", "l": "Lymphoma cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009007", "l": "gastrointestinal tract (lamina propria) macrophage of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2987368", "l": "Autologous CD8 Positive PBL Sensitized to Drosophila Cell-Presented Melanoma Peptides"}, {"i": "NCIT:C95715", "l": "Autologous CD8 Positive PBL Sensitized to Drosophila Cell-Presented Melanoma Peptides"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002261", "l": "endothelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267900", "l": "Lymphocyte positive for CD27 antigen"}, {"i": "SNOMEDCT:117571002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000350", "l": "amnioserosal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000870", "l": "Anterior Horn Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953656", "l": "Set of glioblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D039902", "l": "Multipotent Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3639094", "l": "Adenovirus/Cytomegalovirus/Epstein-Barr Virus-specific Allogeneic Cytotoxic T Lymphocytes"}, {"i": "NCIT:C100102", "l": "Adenovirus/Cytomegalovirus/Epstein-Barr Virus-specific Allogeneic Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882920", "l": "Cell positive for CD7 antigen"}, {"i": "SNOMEDCT:116747004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0432608", "l": "Ringed sideroblast"}, {"i": "NCIT:C37058", "l": "Ring Sideroblast"}, {"i": "SNOMEDCT:259679003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155166", "l": "Blasts | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1180392", "l": "Brush cell"}, {"i": "NCIT:C32236", "l": "Brush Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267949", "l": "Lymphocyte positive for CD57 antigen"}, {"i": "SNOMEDCT:116855000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4288077", "l": "Umbilical Cord Blood-derived Hematopoietic CD34-positive Progenitor Cells"}, {"i": "NCIT:C127119", "l": "Omidubicel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733622", "l": "Plasmodium vivax-infected Red Blood Cell"}, {"i": "NCIT:C155655", "l": "Plasmodium vivax-infected Red Blood Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2340138", "l": "Hepatic Stellate Cells"}, {"i": "NCIT:C32734", "l": "Hepatic Stellate Cell"}, {"i": "MESH:D055166", "l": "Hepatic Stellate Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1519468", "l": "Neoplastic Spindle-Shaped Smooth Muscle Cell"}, {"i": "NCIT:C36945", "l": "Neoplastic Spindle-Shaped Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000470", "l": "digestive enzyme secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0879438", "l": "Allogeneic Lymphocyte"}, {"i": "NCIT:C13396", "l": "Allogeneic Lymphocyte"}, {"i": "NCIT:C28676", "l": "Therapeutic Allogeneic Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0933803", "l": "Type A synoviocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023113", "l": "bouton vestibular afferent neuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001145", "l": "interlobular vein cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000149", "l": "visual pigment cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2713244", "l": "Pooled platelet concentrate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157360", "l": "CD19+Kappa+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2951083", "l": "Set of interneurons of gray matter of spinal cord"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:0000240", "l": "stratified squamous epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163542", "l": "Epithelial cells | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740249", "l": "100 cells.CD33"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441375", "l": "Cells.total"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173433", "l": "Monocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0221279", "l": "Burr cell"}, {"i": "SNOMEDCT:51384001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267825", "l": "T lymphocyte positive for both CD4 antigen and HLA-DR antigen"}, {"i": "SNOMEDCT:115405007"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1513713", "l": "Adenocarcinoma Cell with Intracytoplasmic Mucin"}, {"i": "NCIT:C37117", "l": "Adenocarcinoma Cell with Intracytoplasmic Mucin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157473", "l": "CD3+TCR gamma delta+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002590", "l": "smooth muscle cell of the brain vasculature"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339724", "l": "Set of cholinergic cells of olfactory tubercle [Ch4]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D019861", "l": "Enterochromaffin-like Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157920", "l": "Cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002060", "l": "melanophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725796", "l": "Autologous Anti-EGFRvIII 4SCAR-IgT Cells"}, {"i": "NCIT:C150518", "l": "Autologous Anti-EGFRvIII 4SCAR-IgT Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955941", "l": "Precursor Cells, T-Lymphoid"}, {"i": "MESH:D054504", "l": "Precursor Cells, T-Lymphoid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986401", "l": "GITRL RNA-transfected Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C94216", "l": "GITRL RNA-transfected Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511184", "l": "Bizarre Cell with Evidence of Skeletal Muscle Differentiation"}, {"i": "NCIT:C36953", "l": "Bizarre Cell with Evidence of Skeletal Muscle Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267673", "l": "Ovum of parasite (cell)"}]} +{"type": "biolink:Cell", "ic": "65.896494305674821", "identifiers": [{"i": "CL:0000213", "l": "lining cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331938", "l": "Diploid nucleated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277548", "l": "Cancer-Associated Fibroblasts"}, {"i": "MESH:D000072645", "l": "Cancer-Associated Fibroblasts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2981784", "l": "WT1 mRNA-Electroporated Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C88260", "l": "WT1 mRNA-Electroporated Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157647", "l": "CD69 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979637", "l": "Blasts.CD16"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000641", "l": "chromophobe cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440259", "l": "Cells.CD16+CD57+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2951025", "l": "Endothelial cell of endocardium for right atrium"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1515971", "l": "Anaplastic T-Lymphocyte"}, {"i": "NCIT:C39678", "l": "Anaplastic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000829", "l": "basophilic myeloblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007023", "l": "flask cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157348", "l": "CD19 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229952", "l": "Thymic reticulum cell"}, {"i": "SNOMEDCT:50482005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3474412", "l": "HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 30 mL INTRAVENOUS LIQUID"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899973", "l": "BCMA-specific CAR-expressing T Lymphocytes BB2121"}, {"i": "NCIT:C117729", "l": "Idecabtagene Vicleucel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181298", "l": "Dark chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000535", "l": "secondary neuron"}]} +{"type": "biolink:Cell", "ic": "66.181106630879313", "identifiers": [{"i": "UMLS:C1514011", "l": "Neoplastic Lymphocyte"}, {"i": "NCIT:C36988", "l": "Neoplastic Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514075", "l": "Neoplastic Promyelocyte"}, {"i": "NCIT:C37072", "l": "Neoplastic Promyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157461", "l": "CD3+CD8+CD28+HLA DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002661", "l": "luminal cell of lactiferous terminal ductal lobular unit"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518167", "l": "Population of all band basophils in portion of fluid"}, {"i": "SNOMEDCT:725232005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148320", "l": "Cells.CD11c-CD20+"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0002504", "l": "enteric smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520131", "l": "Well Differentiated Adenocarcinoma Cell"}, {"i": "NCIT:C36796", "l": "Well Differentiated Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000222", "l": "mesodermal cell"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "UMLS:C1511246", "l": "Bone marrow stem cell"}, {"i": "NCIT:C13456", "l": "Bone Marrow Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330227", "l": "Type F cell of pancreatic acinus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440358", "l": "Cells.CD8+CD56+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002107", "l": "IgD-negative CD38-positive IgG memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510909", "l": "Blast cell positive for CD34 antigen"}, {"i": "SNOMEDCT:725170002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000435", "l": "alkali secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171527", "l": "Lupus erythematosus cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000396", "l": "lamellocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440269", "l": "Cells.CD198"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D050527", "l": "Mesangial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267915", "l": "Lymphocyte positive for CD38 antigen"}, {"i": "SNOMEDCT:116845004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326607", "l": "Adipocyte of epicardial fat of left ventricle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157618", "l": "CD56 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002362", "l": "granule cell precursor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086920", "l": "Tumor Peptide-loaded Myeloid Dendritic Cells"}, {"i": "NCIT:C124055", "l": "Tumor Peptide-loaded Myeloid Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000082", "l": "stretch receptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000371", "l": "transitional myocyte of right branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167387", "l": "Histiocytes | Nose | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D004804", "l": "Eosinophils"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246712", "l": "Vascular smooth muscle cell of right coronary artery"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157670", "l": "CD8+CD45RA+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515233", "l": "Tear-Drop Red Blood Cell"}, {"i": "NCIT:C36726", "l": "Tear-Drop Red Blood Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002074", "l": "myocardial endocrine cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000799", "l": "immature gamma-delta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181163", "l": "Set of central neuroglial cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519070", "l": "Physaliphorous Cell"}, {"i": "NCIT:C36739", "l": "Physaliphorous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323958", "l": "Double bouquet cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000381", "l": "type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882828", "l": "Cell positive for CD3 antigen"}, {"i": "SNOMEDCT:116744006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516393", "l": "Centrocyte-Like Cell"}, {"i": "NCIT:C37001", "l": "Centrocyte-Like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979744", "l": "Leukocytes.CD59 deficient"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599455", "l": "sperm protein"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717943", "l": "Immunodeficiency markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230518", "l": "Mitotic cell"}, {"i": "SNOMEDCT:75167008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002287", "l": "type IV taste receptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000326", "l": "glycogen accumulating cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329309", "l": "Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087"}, {"i": "NCIT:C129715", "l": "Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D007694", "l": "Killer Cells, Natural"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709206", "l": "Neoplastic Stellate Chondrocyte"}, {"i": "NCIT:C53472", "l": "Neoplastic Stellate Chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4324113", "l": "CD38+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000222", "l": "stomach neuroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163453", "l": "Eosinophils.immature/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009000", "l": "sensory neuron of spinal nerve"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0004827", "l": "Basophils"}, {"i": "NCIT:C12531", "l": "Basophil"}, {"i": "MESH:D001491", "l": "Basophils"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009033", "l": "plasma cell of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1650880", "l": "Retic"}]} +{"type": "biolink:Cell", "ic": "74.603620314006946", "identifiers": [{"i": "CL:0002254", "l": "epithelial cell of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184401", "l": "Unidentified cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D017949", "l": "Retinal Cone Photoreceptor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000027", "l": "cerebellum basket cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000147", "l": "heart valve cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514102", "l": "Neoplastic Stellate Cell"}, {"i": "NCIT:C36899", "l": "Neoplastic Stellate Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157334", "l": "CD16-CD57- | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524566", "l": "Hematopoietic Progenitor Cells from Cord Blood"}, {"i": "NCIT:C133329", "l": "Hematopoietic Progenitor Cells from Cord Blood"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005011", "l": "renal alpha-intercalated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3661517", "l": "Neutrophil Band Cells"}, {"i": "SNOMEDCT:702697008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3534455", "l": "Anucleated bodies"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518160", "l": "Population of all large oval head spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:725387008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171870", "l": "Macrophages | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1524008", "l": "Leukocyte - Natural Killer Cell (MMHCC)"}, {"i": "NCIT:C22595", "l": "Mouse Natural Killer Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440258", "l": "Cells.CD16+CD57-"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1522703", "l": "Leukocyte - Lymphocyte (MMHCC)"}, {"i": "NCIT:C22572", "l": "Mouse Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C3899265", "l": "Endocrine Cell of the Digestive System"}, {"i": "NCIT:C12573", "l": "Endocrine Cell of the Digestive System"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0596890", "l": "MCF-7 Cells"}, {"i": "NCIT:C18096", "l": "MCF7"}, {"i": "MESH:D061986", "l": "MCF-7 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511593", "l": "Population of all immature reticulocytes in portion of fluid"}, {"i": "SNOMEDCT:725998003"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "CL:0002420", "l": "immature T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1718725", "l": "Cells.CD1c+CD22+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000180", "l": "estradiol secreting cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002072", "l": "nodal myocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000016", "l": "male germ line stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157609", "l": "CD55 and CD59 RBC | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519220", "l": "Secretory-Stage Ameloblast"}, {"i": "NCIT:C33524", "l": "Secretory-Stage Ameloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4484158", "l": "Cells.chromosome 3 monosomy"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002316", "l": "supporting cell of vestibular epithelium"}]} +{"type": "biolink:Cell", "ic": "72.105362717182985", "identifiers": [{"i": "CL:0000679", "l": "glutamatergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323048", "l": "Oocyte in metaphase II arrest"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736184", "l": "Cells.CD55+CD59"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350468", "l": "Lymphocyte-Activated Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183184", "l": "Set of aminergic cells in ventral tegmental area [A10]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000397", "l": "endothelial cell of venous sinus of red pulp of spleen"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0002659", "l": "glandular cell of stomach"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013234", "l": "Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3166857", "l": "Cytoplasmic CD117"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177619", "l": "Platelets | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339528", "l": "Retinal astrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002500", "l": "P enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513171", "l": "Metaplastic Columnar Cell"}, {"i": "NCIT:C37096", "l": "Metaplastic Columnar Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000249", "l": "hatching gland cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440055", "l": "Abnormal blood cells.CD5"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764291", "l": "CRISPR-Cas9-mediated PD-1 and TCR Gene-deleted Anti-mesothelin CAR T-cells"}, {"i": "NCIT:C158606", "l": "CRISPR-Cas9-mediated PD-1 and TCR Gene-deleted Anti-mesothelin CAR T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599409", "l": "sensory transducer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000040", "l": "bladder microvascular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12978", "l": "Totipotent Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899996", "l": "Autologous MAGE-A3-specific HLA-A*01-Restricted T Cell Receptor Gene Engineered Lymphocytes"}, {"i": "NCIT:C116711", "l": "Autologous MAGE-A3-specific HLA-A*01-Restricted T Cell Receptor Gene Engineered Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002336", "l": "buccal mucosa cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0312740", "l": "Immune effector cell"}, {"i": "NCIT:C28241", "l": "Effector Immune Cell"}, {"i": "SNOMEDCT:86224008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697058", "l": "Predominant leukocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001587", "l": "uterine cervix glandular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740198", "l": "BAFF-R Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002595", "l": "smooth muscle cell of the subclavian artery"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440373", "l": "Cells.CD97"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002055", "l": "CD38-negative immature B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512310", "l": "HL60"}, {"i": "NCIT:C19433", "l": "HL60"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0000136", "l": "fat cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172552", "l": "Metamyelocytes/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327049", "l": "Non-keratinized squamous cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518217", "l": "Malignant Neuroendocrine Cell with Abundant Cytoplasm"}, {"i": "NCIT:C36917", "l": "Malignant Neuroendocrine Cell with Abundant Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514036", "l": "Neoplastic Myeloblast with Azurophilic Granules"}, {"i": "NCIT:C37178", "l": "Neoplastic Myeloblast with Azurophilic Granules"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725915", "l": "Autologous GPC3/NY-ESO-1/AFP specific CD8-positive T-lymphocytes"}, {"i": "NCIT:C150676", "l": "Autologous GPC3/NY-ESO-1/AFP specific CD8-positive T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0010017", "l": "zygote"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483193", "l": "CD7+CD3-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157420", "l": "CD3 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440385", "l": "Cells.euploid+Cells.aneuploid.population 1"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002129", "l": "regular atrial cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D039904", "l": "Pluripotent Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512638", "l": "Immature Peripheral Gamma/Delta Cell of Cytotoxic Type"}, {"i": "NCIT:C38326", "l": "Immature Peripheral Gamma/Delta Cell of Cytotoxic Type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086000", "l": "Autologous Anti-CD19 CAR-expressing T Lymphocytes"}, {"i": "NCIT:C125691", "l": "Autologous Anti-CD19 CAR-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304487", "l": "Population of all smudge cells in portion of fluid"}, {"i": "SNOMEDCT:719701000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711354", "l": "Malignant Mesenchymal Spindle Cell"}, {"i": "NCIT:C49056", "l": "Malignant Mesenchymal Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000095", "l": "cord blood hematopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000392", "l": "crystal cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C32053", "l": "Alveolar Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157554", "l": "CD4+CD45RO+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186733", "l": "Leukocytes | Blood product unit | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "73.539748874002555", "identifiers": [{"i": "CL:0000125", "l": "glial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0021792", "l": "Interneurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180574", "l": "Segmented neutrophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002249", "l": "primitive cardiac myocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1512106", "l": "Dysplastic Megakaryocyte"}, {"i": "NCIT:C37046", "l": "Dysplastic Megakaryocyte"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000062", "l": "osteoblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001318", "l": "renal interstitial pericyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009045", "l": "B cell of medullary sinus of lymph node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007022", "l": "micropylar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440297", "l": "Cells.CD33+HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1707524", "l": "Corticotroph"}, {"i": "MESH:D052680", "l": "Corticotrophs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514175", "l": "Pleomorphic Medium-Sized to Large T-Lymphocyte"}, {"i": "NCIT:C39602", "l": "Pleomorphic Medium-Sized to Large T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179009", "l": "Retinal pigment cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517736", "l": "Large Osteoclastic Giant Cell"}, {"i": "NCIT:C36818", "l": "Large Osteoclastic Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228072", "l": "Large neuron"}, {"i": "SNOMEDCT:24031008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513797", "l": "Mouse Myoepitheliocyte"}, {"i": "NCIT:C22697", "l": "Mouse Myoepitheliocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340307", "l": "Pterygopalatine ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229613", "l": "lymphoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023088", "l": "large basket cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157494", "l": "CD34 cells | Blood product unit | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009037", "l": "lymph node mantle zone B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513996", "l": "Neoplastic Large B-Lymphocyte with Pale Cytoplasm"}, {"i": "NCIT:C38660", "l": "Neoplastic Large B-Lymphocyte with Pale Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3871181", "l": "Erythrocytes.hyperchromic"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178303", "l": "Promonocytes/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516837", "l": "Columnar cell of endocervix"}, {"i": "NCIT:C33914", "l": "Endocervical Columnar Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000674", "l": "interfollicle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300521"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267917", "l": "Lymphocyte positive for CD40 antigen"}, {"i": "SNOMEDCT:117585007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170953", "l": "Leukocytes other | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12985", "l": "Neural Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181531", "l": "Type II cell of adrenal medulla"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C0596981", "l": "Muscle Cells"}, {"i": "NCIT:C12612", "l": "Muscle Cell"}, {"i": "MESH:D032342", "l": "Muscle Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986403", "l": "Anti-CTLA4 MoAb RNA/GITRL RNA-transfected Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C94218", "l": "Anti-CTLA4 MoAb RNA/GITRL RNA-transfected Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12625", "l": "Interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163754", "l": "Erythrocytes.lytic resistant | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086007", "l": "Autologous Dendritic Cell-based Immunotherapeutic AV0113"}, {"i": "NCIT:C123928", "l": "Audencel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1707879", "l": "Eccrine Cell"}, {"i": "NCIT:C43373", "l": "Eccrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514436", "l": "Primitive Mesenchymal Plump Cell"}, {"i": "NCIT:C37090", "l": "Primitive Mesenchymal Plump Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513927", "l": "Neoplastic B-Immunoblast"}, {"i": "NCIT:C37010", "l": "Neoplastic B-Immunoblast"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000458", "l": "serotonin secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000445", "l": "apoptosis fated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001049", "l": "activated CD8-positive, alpha-beta T cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545484", "l": "Non-squamous epithelial cell"}, {"i": "SNOMEDCT:725264003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684128", "l": "lymphoid megakaryocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002551", "l": "fibroblast of dermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330671", "l": "Goblet cell of epithelium of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883031", "l": "Signet Ring Melanoma Cell"}, {"i": "NCIT:C62402", "l": "Signet Ring Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002572", "l": "vertebral mesenchymal stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956319", "l": "Common Myeloid Progenitors"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C3896693", "l": "Bone Marrow-Derived Cell"}, {"i": "NCIT:C116388", "l": "Bone Marrow-Derived Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0008008", "l": "striated visceral muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326580", "l": "Type A enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001608", "l": "foreskin fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002383", "l": "conidium of conidiophore head"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267872", "l": "Lymphocyte positive for CD13 antigen"}, {"i": "SNOMEDCT:117551006"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514084", "l": "Neoplastic Small B-Lymphocyte"}, {"i": "NCIT:C38702", "l": "Neoplastic Small B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000463", "l": "epidermal cell (sensu arthropoda)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4084782", "l": "4H11-28z/fIL-12/EGFRt-expressing Autologous T-lymphocytes"}, {"i": "NCIT:C123823", "l": "4H11-28z/fIL-12/EGFRt-expressing Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522059", "l": "Balloon Nevus Cell"}, {"i": "NCIT:C36863", "l": "Balloon Nevus Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177469", "l": "Plasma cells/100 leukocytes | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513936", "l": "Neoplastic Cerebriform T-Prolymphocyte"}, {"i": "NCIT:C39572", "l": "Neoplastic Cerebriform T-Prolymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329995", "l": "Stratified amacrine cell of retina"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000652", "l": "pinealocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2355611", "l": "Suppressor effector T lymphocyte"}, {"i": "NCIT:C12544", "l": "Suppressor-Effector T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000182", "l": "hepatocyte"}]} +{"type": "biolink:Cell", "ic": "70.502841885620896", "identifiers": [{"i": "CL:0002139", "l": "endothelial cell of vascular tree"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4722589", "l": "KTE-C19"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440310", "l": "Cells.CD42c"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334089", "l": "Epithelial cell of thyroid gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000467", "l": "chromaffin cell of left ovary"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524565", "l": "Hematopoietic Progenitor Cells from Apheresis"}, {"i": "NCIT:C133328", "l": "Hematopoietic Progenitor Cells from Apheresis"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001217", "l": "interlobulary artery smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2346881", "l": "Autologous Ad-CD154-Transduced CLL B Cells"}, {"i": "NCIT:C68842", "l": "Autologous Ad-CD154-Transduced CLL B Cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12590", "l": "Supporting Cell of Organ of Corti"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708920", "l": "Malignant Syncytiotrophoblastic Giant Cell"}, {"i": "NCIT:C54119", "l": "Malignant Syncytiotrophoblastic Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184396", "l": "Unidentified cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "UMLS:C0027883", "l": "Afferent neuron"}, {"i": "NCIT:C12628", "l": "Sensory Neuron"}, {"i": "MESH:D009475", "l": "Neurons, Afferent"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000410", "l": "CNS long range interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000073", "l": "migratory cardiac neural crest cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440421", "l": "Cells.TCR alpha beta"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000036", "l": "anterior lateral line neuromast supporting cell"}]} +{"type": "biolink:Cell", "ic": "54.668414606425863", "identifiers": [{"i": "CL:0000393", "l": "electrically responsive cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179475", "l": "Stem cell of gastric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1370102", "l": "Cells.CD4+CD45RA+/Cells.CD8"}]} +{"type": "biolink:Cell", "ic": "70.245698090881746", "identifiers": [{"i": "CL:0008007", "l": "visceral muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229631", "l": "Siderocyte"}, {"i": "SNOMEDCT:61837008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002640", "l": "amniotic epithelial stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002493", "l": "strial basal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733633", "l": "Autologous CD19-targeted CAR T Cells JWCAR029"}, {"i": "NCIT:C155878", "l": "Relmacabtagene Autoleucel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157236", "l": "CD10 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157300", "l": "CD135 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764287", "l": "Autologous Cytotoxic T-lymphocytes Exposed to Dendritic Cells loaded with 6B11 Anti-idiotype Minibody"}, {"i": "NCIT:C158601", "l": "Autologous Cytotoxic T-lymphocytes Exposed to Dendritic Cells loaded with 6B11 Anti-idiotype Minibody"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000907", "l": "central memory CD8-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000394", "l": "myoepithelial cell of intralobular lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267985", "l": "Lymphocyte positive for CD98 antigen"}, {"i": "SNOMEDCT:117425007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170942", "l": "Leukocytes | Urethra | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173501", "l": "Mononuclear cells atypical | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2984032", "l": "Anti-HER2-CAR Autologous CMV-Specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C91091", "l": "Anti-HER2-CAR Autologous CMV-Specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335776", "l": "Myocardial endocrine cell of septal division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0002405", "l": "gamma-delta thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546495", "l": "P.B. basophilic metamyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350249", "l": "Hemogenic Endothelial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000536", "l": "secondary motor neuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000333", "l": "serous cell of epithelium of lobular bronchiole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0014467", "l": "eosinophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507172", "l": "Cells.CD3+TCR gamma delta+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3658289", "l": "Human Induced Pluripotent Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322735", "l": "CD20+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002003", "l": "CD34-positive, GlyA-negative erythroid progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440376", "l": "CDA Cells"}]} +{"type": "biolink:Cell", "ic": "70.245698090881746", "identifiers": [{"i": "UMLS:C1510779", "l": "Adenocarcinoma Cell"}, {"i": "NCIT:C36773", "l": "Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007021", "l": "alarm substance cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709135", "l": "Frozen erythrocytes pediatric units"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000398", "l": "polygonal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009068", "l": "CD8aa(I) thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086001", "l": "Lisocabtagene Maraleucel"}, {"i": "NCIT:C125192", "l": "Lisocabtagene Maraleucel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157529", "l": "CD3-CD57+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514275", "l": "Postradiation Dysplastic Epithelial Cell"}, {"i": "NCIT:C36804", "l": "Postradiation Dysplastic Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011105", "l": "dopamanergic interplexiform cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511185", "l": "Bizarre Neoplastic Stromal Giant Cell"}, {"i": "NCIT:C36826", "l": "Bizarre Neoplastic Stromal Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524459", "l": "Lower motor neuron"}, {"i": "SNOMEDCT:91770004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3261871", "l": "Circulating tumor cells.prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709196", "l": "Neoplastic Retinal Ganglion Cell"}, {"i": "NCIT:C42604", "l": "Neoplastic Retinal Ganglion Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440315", "l": "Cells.CD45RA"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0228092", "l": "Ependymal cell"}, {"i": "NCIT:C13003", "l": "Ependymal Cell"}, {"i": "SNOMEDCT:46940003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4296891", "l": "L cell, Glucagon-like peptide-producing and PP/PYY-producing NETs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518353", "l": "Malignant Non-Cutaneous Basaloid Cell"}, {"i": "NCIT:C36783", "l": "Malignant Non-Cutaneous Basaloid Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1519442", "l": "Specialized epithelial cell"}, {"i": "NCIT:C13006", "l": "Specialized Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515146", "l": "TE03"}, {"i": "NCIT:C20296", "l": "TE03"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514046", "l": "Neoplastic Neuroendocrine Polygonal Cell with Cytoplasmic Eosinophilic Globules"}, {"i": "NCIT:C36934", "l": "Neoplastic Neuroendocrine Polygonal Cell with Cytoplasmic Eosinophilic Globules"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333728", "l": "Navicular cell"}, {"i": "SNOMEDCT:25006003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157321", "l": "CD158 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2964633", "l": "CD8-CD57+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002601", "l": "uterine smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "CL:0000095", "l": "neuron associated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000870", "l": "Peyer's patch macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230977", "l": "Desquamated fetal cells"}, {"i": "SNOMEDCT:67709004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267804", "l": "GPA+ lymphocyte"}, {"i": "SNOMEDCT:117508007"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0009014", "l": "Peyer's patch lymphocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:4023016", "l": "vip GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C34032", "l": "Immunoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515963", "l": "Anaplastic Carcinoma Cell"}, {"i": "NCIT:C36848", "l": "Anaplastic Carcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332313", "l": "Type 2B muscle fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744619", "l": "Autologous Anti-CD38 A2 CAR2-expressing T-cells"}, {"i": "NCIT:C156170", "l": "Autologous Anti-CD38 A2 CAR2-expressing T-cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1512565", "l": "Hypolobated Megakaryocyte"}, {"i": "NCIT:C37047", "l": "Hypolobated Megakaryocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1001319", "l": "bladder cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008020", "l": "skeletal muscle satellite myogenic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0024265", "l": "Null cell"}, {"i": "MESH:D008215", "l": "Lymphocytes, Null"}, {"i": "SNOMEDCT:54991005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257793", "l": "Lymphatic Endothelial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514178", "l": "Pleomorphic Reed-Sternberg Cell"}, {"i": "NCIT:C38423", "l": "Pleomorphic Reed-Sternberg Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12605", "l": "Spermatocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440379", "l": "Cells.cytoplasmic CD79"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009081", "l": "specified double negative thymocyte (Homo sapiens)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332996", "l": "Thrombocytopoietic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522257", "l": "Mesodermal Cell / Mesoblast (MMHCC)"}, {"i": "NCIT:C22686", "l": "Mouse Mesodermal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022687", "l": "Lymphokine-Activated Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157505", "l": "CD36 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "NCIT:C12477", "l": "Astrocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002114", "l": "CD38-positive unswitched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267843", "l": "Lymphocyte positive for both CD4 antigen and CD8 antigen"}, {"i": "SNOMEDCT:117530008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511548", "l": "Cryopreserved Cell"}, {"i": "NCIT:C19314", "l": "Cryopreserved Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328822", "l": "Type D cell of stomach"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0334225", "l": "Tumor cells, benign"}, {"i": "SNOMEDCT:56696000"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514202", "l": "Polygonal Brown Fat Cell"}, {"i": "NCIT:C36967", "l": "Polygonal Brown Fat Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000060", "l": "odontoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322831", "l": "Type 2C muscle fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000042", "l": "forebrain neuroblast"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1709169", "l": "Neoplastic Connective and Soft Tissue Epithelioid Cell"}, {"i": "NCIT:C43307", "l": "Neoplastic Connective and Soft Tissue Epithelioid Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513994", "l": "Neoplastic Langerhans Cell"}, {"i": "NCIT:C36889", "l": "Neoplastic Langerhans Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172507", "l": "Mesothelial cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339291", "l": "Syncytial giant cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511890", "l": "Population of all burr cells in portion of fluid"}, {"i": "SNOMEDCT:726507002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440401", "l": "Cells.t(11;22)(q24;q12.2)(FLI1,EWSR1)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1721044", "l": "Fetal Stem Cells"}, {"i": "MESH:D053686", "l": "Fetal Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000310", "l": "adipocyte of epicardial fat of right ventricle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519122", "l": "SA03"}, {"i": "NCIT:C20266", "l": "SA03"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000716", "l": "kidney outer medulla collecting duct principal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640209", "l": "Mesothelin-specific Chimeric Antigen Receptor-engineered Peripheral Blood Lymphocytes"}, {"i": "NCIT:C101773", "l": "Mesothelin-specific Chimeric Antigen Receptor-engineered Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161795", "l": "Cytoplasmic CD179a blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1183499", "l": "Mesodermal cell"}, {"i": "NCIT:C33936", "l": "Mesoderm Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979663", "l": "Cell positive for BCLXL protein"}, {"i": "SNOMEDCT:725314007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157507", "l": "CD36 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0013921", "l": "Tumor Cells, Embolic"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924221", "l": "Cells.CD11c-CD103+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002173", "l": "extraglomerular mesangial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518789", "l": "PG13/LNc8 Retroviral Transduced Cloned T-Cells"}, {"i": "NCIT:C2790", "l": "PG13/LNc8 Retroviral Transduced Cloned T-Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181335", "l": "Spermatozoa | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514654", "l": "RL05"}, {"i": "NCIT:C20288", "l": "RL05"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441017", "l": "Neutrophil cytoplasmic"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002381", "l": "uninucleate conidium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706985", "l": "Bone Marrow Stem Cell with Potential for Megakaryocytic and Erythroid Differentiation"}, {"i": "NCIT:C43225", "l": "Bone Marrow Stem Cell with Potential for Megakaryocytic and Erythroid Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440374", "l": "Cells.CD98"}]} +{"type": "biolink:Cell", "ic": "69.298854394597811", "identifiers": [{"i": "UMLS:C1513026", "l": "Mature Lymphocyte"}, {"i": "NCIT:C38439", "l": "Mature Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002677", "l": "naive regulatory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496153", "l": "A9 dopamine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171865", "l": "Macrophages | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180059", "l": "Nucleated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002157", "l": "endosteal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882932", "l": "Cells.CD8+CD28+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157307", "l": "CD14 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002104", "l": "IgG-negative double negative memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000961", "l": "Bm1 B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3642265", "l": "Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T Cells"}, {"i": "NCIT:C105614", "l": "Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002397", "l": "CD14-positive, CD16-positive monocyte"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000507", "l": "endorphin secreting cell"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "UMLS:C1513960", "l": "Neoplastic Epithelial Clear Cell"}, {"i": "NCIT:C36756", "l": "Neoplastic Epithelial Clear Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002384", "l": "uninucleate macroconidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340402", "l": "Intrafascicular oligodendrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324490", "l": "Set of B4 serotoninergic cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514176", "l": "Pleomorphic Meningothelial Cell"}, {"i": "NCIT:C37158", "l": "Pleomorphic Meningothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000944", "l": "Be2 cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157267", "l": "CD11a blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161838", "l": "Dacrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001023", "l": "Kit-positive, CD34-positive common myeloid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179533", "l": "Reticulocytes.mid | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511891", "l": "Population of all plasma cells in portion of fluid"}, {"i": "SNOMEDCT:726508007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002217", "l": "intermediate trophoblast cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000696", "l": "PP cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000664", "l": "closable valve cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000376", "l": "humidity receptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167384", "l": "Histiocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440261", "l": "Cells.CD16-CD34+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000600", "l": "heterokaryon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4484192", "l": "Neutrophil.fMLP stimulated.DHR"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000089", "l": "dentate gyrus of hippocampal formation granule cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4030000", "l": "choroidal melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727550", "l": "Autologous ROR2-targeted CAR T-cells CCT301-59"}, {"i": "NCIT:C154277", "l": "Autologous ROR2-targeted CAR T-cells CCT301-59"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3849991", "l": "Glandular Epithelial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517440", "l": "Ganglion-Like Cell"}, {"i": "NCIT:C36981", "l": "Ganglion-Like Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512138", "l": "ESO-1 Reactive Autologous Tumor Infiltrating Lymphocyte"}, {"i": "NCIT:C38120", "l": "ESO-1 Reactive Autologous Tumor Infiltrating Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4329369", "l": "Autologous Cytokine-induced Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002288", "l": "type V taste receptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002355", "l": "primitive red blood cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924332", "l": "Erythrocytes.pitted"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518997", "l": "Peripheral Blood Lymphocyte"}, {"i": "NCIT:C12938", "l": "Peripheral Blood Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0806987", "l": "Mononuclear cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C171057", "l": "Innate Lymphoid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002221", "l": "keratinized squamous cell of esophagus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000579", "l": "border follicle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1521882", "l": "WA07 cell line"}, {"i": "NCIT:C20309", "l": "WA07"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182614", "l": "Epithelial cell of external acoustic meatus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023081", "l": "inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514271", "l": "Postgerminal Center B-Lymphocyte"}, {"i": "NCIT:C38340", "l": "Postgerminal Center B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085976", "l": "Anti-MUC1 CAR-transduced Autologous T-lymphocytes"}, {"i": "NCIT:C124646", "l": "Anti-MUC1 CAR-transduced Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002594", "l": "smooth muscle cell of the umbilical artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517819", "l": "Mouse Pro-B-Lymphocyte"}, {"i": "NCIT:C22575", "l": "Mouse Pro-B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1183500", "l": "Endodermal cell"}, {"i": "NCIT:C33932", "l": "Endoderm Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331714", "l": "Regular interventricular cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496533", "l": "A13 dopamine cells"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0002204", "l": "brush cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002535", "l": "epithelial cell of cervix"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0005000", "l": "spinal cord interneuron"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "NCIT:C12583", "l": "Dendritic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12652", "l": "Pyramidal Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000549", "l": "kidney cortex collecting duct epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440324", "l": "Cells.CD49d"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000078", "l": "peridermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001338", "l": "Autonomic Fibers, Postganglionic"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267930", "l": "Lymphocyte positive for CD45RA antigen"}, {"i": "SNOMEDCT:117373003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000632", "l": "hepatic stellate cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1515966", "l": "Anaplastic Large Lymphocyte"}, {"i": "NCIT:C37018", "l": "Anaplastic Large Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517715", "l": "Lacunar Reed-Sternberg Cell"}, {"i": "NCIT:C37023", "l": "Lacunar Reed-Sternberg Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2936410", "l": "Spongy Mesophyll Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000093", "l": "bronchus fibroblast of lung"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727589", "l": "Neoplastic Corticotroph Cell with Scarce Secretory Granules"}, {"i": "NCIT:C154338", "l": "Neoplastic Corticotroph Cell with Scarce Secretory Granules"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000467", "l": "adrenocorticotropic hormone secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4245840", "l": "Set of regular cardiac myocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157260", "l": "CD117 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513991", "l": "Neoplastic Interdigitating Dendritic Cell"}, {"i": "NCIT:C36892", "l": "Neoplastic Interdigitating Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184397", "l": "Unidentified cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740211", "l": "Erythrocytes.CD59 complete loss"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304494", "l": "Population of all stomatocytes in portion of fluid"}, {"i": "SNOMEDCT:719694005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440313", "l": "Cells.CD44R"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000557", "l": "granulocyte monocyte progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177784", "l": "Polymorphonuclear cells | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267832", "l": "Lymphocyte positive for both CD3 antigen and CD69 antigen"}, {"i": "SNOMEDCT:117523002"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1518222", "l": "Malignant Neuroendocrine Small Cell"}, {"i": "NCIT:C36820", "l": "Malignant Neuroendocrine Small Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157369", "l": "CD2 cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000875", "l": "non-classical monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000119", "l": "cerebellar Golgi cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182803", "l": "Epithelial cell of exocrine pancreas"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182668", "l": "Endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0227651", "l": "Mesangial Cells, Kidney"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C33153", "l": "Myofibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953492", "l": "Set of neural cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001428", "l": "bladder urothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002470", "l": "MHC-II-positive classical monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171868", "l": "Macrophages | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000140", "l": "odontocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000202", "l": "auditory hair cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708906", "l": "Malignant Small Osteoblast"}, {"i": "NCIT:C53956", "l": "Malignant Small Osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267878", "l": "Lymphocyte positive for both CD16 antigen and CD57 antigen"}, {"i": "SNOMEDCT:116729005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000820", "l": "B-1a B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518889", "l": "Paraimmunoblast"}, {"i": "NCIT:C36989", "l": "Paraimmunoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0028875", "l": "Odontoblasts"}, {"i": "NCIT:C12567", "l": "Odontoblast"}, {"i": "MESH:D009804", "l": "Odontoblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163545", "l": "Epithelial cells | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002059", "l": "CD8alpha-positive thymic conventional dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181480", "l": "Spherocytes.micro | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C4745055", "l": "Malignant Basal Cell"}, {"i": "NCIT:C156768", "l": "Malignant Basal Cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000970", "l": "unswitched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3282454", "l": "HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 25 mL INTRAVENOUS INJECTION [HemaCord]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000596", "l": "inner renal cortex cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276977", "l": "Entire primordial sex cell"}, {"i": "SNOMEDCT:343721007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5158561", "l": "Cells.CD4-CD8-CD45R+TCR alpha beta+ | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5187118", "l": "Variant lymphocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267851", "l": "Lymphoblast positive for CD7 antigen"}, {"i": "SNOMEDCT:117537006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522235", "l": "Exocrine Pancreas - Acinar Cell (MMHCC)"}, {"i": "NCIT:C22643", "l": "Mouse Acinar Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945916", "l": "Cells.CD11b"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157454", "l": "CD3+CD8+ (T8 suppressor cells) cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000236", "l": "posterior lateral line nerve glial cell"}]} +{"type": "biolink:Cell", "ic": "75.076548671259488", "identifiers": [{"i": "CL:0000147", "l": "pigment cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D019902", "l": "Chondrocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276862", "l": "Entire endocervical glandular cell"}, {"i": "SNOMEDCT:255065002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171653", "l": "Lymphocyte T-cell and B-cell and Natural killer subsets | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000751", "l": "rod bipolar cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726563", "l": "Autologous E6 T Cell Receptor Genetically-modified T Cells"}, {"i": "NCIT:C151936", "l": "Autologous E6 T Cell Receptor Genetically-modified T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000754", "l": "type 2 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002349", "l": "CD27-high, CD11b-low natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0946499", "l": "Cells.CD4+CD29+"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000038", "l": "erythroid progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440240", "l": "Cells.CD107b"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2952444", "l": "Mononuclear phagocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1624741", "l": "Cells.CD3+CD16+CD56+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337780", "l": "Dendritic reticular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055421", "l": "Autologous WT1-TCRc4 Gene-transduced CD8-positive Tcm/Tn Lymphocytes"}, {"i": "NCIT:C121308", "l": "Autologous WT1-TCRc4 Gene-transduced CD8-positive Tcm/Tn Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267925", "l": "Lymphocyte positive for CD43 antigen"}, {"i": "SNOMEDCT:117369001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328288", "l": "Set of Ch4 cholinergic cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000336", "l": "adrenal medulla chromaffin cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514657", "l": "RL13"}, {"i": "NCIT:C20291", "l": "RL13"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019002", "l": "tracheobronchial chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0872268", "l": "self renewing cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000411", "l": "endothelial cell of Peyer's patch"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157469", "l": "CD3+HLA-DR+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0229571", "l": "Type I cell of carotid body"}, {"i": "NCIT:C36965", "l": "Glomus Cell"}, {"i": "SNOMEDCT:75737006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000373", "l": "histoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764237", "l": "EDTA Blood Cell Fraction"}, {"i": "NCIT:C158462", "l": "EDTA Blood Cell Fraction"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182459", "l": "Differentiated muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0552639", "l": "tubular cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0003154", "l": "Anterior Horn Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171866", "l": "Macrophages | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268006", "l": "Neutrophilic granulocytic cell"}, {"i": "SNOMEDCT:127913001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276861", "l": "Entire endometrial glandular cell"}, {"i": "SNOMEDCT:254032002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229579", "l": "Structure of thyroid parafollicular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182790", "l": "Epithelial cell of parietal layer of glomerular capsule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002555", "l": "fibroblast of mammary gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000223", "l": "lung neuroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333722", "l": "Tadpole cell"}, {"i": "SNOMEDCT:112657009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002246", "l": "peripheral blood stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022827", "l": "L Cells"}, {"i": "MESH:D007739", "l": "L Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002188", "l": "glomerular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001021", "l": "kidney loop of Henle descending limb epithelial cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514113", "l": "Neoplastic Thyroid Gland Follicular Cell"}, {"i": "NCIT:C36835", "l": "Neoplastic Thyroid Gland Follicular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0879357", "l": "Vaccine-Sensitized Draining Lymph Node Cells"}, {"i": "NCIT:C2542", "l": "Vaccine-Sensitized Draining Lymph Node Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170952", "l": "Leukocytes other | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000569", "l": "cardiac mesenchymal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001048", "l": "activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518067", "l": "Lymphocyte with Basophilic Villous Cytoplasm"}, {"i": "NCIT:C36993", "l": "Lymphocyte with Basophilic Villous Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182508", "l": "Synovial lining cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "77.02358060617253", "identifiers": [{"i": "CL:0009004", "l": "retinal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157612", "l": "CD55 Monocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440304", "l": "Cells.CD4+CD69+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000601", "l": "cochlear outer hair cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697023", "l": "Cells.CD27+CD62L+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011021", "l": "fibroblast of upper back skin"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882056", "l": "Neoplastic Leutein Cell"}, {"i": "NCIT:C61430", "l": "Neoplastic Leutein Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157438", "l": "CD3+CD4+ (T4 helper) cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178162", "l": "Primary Spermatocytes | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161801", "l": "Cytoplasmic CD3 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684956", "l": "Autologous Gamma-retroviral MSGV1 139 scFv EGFRvIII CAR Gene-modified T Cells"}, {"i": "NCIT:C143060", "l": "Autologous Gamma-retroviral MSGV1 139 scFv EGFRvIII CAR Gene-modified T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267928", "l": "Lymphocyte positive for CD45 antigen"}, {"i": "SNOMEDCT:116853007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000379", "l": "type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2981832", "l": "HER2Bi-Armed Activated T Cells"}, {"i": "NCIT:C88317", "l": "HER2Bi-Armed Activated T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023010", "l": "alpha7 GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002225", "l": "secondary lens fiber"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330686", "l": "Transitional myocyte of right branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "72.105362717182985", "identifiers": [{"i": "CL:0002253", "l": "epithelial cell of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4042878", "l": "Embryonic Germ Cells"}, {"i": "MESH:D000066473", "l": "Embryonic Germ Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510958", "l": "Atypical Lobular Epithelial Cell"}, {"i": "NCIT:C36885", "l": "Atypical Lobular Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172358", "l": "Megakaryocytes | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001581", "l": "lateral ventricle glial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000863", "l": "inflammatory macrophage"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002187", "l": "basal cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440260", "l": "Cells.CD16b"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001017", "l": "mature CD1a-positive Langerhans cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709134", "l": "Frozen erythrocytes newborn units"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170903", "l": "Leukocyte clumps | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000017", "l": "spermatocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507326", "l": "Cells.CD158"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325383", "l": "Border cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0011103", "l": "sympathetic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163436", "l": "Eosinophils | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229658", "l": "Proplasmacyte"}, {"i": "SNOMEDCT:24884008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0043380", "l": "Y-Chromosome-Bearing Sperm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2369073", "l": "MRC-5 cell line components"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0010007", "l": "His-Purkinje system cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514201", "l": "Polygonal Adenocarcinoma Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C36850", "l": "Polygonal Adenocarcinoma Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C0039215", "l": "CD4 Positive T Lymphocytes"}, {"i": "NCIT:C12537", "l": "CD4-Positive T-Lymphocyte"}, {"i": "MESH:D015496", "l": "CD4-Positive T-Lymphocytes"}, {"i": "SNOMEDCT:115412003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710150", "l": "Spindle A Melanoma Cell"}, {"i": "NCIT:C54158", "l": "Spindle A Melanoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507324", "l": "Cells.CD11b+HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157373", "l": "CD2 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3891660", "l": "Tumor-Associated Macrophage"}, {"i": "NCIT:C116387", "l": "Tumor-Associated Macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0037857", "l": "Spermatid"}, {"i": "NCIT:C12604", "l": "Spermatid"}, {"i": "MESH:D013087", "l": "Spermatids"}, {"i": "SNOMEDCT:38326003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516497", "l": "Chondrocyte-like Cell"}, {"i": "NCIT:C36982", "l": "Chondrocyte-like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246478", "l": "Diencephalic neural crest cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1512642", "l": "Immature T-Lymphocyte"}, {"i": "NCIT:C38325", "l": "Immature T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000089", "l": "male germ line stem cell (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267976", "l": "Lymphocyte positive for CD86 antigen"}, {"i": "SNOMEDCT:117416001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228087", "l": "Macroglia"}, {"i": "SNOMEDCT:45766003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246711", "l": "Vascular smooth muscle cell of left coronary artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000440", "l": "melanocyte stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427532", "l": "Hypergranular white blood cell"}, {"i": "SNOMEDCT:250291005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D056809", "l": "Alveolar Epithelial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333370", "l": "Serous cell of epithelium of terminal bronchiole"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C61147", "l": "Renal Tubular Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881546", "l": "Malignant Epithelial Cell with Vesicular Nucleus, Distinct Nucleolus, and Abundant Pink Cytoplasm"}, {"i": "NCIT:C60664", "l": "Malignant Epithelial Cell with Vesicular Nucleus, Distinct Nucleolus, and Abundant Pink Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882840", "l": "Cells.CD3-CD16+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002401", "l": "mature dendritic epithelial T cell precursor"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000898", "l": "naive T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900002", "l": "Autologous CD8+ Melanoma Specific T Cells"}, {"i": "NCIT:C116072", "l": "Autologous CD8+ Melanoma Specific T Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513949", "l": "Neoplastic Ductal Epithelial Cell"}, {"i": "NCIT:C36877", "l": "Neoplastic Ductal Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0581780", "l": "Stem cell colony-forming unit"}, {"i": "SNOMEDCT:259731003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007016", "l": "adaxial cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1513989", "l": "Neoplastic Immunoblast"}, {"i": "NCIT:C37009", "l": "Neoplastic Immunoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157477", "l": "CD30 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002377", "l": "immature Schwann cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827871", "l": "T1E28z CAR-expressing Autologous CD4-positive T Lymphocytes"}, {"i": "NCIT:C106117", "l": "T1E28z CAR-expressing Autologous CD4-positive T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000886", "l": "nasal and broncial associated lymphoid tissue macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148323", "l": "Cells.CD20+CD25+/100 cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979643", "l": "Blasts.CD3+CD16+CD56+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440415", "l": "Cells.t(8;21)(q22;q22.3)(RUNX1T1,RUNX1)"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0009023", "l": "small intestine Peyer's patch T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179445", "l": "Nonkeratinized cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172509", "l": "Mesothelial cells | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000407", "l": "scolopidial ligament cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002398", "l": "Gr1-positive, CD43-positive monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0487770", "l": "CD16+CD57- lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171656", "l": "Lymphocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979149", "l": "Blasts.CD135"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333837", "l": "Gaucher cell"}, {"i": "NCIT:C36731", "l": "Gaucher Cell"}, {"i": "SNOMEDCT:16216007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0947286", "l": "Cell positive for CD14 antigen"}, {"i": "SNOMEDCT:116752009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4030002", "l": "effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708112", "l": "Fusiform Melanocyte"}, {"i": "NCIT:C54078", "l": "Fusiform Melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001002", "l": "mature CD8_alpha-negative CD11b-negative dendritic cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0011012", "l": "neural crest cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881554", "l": "Malignant Giant Germ Cell"}, {"i": "NCIT:C61385", "l": "Malignant Giant Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182798", "l": "Epithelial cell of distal tubule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001075", "l": "KLRG1-positive innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176885", "l": "Blasts.cytoplasmic CD13"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173443", "l": "Monocytes.immature/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4240446", "l": "Vascular smooth muscle cell of thoracic aorta"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710528", "l": "Umbilical Cord Blood Stem Cell"}, {"i": "NCIT:C43424", "l": "Umbilical Cord Blood Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4525956", "l": "Autologous Tumor Infiltrating Lymphocytes LN-145"}, {"i": "NCIT:C135634", "l": "Autologous Tumor Infiltrating Lymphocytes LN-145"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267992", "l": "Lymphocyte positive for CD106 antigen"}, {"i": "SNOMEDCT:117432003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178740", "l": "Be1 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002531", "l": "mature CD1a-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000351", "l": "trophoblast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1720858", "l": "Adipocytes, White"}, {"i": "MESH:D052438", "l": "Adipocytes, White"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696692", "l": "Cells.CD19+CD27+IgD-IgM-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000027", "l": "smooth muscle cell neural crest derived"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002141", "l": "active chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000385", "l": "type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000661", "l": "distal tip cell (sensu Nematoda)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764041", "l": "Autologous Deep IL-15 Primed T-cells TRQ15-01"}, {"i": "NCIT:C158091", "l": "Autologous Deep IL-15 Primed T-cells TRQ15-01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514965", "l": "Mouse Stem Cell"}, {"i": "NCIT:C22563", "l": "Mouse Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178783", "l": "Serotonergic Neurons"}, {"i": "MESH:D059326", "l": "Serotonergic Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696636", "l": "Cells.CD4+CD25+CD45RA+CD127Low+"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000558", "l": "reticulocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979635", "l": "Blasts.CD11b"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696708", "l": "Cells.CD19+CD38+IgM+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000014", "l": "fibroblast of upper leg skin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330414", "l": "Collateral ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337543", "l": "Paneth cell of epithelium of crypt of Lieberkuhn of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0011031", "l": "monocyte-derived dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4239930", "l": "Primitive ectodermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335624", "l": "Early promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000992", "l": "immature CD11c-low plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1512631", "l": "Immature B-Lymphocyte"}, {"i": "NCIT:C32766", "l": "Immature B-Lymphocyte"}, {"i": "MESH:D054448", "l": "Precursor Cells, B-Lymphoid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339194", "l": "Supporting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023066", "l": "horizontal pyramidal neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522253", "l": "Ovary - Lutein Cell (MMHCC)"}, {"i": "NCIT:C22664", "l": "Mouse Lutein Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339402", "l": "Supporting cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515313", "l": "Mouse Testicular Interstitial Cell"}, {"i": "NCIT:C22180", "l": "Mouse Testicular Interstitial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267784", "l": "Cells.CD38+HLA-DR+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C33266", "l": "Parathyroid Gland Chief Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510720", "l": "Abnormal Eosinophil"}, {"i": "NCIT:C37032", "l": "Abnormal Eosinophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709207", "l": "Neoplastic Striated Muscle Cell with Eosinophilic Granular Cytoplasm"}, {"i": "NCIT:C49170", "l": "Neoplastic Striated Muscle Cell with Eosinophilic Granular Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709200", "l": "Neoplastic Small to Medium-Sized B-Lymphocyte Resembling a Centrocyte"}, {"i": "NCIT:C45310", "l": "Neoplastic Small to Medium-Sized B-Lymphocyte Resembling a Centrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2984201", "l": "Leukemic Apoptotic Corpse-Pulsed Autologous Dendritic Cells"}, {"i": "NCIT:C91379", "l": "Leukemic Apoptotic Corpse-Pulsed Autologous Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002299", "l": "type-2 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545586", "l": "Blood medium lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744852", "l": "Autologous iC9-deltaNGFR-CD19CAR-CD3zeta-4-1BB-expressing T-lymphocytes"}, {"i": "NCIT:C156479", "l": "Autologous iC9-deltaNGFR-CD19CAR-CD3zeta-4-1BB-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D009047", "l": "Motor Neurons, Gamma"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002240", "l": "marrow fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441322", "l": "Viable cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000355", "l": "multi-potent skeletal muscle stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161703", "l": "Cytokeratin cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002480", "l": "nasal mucosa goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000011", "l": "migratory trunk neural crest cell"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "UMLS:C1514033", "l": "Neoplastic Muscle Cell"}, {"i": "NCIT:C36936", "l": "Neoplastic Muscle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229423", "l": "Mastoid cells"}, {"i": "SNOMEDCT:57222008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019026", "l": "periportal region hepatocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257910", "l": "Aneuploid Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513992", "l": "Neoplastic Intermediate Type Trophoblastic Cell"}, {"i": "NCIT:C37142", "l": "Neoplastic Intermediate Type Trophoblastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277680", "l": "Adipocytes, Beige"}, {"i": "MESH:D000069797", "l": "Adipocytes, Beige"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652636", "l": "technetium (99mTc) exametazime labelled cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733678", "l": "Autologous Anti-mesothelin CAR-CD3zeta-4-1-BB-expressing T-cells"}, {"i": "NCIT:C155909", "l": "Autologous Anti-mesothelin CAR-CD3zeta-4-1-BB-expressing T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000902", "l": "induced T-regulatory cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000153", "l": "glycosaminoglycan secreting cell"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000237", "l": "keratinizing barrier epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175158", "l": "Nucleated erythrocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002583", "l": "subcutaneous preadipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513742", "l": "Multilobated Neoplastic B-Lymphocyte"}, {"i": "NCIT:C37169", "l": "Multilobated Neoplastic B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4505326", "l": "Dendritic Epithelial T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326743", "l": "Glycinergic amacrine cell of retina"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1513170", "l": "Metaplastic Cell"}, {"i": "NCIT:C36786", "l": "Metaplastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000033", "l": "apocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3542977", "l": "Ependymoglial Cells"}, {"i": "MESH:D063928", "l": "Ependymoglial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710401", "l": "Thymic Medullary Epithelial Cell"}, {"i": "NCIT:C45702", "l": "Thymic Medullary Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000001", "l": "peripheral blood mononuclear cell"}]} +{"type": "biolink:Cell", "ic": "66.108910517769971", "identifiers": [{"i": "CL:0000163", "l": "endocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979639", "l": "Blasts.CD21"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517724", "l": "Large Atypical Platelet"}, {"i": "NCIT:C37039", "l": "Large Atypical Platelet"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D019863", "l": "Gastrin-Secreting Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157595", "l": "CD5 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178304", "l": "Promonocytes/100 leukocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899738", "l": "CXCR2-transduced Autologous Tumor Infiltrating Lymphocytes"}, {"i": "NCIT:C120001", "l": "CXCR2-transduced Autologous Tumor Infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440290", "l": "Cells.CD3+CD8+CD45RO-CD45RA+"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1709167", "l": "Neoplastic Cartilage Cell"}, {"i": "NCIT:C48696", "l": "Neoplastic Cartilage Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4316924", "l": "Cell positive for CD8 antigen"}, {"i": "SNOMEDCT:732271007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172508", "l": "Mesothelial cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "CL:0000598", "l": "pyramidal neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325209", "l": "Melanocyte of eyelid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1280543", "l": "Entire syncytial trophoblast"}, {"i": "SNOMEDCT:256965005"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1512972", "l": "Malignant Transitional Cell"}, {"i": "NCIT:C36778", "l": "Malignant Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598536", "l": "follicular epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267947", "l": "Lymphocyte positive for CD55 antigen"}, {"i": "SNOMEDCT:117390009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157231", "l": "CD1 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332975", "l": "Folliculostellate cell of pars distalis of adenohypophysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000803", "l": "kidney inner medulla interstitial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711303", "l": "Malignant Sebocyte"}, {"i": "NCIT:C43339", "l": "Malignant Sebocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4682857", "l": "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217"}, {"i": "NCIT:C140310", "l": "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170935", "l": "Leukocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002267", "l": "type D cell of stomach"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002602", "l": "annulus pulposus cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2964437", "l": "Pseudo Pelger Huet cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002426", "l": "CD11b-positive, CD27-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "72.610931868743009", "identifiers": [{"i": "CL:0000039", "l": "germ line cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1261568", "l": "Cell positive for CD10 antigen"}, {"i": "SNOMEDCT:116749001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337350", "l": "Type III enteric ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180942", "l": "Siderocytes per HPF | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882063", "l": "Nephrogenic Blastemal Cell"}, {"i": "NCIT:C61287", "l": "Nephrogenic Blastemal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000489", "l": "scotopic photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002007", "l": "Kit-low, CD34-positive eosinophil progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002597", "l": "smooth muscle cell of bladder"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157345", "l": "CD19 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0000815", "l": "regulatory T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000905", "l": "effector memory CD4-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518620", "l": "Orthochromatophilic Erythroblast"}, {"i": "NCIT:C13132", "l": "Orthochromatic Erythroblast"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C0242629", "l": "CD8-Positive T-Lymphocytes"}, {"i": "NCIT:C12542", "l": "CD8-Positive T-Lymphocyte"}, {"i": "MESH:D018414", "l": "CD8-Positive T-Lymphocytes"}, {"i": "SNOMEDCT:117539009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317190", "l": "Cells.CD2+CD7+"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "CL:0002465", "l": "CD11b-positive dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334115", "l": "Set of Ch2 cholinergic cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333850", "l": "Hairy cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182787", "l": "Epithelial cell of nephron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1515186", "l": "Gamma/Delta T-Lymphocyte"}, {"i": "NCIT:C39585", "l": "Gamma/Delta T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000443", "l": "calcitonin secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267858", "l": "Lymphocyte positive for both CD8 antigen and CD57 antigen"}, {"i": "SNOMEDCT:117541005"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0002180", "l": "mucous cell of stomach"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086542", "l": "Lentivirus Vector CCR5 shRNA/TRIM5alpha/TAR Decoy-transduced Autologous CD34-positive Hematopoietic Progenitor Cells"}, {"i": "NCIT:C123931", "l": "Lentivirus Vector CCR5 shRNA/TRIM5alpha/TAR Decoy-transduced Autologous CD34-positive Hematopoietic Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511439", "l": "CH01"}, {"i": "NCIT:C20285", "l": "CH01"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333827", "l": "Monocytoid cell"}, {"i": "SNOMEDCT:35907002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513745", "l": "Multinucleated Keratinocyte"}, {"i": "NCIT:C36748", "l": "Multinucleated Keratinocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000546", "l": "T-helper 2 cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170924", "l": "Leukocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000453", "l": "Langerhans cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186954", "l": "Promyelocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3642149", "l": "Rivogenlecleucel"}, {"i": "UMLS:C4722512", "l": "BPX-501"}, {"i": "NCIT:C105395", "l": "Rivogenlecleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002603", "l": "astrocyte of the cerebellum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3897770", "l": "Reactive Amniocyte"}, {"i": "NCIT:C118138", "l": "Reactive Amniocyte"}]} +{"type": "biolink:Cell", "ic": "74.378130331796413", "identifiers": [{"i": "UMLS:C1514100", "l": "Neoplastic Spindle Cell"}, {"i": "NCIT:C36823", "l": "Neoplastic Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186823", "l": "Monocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "69.63974591466652", "identifiers": [{"i": "CL:0010012", "l": "cerebral cortex neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001576", "l": "oral mucosa squamous cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519740", "l": "UC01 Cell Line"}, {"i": "NCIT:C20305", "l": "UC01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900004", "l": "Autologous CD171-specific CAR-CD28 zeta-4-1-BB-EGFRt-expressing T Lymphocytes"}, {"i": "NCIT:C119746", "l": "Autologous CD171-specific CAR-CD28 zeta-4-1-BB-EGFRt-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317200", "l": "Cells.CD59"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002089", "l": "group 2 innate lymphoid cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000083", "l": "hair follicle dermal papilla cell of scalp"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228076", "l": "Primitive neuroblastic cell"}, {"i": "SNOMEDCT:20367003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0814996", "l": "Stomach cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0334140", "l": "Rod shaped microglia"}, {"i": "SNOMEDCT:42723004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710678", "l": "Wolffian Duct Cell"}, {"i": "NCIT:C43425", "l": "Wolffian Duct Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744782", "l": "Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR"}, {"i": "NCIT:C156382", "l": "Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011011", "l": "intermediate mesodermal cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1881535", "l": "Malignant Apocrine Cell"}, {"i": "NCIT:C62500", "l": "Malignant Apocrine Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682613", "l": "hepatocyte structure"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0023005", "l": "Langerhans cell"}, {"i": "NCIT:C12584", "l": "Langerhans Cell"}, {"i": "MESH:D007801", "l": "Langerhans Cells"}, {"i": "SNOMEDCT:76322003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001020", "l": "mature CD8_alpha-low Langerhans cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323727", "l": "Cardiac neural crest cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163708", "l": "Erythrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979642", "l": "Blast cell positive for CD25 antigen"}, {"i": "SNOMEDCT:724263000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515267", "l": "Tendinocyte"}, {"i": "NCIT:C33747", "l": "Tendinocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0598800", "l": "Pericytes"}, {"i": "NCIT:C12656", "l": "Pericyte"}, {"i": "MESH:D020286", "l": "Pericytes"}, {"i": "SNOMEDCT:34773004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515140", "l": "T-Lymphocyte with a Post-Thymic Immunophenotype"}, {"i": "NCIT:C39573", "l": "T-Lymphocyte with a Post-Thymic Immunophenotype"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2363032", "l": "Epithelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023094", "l": "tufted pyramidal neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173437", "l": "Monocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000317", "l": "sebum secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023053", "l": "spinal interneuron synapsing Betz cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337416", "l": "Chromophilic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682642", "l": "fixed or free macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334101", "l": "Regular atrial cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333840", "l": "Non-lipid histiocyte"}, {"i": "SNOMEDCT:42766006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641794", "l": "Gene-Modified HIV-Protected Hematopoietic Stem Cells"}, {"i": "NCIT:C104415", "l": "Gene-Modified HIV-Protected Hematopoietic Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157601", "l": "CD5+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317191", "l": "Cells.CD227"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002301", "l": "type B synovial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001596", "l": "salivary gland glandular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314585", "l": "Diffusion chamber colony-forming unit"}, {"i": "SNOMEDCT:445324003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483182", "l": "CD16+CD56+CD3-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182692", "l": "Clear cell of eccrine sweat gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163689", "l": "Erythrocyte inclusion bodies | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300403", "l": "Cells.chromosome region 5q31"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000287", "l": "eye photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12626", "l": "Amacrine Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5164683", "l": "FISH probe target locus | Blood or Tissue | Molecular pathology"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4512518", "l": "Entire infantile diploetic mastoid cell"}, {"i": "SNOMEDCT:727281006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333553", "l": "Type L enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000143", "l": "guidepost cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229642", "l": "Eosinophilic myelocyte"}, {"i": "SNOMEDCT:90961003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000645", "l": "pituicyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300401", "l": "Cells.chromosome region 7q31"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522214", "l": "Endocrine Pancreas - Islet Cell of Langerhans - Beta Cell (MMHCC)"}, {"i": "NCIT:C22642", "l": "Mouse Beta Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182804", "l": "Epithelial cell of endocrine pancreas"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340275", "l": "Microfold cell of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512490", "l": "Horizontal Cell of Cajal"}, {"i": "NCIT:C32745", "l": "Horizontal Cell of Cajal"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000468", "l": "neuroglioblast (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C2985477", "l": "Exocrine Pancreas Cell"}, {"i": "NCIT:C93173", "l": "Exocrine Pancreas Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186735", "l": "Leukocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0301868", "l": "Committed cell"}, {"i": "SNOMEDCT:55484008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229545", "l": "Pituicyte"}]} +{"type": "biolink:Cell", "ic": "70.634878722804729", "identifiers": [{"i": "CL:0000192", "l": "smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002625", "l": "seminiferous tubule epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157669", "l": "CD8+CD38+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009041", "l": "tuft cell of colon"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002517", "l": "interrenal epinephrin secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327878", "l": "Type S enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001066", "l": "kidney arteriole smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325384", "l": "Epithelial cell of urethra"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002071", "l": "enterocyte of epithelium of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002024", "l": "Kit-positive megakaryocyte progenitor cell"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000206", "l": "chemoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000989", "l": "CD11c-low plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1518220", "l": "Malignant Neuroendocrine Large Cell"}, {"i": "NCIT:C36821", "l": "Malignant Neuroendocrine Large Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0443780", "l": "Rhytiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513754", "l": "Multivacuolated Brown Fat Cell"}, {"i": "NCIT:C36968", "l": "Multivacuolated Brown Fat Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684133", "l": "neure"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "NCIT:C12536", "l": "Natural Killer Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000112", "l": "columnar neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350466", "l": "Natural Killer T-Cells"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000492", "l": "CD4-positive helper T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945934", "l": "Cells.CD8+CD11b+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1648298", "l": "Cells.CD7+CD8+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12631", "l": "Type II Hair Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002152", "l": "columnar cell of endocervix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001214", "l": "arcuate artery smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000485", "l": "mucosal type mast cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1882043", "l": "Neoplastic Apocrine Cell"}, {"i": "NCIT:C62494", "l": "Neoplastic Apocrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000592", "l": "large luteal cell"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:1000746", "l": "glomerular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4037921", "l": "Cells.CD8+CD3-"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:1001593", "l": "parathyroid glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763556", "l": "Autologous CT-RCC-1 HERV-E-TCR-transduced-HLA-A11-restricted CD8+/CD34t+ T-cells"}, {"i": "NCIT:C157344", "l": "Autologous CT-RCC-1 HERV-E-TCR-transduced-HLA-A11-restricted CD8+/CD34t+ T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163720", "l": "Erythrocytes | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000047", "l": "neuronal stem cell"}]} +{"type": "biolink:Cell", "ic": "65.966617770996095", "identifiers": [{"i": "CL:0008001", "l": "hematopoietic precursor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687465", "l": "Allogeneic CD123-specific Universal CAR123-expressing T-lymphocytes"}, {"i": "NCIT:C146806", "l": "Allogeneic CD123-specific Universal CAR123-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517820", "l": "Mouse Pro-T-Lymphocyte"}, {"i": "NCIT:C22581", "l": "Mouse Pro-T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4240447", "l": "Vascular smooth muscle cell of abdominal aorta"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000479", "l": "Purkinje myocyte of atrioventricular node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520104", "l": "WA09 Cell Line"}, {"i": "NCIT:C20310", "l": "WA09"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326742", "l": "Goblet cell of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640934", "l": "Adenovirus Encoding Tyrosinase/MART-1/MAGEA6-transduced Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C102753", "l": "Adenovirus Encoding Tyrosinase/MART-1/MAGEA6-transduced Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157462", "l": "CD3+CD8+CD45RO+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000986", "l": "IgM plasma cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267951", "l": "Lymphocyte positive for CD59 antigen"}, {"i": "SNOMEDCT:117392001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324343", "l": "Type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154483", "l": "Basophils | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002259", "l": "neuroepithelial stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170955", "l": "Leukocytes other | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230517", "l": "Dividing cell"}, {"i": "SNOMEDCT:35853008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520165", "l": "Xanthomatous Astrocyte"}, {"i": "NCIT:C37139", "l": "Xanthomatous Astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163446", "l": "Eosinophils | Stool | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510923", "l": "Blast cell positive for CD2 antigen"}, {"i": "SNOMEDCT:725175007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325226", "l": "Transitional myocyte of interventricular septum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511280", "l": "Bowenoid Cell"}, {"i": "NCIT:C36755", "l": "Bowenoid Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000358", "l": "sphincter associated smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1711385", "l": "Primitive Malignant Skeletal Muscle Cell"}, {"i": "NCIT:C49202", "l": "Primitive Malignant Skeletal Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1000353", "l": "microfold cell of epithelium of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009094", "l": "endothelial cell of hepatic portal vein"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0000584", "l": "enterocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086008", "l": "Autologous Interferon-producing Killer Dendritic Cells"}, {"i": "NCIT:C125667", "l": "Autologous Interferon-producing Killer Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002027", "l": "CD9-positive, CD41-positive megakaryocyte cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2983758", "l": "NY-ESO-1 Reactive TCR Retroviral Vector Transduced Autologous PBL"}, {"i": "NCIT:C90559", "l": "NY-ESO-1 Reactive TCR Retroviral Vector Transduced Autologous PBL"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225368", "l": "Chondroblasts"}, {"i": "NCIT:C32306", "l": "Chondroblast"}, {"i": "SNOMEDCT:17512002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0946056", "l": "Epithelial cells.extrarenal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000514", "l": "smooth muscle myoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000417", "l": "myoepithelial cell of sweat gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513018", "l": "Neoplastic Mature-Appearing Adipocyte"}, {"i": "NCIT:C36976", "l": "Neoplastic Mature-Appearing Adipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519477", "l": "Splenocyte"}, {"i": "NCIT:C12951", "l": "Splenocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522171", "l": "Lung - Clara Cell (MMHCC)"}, {"i": "NCIT:C22603", "l": "Mouse Club Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1721028", "l": "Blastocyst Inner Cell Mass"}, {"i": "MESH:D053624", "l": "Blastocyst Inner Cell Mass"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000604", "l": "retinal rod cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161802", "l": "Cytoplasmic CD3 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0036770", "l": "Structure of sertoli cell"}, {"i": "NCIT:C12595", "l": "Sertoli Cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1879555", "l": "Adenocarcinoma Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C61145", "l": "Adenocarcinoma Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336898", "l": "Hemal stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697027", "l": "Cells.CD27-CD45RO+CD62L-CCR7-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0933800", "l": "Microvillus columnar cell"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0002315", "l": "supporting cell of cochlea"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0815000", "l": "neuroblastoma cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338276", "l": "Microfold cell of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157548", "l": "CD4+CD45RA+CD45RB+CD45RC+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0282560", "l": "Caco-2 Cells"}, {"i": "NCIT:C12912", "l": "Caco-2 Cell"}, {"i": "MESH:D018938", "l": "Caco-2 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3898559", "l": "MAGE-A3/12-specific TCR Gene-transduced Autologous PBLs"}, {"i": "NCIT:C116862", "l": "MAGE-A3/12-specific TCR Gene-transduced Autologous PBLs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516949", "l": "Epithelioid Melanocyte"}, {"i": "NCIT:C36870", "l": "Epithelioid Melanocyte"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0002132", "l": "stromal cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161796", "l": "Cytoplasmic CD179a blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724836", "l": "Autologous PD-1 Antibody-expressing Mesothelin-specific CAR-T Cells"}, {"i": "NCIT:C148133", "l": "Autologous PD-1 Antibody-expressing Mesothelin-specific CAR-T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000353", "l": "blastoderm cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511241", "l": "Bone Marrow-Homing Plasma Cell"}, {"i": "NCIT:C41032", "l": "Bone Marrow-Homing Plasma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005019", "l": "pancreatic epsilon cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000328", "l": "myelin accumulating cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2360256", "l": "Anulocyte"}, {"i": "SNOMEDCT:724194007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5165605", "l": "Germ cells.immature | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D009836", "l": "Oligodendroglia"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1531511"}]} +{"type": "biolink:Cell", "ic": "72.787515020653174", "identifiers": [{"i": "CL:0001035", "l": "bone cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000314", "l": "gastric cardiac gland goblet cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000107", "l": "autonomic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0028876", "l": "Odontoclasts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000831", "l": "mast cell progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267877", "l": "Lymphocyte positive for both CD16 antigen and CD56 antigen and negative for CD3 antigen"}, {"i": "SNOMEDCT:116841008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514584", "l": "Pseudo-Gaucher Cell"}, {"i": "NCIT:C37078", "l": "Pseudo-Gaucher Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157288", "l": "CD126 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002536", "l": "epithelial cell of amnion"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C4055262", "l": "Central Memory Immune Cell"}, {"i": "NCIT:C122730", "l": "Central Memory Immune Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000756", "l": "type 4 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007006", "l": "chordamesodermal cell"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0000680", "l": "muscle precursor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000708", "l": "leptomeningeal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338967", "l": "Interleukin 12-activated natural killer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520105", "l": "Wisconsin H13 stem cell line"}, {"i": "NCIT:C20311", "l": "WA13"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333843", "l": "Myeloma cell"}, {"i": "SNOMEDCT:64446007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325557", "l": "Serous cell of epithelium of lobular bronchiole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183327", "l": "Mesothelial cell of visceral peritoneum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163543", "l": "Epithelial cells | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:2000008", "l": "microvascular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002418", "l": "hemangioblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000554", "l": "gastrin stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229643", "l": "Eosinophilic metamyelocyte"}, {"i": "SNOMEDCT:80036001"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514106", "l": "Neoplastic Syncytiotrophoblastic Cell"}, {"i": "NCIT:C36906", "l": "Neoplastic Syncytiotrophoblastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546499", "l": "P.B. plasma cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513969", "l": "Neoplastic Fusiform Cell"}, {"i": "NCIT:C36963", "l": "Neoplastic Fusiform Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4050617", "l": "Autologous HPV-16/18 E6/E7-specific TGF-beta-resistant T Lymphocytes"}, {"i": "NCIT:C121537", "l": "Autologous HPV-16/18 E6/E7-specific TGF-beta-resistant T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725932", "l": "Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa"}, {"i": "NCIT:C150698", "l": "Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5169606", "l": "Irregularly contracted cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023119", "l": "basket morphology L2/3 pvalb-like sst GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332614", "l": "Transitional myocyte of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514016", "l": "Neoplastic Medium-Sized Myeloblast with Basophilic Agranular Cytoplasm"}, {"i": "NCIT:C37177", "l": "Neoplastic Medium-Sized Myeloblast with Basophilic Agranular Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000933", "l": "type II NK T cell secreting interleukin-4"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518177", "l": "Population of all cleft lymphocytes in portion of fluid"}, {"i": "SNOMEDCT:726766006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177454", "l": "Plasma cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005001", "l": "iridoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086978", "l": "iAPA-based Dendritic Cells/Cytotoxic T Lymphocytes"}, {"i": "NCIT:C123922", "l": "iAPA-based Dendritic Cells/Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171724", "l": "Lymphocytes/100 cells | Lymph node | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0682638", "l": "Memory B-Lymphocyte"}, {"i": "NCIT:C13123", "l": "Memory B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038492", "l": "Cells.diploid.G1 phase"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171712", "l": "Lymphocytes.vacuolated | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000783", "l": "multinucleated phagocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267973", "l": "Lymphocyte positive for CD82 antigen"}, {"i": "SNOMEDCT:117413009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1265905", "l": "Oat cell"}, {"i": "NCIT:C36762", "l": "Oat Cell"}, {"i": "SNOMEDCT:125409002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545588", "l": "Blood plasmacytic cell"}]} +{"type": "biolink:Cell", "ic": "76.125169645393314", "identifiers": [{"i": "CL:0000457", "l": "biogenic amine secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157269", "l": "CD11b cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "CL:0000152", "l": "exocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697032", "l": "Cells.CD38+IgM+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325541", "l": "Fibroblast of dense regular elastic tissue"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001602", "l": "cerebral cortex endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2348359", "l": "EGFRBi-Armed Autologous T Cells"}, {"i": "NCIT:C71536", "l": "EGFRBi-Armed Autologous T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317558", "l": "Agranular neutrophil"}, {"i": "SNOMEDCT:726589001"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1517545", "l": "Giant Neoplastic Germ Cell"}, {"i": "NCIT:C37134", "l": "Giant Neoplastic Germ Cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000412", "l": "polyploid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4699464", "l": "Monotypic kappa plasma cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157382", "l": "CD20+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000388", "l": "tendon cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1514095", "l": "Neoplastic Small to Medium-Sized Lymphocyte"}, {"i": "NCIT:C36990", "l": "Neoplastic Small to Medium-Sized Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155172", "l": "Blasts | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002390", "l": "uninucleate blastconidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4505105", "l": "Oligodendrocyte Precursor Cells"}, {"i": "MESH:D000073637", "l": "Oligodendrocyte Precursor Cells"}]} +{"type": "biolink:Cell", "ic": "76.711710297129045", "identifiers": [{"i": "CL:0000160", "l": "goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652431", "l": "limbal stem cells, autologous"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596698", "l": "heterokaryon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882860", "l": "Cells.CD4+CD25+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177473", "l": "Plasma cells/100 leukocytes | Dialysis fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0010005", "l": "atrioventricular bundle cell"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "UMLS:C1519006", "l": "Peripheral (Post-Thymic) T-Lymphocyte and Natural Killer Cell"}, {"i": "NCIT:C39568", "l": "Peripheral (Post-Thymic) T-Lymphocyte and Natural Killer Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440316", "l": "Cells.CD45RB"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001430", "l": "urethra urothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440300", "l": "Cells.CD36"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512084", "l": "Ductal Carcinoma Cell"}, {"i": "NCIT:C36858", "l": "Ductal Carcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0444746", "l": "Endocyte"}, {"i": "SNOMEDCT:262506003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882836", "l": "CD3+CD8+ cell"}, {"i": "SNOMEDCT:732280007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440280", "l": "Cells.CD3+CD38+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182667", "l": "Endo-epithelial cell of tympanic part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1182635", "l": "Follicular cell of ovary"}, {"i": "NCIT:C32620", "l": "Follicular Ovarian Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000496", "l": "green sensitive photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1179135", "l": "Type IV taste bud cell"}, {"i": "NCIT:C13185", "l": "Taste Bud Basal Cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C3641722", "l": "Effector T-Lymphocyte"}, {"i": "NCIT:C104083", "l": "Effector T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440255", "l": "Cells.CD138"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002286", "l": "type II taste cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002264", "l": "type A cell of stomach"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001223", "l": "interlobulary vein endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441344", "l": "100 lymphocytes.small"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514302", "l": "Precursor Natural Killer Cell"}, {"i": "NCIT:C39300", "l": "Precursor Natural Killer Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440141", "l": "Blasts.CD13"}]} +{"type": "biolink:Cell", "ic": "70.373142106726959", "identifiers": [{"i": "UMLS:C1518293", "l": "Neuron, Neuroepithelial Cell, and Supporting Cell of the Nervous System"}, {"i": "NCIT:C41405", "l": "Neuron, Neuroepithelial Cell, and Supporting Cell of the Nervous System"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225360", "l": "Myofibroblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924225", "l": "Cells.CD45+CD103+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2347368", "l": "Nucleated Blood Cell"}, {"i": "NCIT:C73126", "l": "Nucleated Blood Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517881", "l": "Light Cell"}, {"i": "NCIT:C13148", "l": "Light Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182506", "l": "Synovial cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000724", "l": "heterocyst"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002048", "l": "late pro-B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4284514", "l": "Cells.chromosome region 17p13.1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001078", "l": "APUD Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174623", "l": "Neutrophils | Prostatic fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000611", "l": "eosinophil progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514035", "l": "Neoplastic Myeloblast with Abundant Basophilic Cytoplasm"}, {"i": "NCIT:C37176", "l": "Neoplastic Myeloblast with Abundant Basophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D016539", "l": "Reed-Sternberg Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4080738", "l": "human cord blood hematopoietic progenitor cell 500000000 in 25 mL INTRAVENOUS INJECTION, SUSPENSION [CORDCYTE]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0486534", "l": "Cells other than spermatozoa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179522", "l": "Reticulocytes.high light scatter | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "55.878866893815221", "identifiers": [{"i": "CL:0000226", "l": "single nucleate cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1708905", "l": "Malignant Skeletal Muscle Cell"}, {"i": "NCIT:C49197", "l": "Malignant Skeletal Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000770", "l": "band form basophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002545", "l": "thoracic aorta endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013602", "l": "T-Lymphocytes, Cytotoxic"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522158", "l": "Leukocyte - Myeloblast (MMHCC)"}, {"i": "NCIT:C22589", "l": "Mouse Myeloblast"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0001068", "l": "ILC1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229615", "l": "Pyroninophilic lymphoid cell"}, {"i": "SNOMEDCT:20472006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157622", "l": "CD57 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325214", "l": "Submandibular ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1708248", "l": "Gonadotrophs"}, {"i": "SNOMEDCT:44490009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001213", "l": "arcuate artery endothelial cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1708888", "l": "Malignant Lipocyte"}, {"i": "NCIT:C48877", "l": "Malignant Lipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002450", "l": "tether cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440234", "l": "Cell positive for CD102 protein"}, {"i": "SNOMEDCT:725326002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000662", "l": "neuroglioblast (sensu Nematoda)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0683194", "l": "Male gonocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882053", "l": "Neoplastic Ghost Cell"}, {"i": "NCIT:C62111", "l": "Neoplastic Ghost Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733675", "l": "Autologous PRAME-targeting TCR-modified T Cells MDG1011"}, {"i": "NCIT:C156136", "l": "Autologous PRAME-targeting TCR-modified T Cells MDG1011"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009053", "l": "stromal cell of anorectum lamina propria"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180579", "l": "Segmented neutrophils | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163540", "l": "Epithelial cells | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228129", "l": "Outer mesothelial cell"}, {"i": "SNOMEDCT:90459004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D052939", "l": "Schizonts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717630", "l": "Bizarre cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276852", "l": "Entire parathyroid transitional cell"}, {"i": "SNOMEDCT:177728006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000963", "l": "Bm3-delta B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4053742", "l": "Anti-thyroglobulin mTCR-transduced Autologous Peripheral Blood Lymphocytes"}, {"i": "NCIT:C121552", "l": "Anti-thyroglobulin mTCR-transduced Autologous Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708924", "l": "Malignant Transitional Cell with Large Nucleus and Small Nucleolus"}, {"i": "NCIT:C54554", "l": "Malignant Transitional Cell with Large Nucleus and Small Nucleolus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518990", "l": "Periosteal cell"}, {"i": "NCIT:C33305", "l": "Periosteal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154539", "l": "B-cell CD27 and IgD subsets | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598091", "l": "stable cell line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1116267", "l": "Cells.CD3+IL2R1+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682544", "l": "neutrophilic cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1512333", "l": "Hamster Cell Line"}, {"i": "NCIT:C20221", "l": "Hamster Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002567", "l": "light melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001077", "l": "ILC1, human"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1515879", "l": "Activated Lymphocyte"}, {"i": "NCIT:C32049", "l": "Activated Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000375", "l": "myocardial endocrine cell of septal division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516899", "l": "Eosinophilic Brown Fat Cell"}, {"i": "NCIT:C36969", "l": "Eosinophilic Brown Fat Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684961", "l": "Tabelecleucel"}, {"i": "NCIT:C143140", "l": "Tabelecleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0205868", "l": "Perineuronal satellite cell"}, {"i": "NCIT:C12619", "l": "Perineuronal Satellite Cell"}, {"i": "NCIT:C33516", "l": "Satellite Cell"}, {"i": "MESH:D027161", "l": "Satellite Cells, Perineuronal"}, {"i": "SNOMEDCT:28922004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000910", "l": "cytotoxic T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440371", "l": "Cells.CD95"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440390", "l": "Cells.hyperdiploid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157443", "l": "CD3+CD4+CD28+HLA DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000368", "l": "transitional myocyte of anterior division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023046", "l": "L6b subplate glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "ic": "46.868458073747128", "identifiers": [{"i": "CL:0000010", "l": "cultured cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253020", "l": "Set of type B cells of pancreatic islet"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883692", "l": "Small to Medium Size Adenocarcinoma Cell with Oval Nucleus"}, {"i": "NCIT:C62176", "l": "Small to Medium Size Adenocarcinoma Cell with Oval Nucleus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155169", "l": "Blasts | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0000886", "l": "Acanthocytes"}, {"i": "NCIT:C12523", "l": "Acanthocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163710", "l": "Erythrocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000835", "l": "myeloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161797", "l": "Cytoplasmic CD179a blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350247", "l": "Monocyte-Macrophage Progenitor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170901", "l": "Leukemia markers | Pleural fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0206131", "l": "Adipocytes"}, {"i": "NCIT:C32991", "l": "Lipocyte"}, {"i": "MESH:D017667", "l": "Adipocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4054455", "l": "Multinucleated Hepatocyte"}, {"i": "NCIT:C120900", "l": "Multinucleated Hepatocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1708871", "l": "Malignant Endothelial Cell"}, {"i": "NCIT:C47834", "l": "Malignant Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C32210", "l": "Bladder Urothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267857", "l": "Lymphocyte positive for both CD8 antigen and CD56 antigen"}, {"i": "SNOMEDCT:116816001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2360583", "l": "Transfuse packed erythrocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267932", "l": "Lymphocyte positive for CD45RO antigen"}, {"i": "SNOMEDCT:117375005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023021", "l": "static gamma motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4707434", "l": "Technetium (99m-Tc) exametazime labeled leukocytes"}, {"i": "SNOMEDCT:765339002"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "UMLS:C1514101", "l": "Neoplastic Squamous Cell"}, {"i": "NCIT:C36760", "l": "Neoplastic Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000937", "l": "pre-natural killer cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1280517", "l": "Entire exocervical epithelial cell"}, {"i": "SNOMEDCT:255268008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5156214", "l": "Burr cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325183", "l": "Type 1 vestibular sensory cell of stato-acoustic epithelium"}]} +{"type": "biolink:Cell", "ic": "73.153983691316824", "identifiers": [{"i": "UMLS:C1514048", "l": "Neoplastic Neuroepithelial Cell"}, {"i": "NCIT:C37125", "l": "Neoplastic Neuroepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708918", "l": "Malignant Squamoid Cell"}, {"i": "NCIT:C47808", "l": "Malignant Squamoid Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000227", "l": "binucleate cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009031", "l": "T cell of appendix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000649", "l": "prickle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170933", "l": "Leukocytes | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333798", "l": "Poikilocyte (cell)"}, {"i": "SNOMEDCT:397020000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267819", "l": "Lymphocyte positive for both CD3 antigen and CD26 antigen"}, {"i": "SNOMEDCT:117520004"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023051", "l": "vascular leptomeningeal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882801", "l": "Cells.CD16+CD57+/100 cells"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "UMLS:C1516093", "l": "Atypical Epithelial Cell"}, {"i": "NCIT:C36914", "l": "Atypical Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173493", "l": "Mononuclear cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C3811668", "l": "Circulating Plasma Cell"}, {"i": "NCIT:C114278", "l": "Circulating Plasma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171584", "l": "Lymphoblasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002478", "l": "F4/80-negative adipose macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12645", "l": "Anterior Horn Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009026", "l": "enterocyte of appendix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002586", "l": "retinal pigment epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002409", "l": "mature Vgamma2-negative thymocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514019", "l": "Neoplastic Medium-Sized to Large Lymphocyte"}, {"i": "NCIT:C36992", "l": "Neoplastic Medium-Sized to Large Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3828683", "l": "Ovapuldencel-T"}, {"i": "NCIT:C113651", "l": "Ovapuldencel-T"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000462", "l": "adepithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002421", "l": "nucleated reticulocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329368", "l": "Autologous Bladder Cell Carcinoma RNAs/CD40L RNA Electroporated Autologous Matured Dendritic Cells"}, {"i": "NCIT:C129522", "l": "Autologous Bladder Cell Carcinoma RNAs/CD40L RNA Electroporated Autologous Matured Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4761416", "l": "Myeloid Stem Cell"}, {"i": "NCIT:C158542", "l": "Myeloid Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335231", "l": "Pulmonary interstitial fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002211", "l": "type I muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324444", "l": "Set of adrenergic cells in anterior reticular nucleus [C2]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0025201", "l": "melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726569", "l": "Autologous PD1-inhibiting Anti-CD19 4-1BB CAR T Cells"}, {"i": "NCIT:C151944", "l": "Autologous PD1-inhibiting Anti-CD19 4-1BB CAR T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171869", "l": "Macrophages | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545578", "l": "Neutrophils.hypogranulated"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000601", "l": "ureteral cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000544", "l": "slowly adapting mechanoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514716", "l": "Raji Cell"}, {"i": "NCIT:C36741", "l": "Raji Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170958", "l": "Leukocytes other | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696702", "l": "Cells.CD19+CD21-"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000170", "l": "glucagon secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326151", "l": "Set of erythrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684891", "l": "Anti-K-RAS G12V mTCR-transduced Autologous Peripheral Blood Lymphocytes"}, {"i": "NCIT:C142888", "l": "Anti-K-RAS G12V mTCR-transduced Autologous Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882061", "l": "Neoplastic Small Sex Cord-Stromal Cell"}, {"i": "NCIT:C61425", "l": "Neoplastic Small Sex Cord-Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000940", "l": "mucosal invariant T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328179", "l": "Enteric ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304490", "l": "Population of all blast cells in portion of fluid"}, {"i": "SNOMEDCT:719698008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507176", "l": "Cells.CD4+CD95+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000182", "l": "malpighian tubule tip cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1956422", "l": "Cancer Stem Cells"}, {"i": "NCIT:C68706", "l": "Cancer Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009039", "l": "colon goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181478", "l": "Spherocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440308", "l": "Cells.CD42a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229213", "l": "Rod cells of inner nuclear layer"}, {"i": "SNOMEDCT:34407003"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709190", "l": "Neoplastic Parathyroid Gland Chief Cell"}, {"i": "NCIT:C48268", "l": "Neoplastic Parathyroid Gland Chief Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000999", "l": "CD4-positive CD11b-positive dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167637", "l": "HLA Ab positive cells | Serum | HLA antigens"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000424", "l": "excretory cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514076", "l": "Neoplastic Round Cell"}, {"i": "NCIT:C37099", "l": "Neoplastic Round Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1622423", "l": "polymorphonuclear granulocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175145", "l": "Nucleated cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641685", "l": "Anti-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocyte Cells"}, {"i": "NCIT:C104006", "l": "Anti-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocyte Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0772149", "l": "red blood cells,dehydrated"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D026602", "l": "Nitrergic Neurons"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733641", "l": "Autologous Anti-BCMA CAR-transduced T-cells KITE-585"}, {"i": "NCIT:C155883", "l": "Autologous Anti-BCMA CAR-transduced T-cells KITE-585"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518161", "l": "Population of all isolated head spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:725385000"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0015000", "l": "cranial motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163715", "l": "Erythrocytes | Dialysis fluid peritoneal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518985", "l": "Perineurial Cell"}, {"i": "NCIT:C41442", "l": "Perineurial Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1001064", "l": "kidney artery smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072762", "l": "Cells.CCND1 gene"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000730", "l": "leading edge cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175148", "l": "Nucleated cells | Bronchial | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001434", "l": "olfactory bulb interneuron"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1001433", "l": "epithelial cell of exocrine pancreas"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002358", "l": "pyrenocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440323", "l": "Cells.CD49c"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C32600", "l": "Fibrous Astrocyte"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0000311", "l": "keratin accumulating cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000118", "l": "basket cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827031", "l": "Activated Marrow Infiltrating Lymphocytes"}, {"i": "NCIT:C111759", "l": "Activated Marrow Infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522445", "l": "Interdigitating Dendritic Cell"}, {"i": "NCIT:C38336", "l": "Interdigitating Dendritic Cell"}, {"i": "SNOMEDCT:24333000"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000550", "l": "kidney papillary duct principal epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001592", "l": "gall bladder glandular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267799", "l": "CYCD3+ lymphocyte"}, {"i": "SNOMEDCT:117503003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157513", "l": "CD38+CD138+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:1000891", "l": "kidney arterial blood vessel cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5187191", "l": "Platelets^BPU"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000883", "l": "thymic cortical macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000942", "l": "thymic plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002539", "l": "aortic smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002098", "l": "regular cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440263", "l": "Cells.CD17"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000412", "l": "endothelial cell of arteriole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013104", "l": "Spheroplasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173498", "l": "Mononuclear cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154484", "l": "Basophils | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161800", "l": "Cytoplasmic CD22 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322675", "l": "CD8+CD38+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517354", "l": "GE01 cell line"}, {"i": "NCIT:C20256", "l": "GE01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329371", "l": "Autologous Monocytes"}, {"i": "NCIT:C129877", "l": "Autologous Monocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514890", "l": "Reserve Cell"}, {"i": "NCIT:C33916", "l": "Reserve Cell"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C1518177", "l": "Malignant Epithelial Large Cell"}, {"i": "NCIT:C36822", "l": "Malignant Epithelial Large Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440363", "l": "Cells.CD86"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440288", "l": "Cells.CD3+CD8+CD45RO+CD45RA+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0009025", "l": "mesothelial cell of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267853", "l": "Lymphocyte positive for CD7 antigen and negative for CD3 antigen"}, {"i": "SNOMEDCT:116840009"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002248", "l": "pluripotent stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517356", "l": "Geron H13 stem cell line"}, {"i": "NCIT:C20259", "l": "GE13"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4240449", "l": "Vascular smooth muscle cell of peripheral artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000335", "l": "enterocyte of epithelium of intestinal villus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000300", "l": "fibroblast of outer membrane of prostatic capsule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267876", "l": "Lymphocyte positive for both CD16 antigen and CD56 antigen"}, {"i": "SNOMEDCT:117555002"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513958", "l": "Neoplastic Ependymal Cell"}, {"i": "NCIT:C37143", "l": "Neoplastic Ependymal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440319", "l": "Cells.CD47"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000346", "l": "enterocyte of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267854", "l": "Lymphocyte positive for both CD8 antigen and CD25 antigen"}, {"i": "SNOMEDCT:116735005"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000531", "l": "primary sensory neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1718726", "l": "Cells.ZAP70"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350331", "l": "Retinal Neurons"}, {"i": "MESH:D055351", "l": "Retinal Neurons"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000826", "l": "pro-B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000090", "l": "female germ line stem cell (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709168", "l": "Neoplastic Chromaffin Cell"}, {"i": "NCIT:C48559", "l": "Neoplastic Chromaffin Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166508", "l": "Hematopoietic progenitor cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1883703", "l": "Large Melanoma Cell"}, {"i": "NCIT:C62400", "l": "Large Melanoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510901", "l": "Blast cell positive for CD117 antigen"}, {"i": "SNOMEDCT:724245000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4522890", "l": "T Lymphocytes, Cultured, Autologous, Genetically-modified"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:2000074", "l": "splenocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596208", "l": "brain cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332989", "l": "Goblet cell of epithelium of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1442179", "l": "Amniotic Fluid cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175151", "l": "Nucleated cells | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001597", "l": "seminal vesicle glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511177", "l": "Neoplastic Piloid Astrocyte"}, {"i": "NCIT:C37138", "l": "Neoplastic Piloid Astrocyte"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000800", "l": "mature gamma-delta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979673", "l": "Cells.CD4+CD7-CD26-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955255", "l": "Erythrocyte clumps"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:3000004", "l": "peripheral sensory neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174628", "l": "Neutrophils.agranular | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002183", "l": "stem cell of gastric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229543", "l": "Pituitary hypertrophic amphophil cell"}, {"i": "SNOMEDCT:63926000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010002", "l": "epithelial cell of umbilical artery"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002490", "l": "organ of Corti supporting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D039901", "l": "Totipotent Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546500", "l": "P.B. megakaryoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3829190", "l": "MART-1 Reactive CD8+ T-lymphocytes"}, {"i": "NCIT:C111683", "l": "MART-1 Reactive CD8+ T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441374", "l": "Cells.C4"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002218", "l": "immature dendritic epithelial T cell precursor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229542", "l": "Pituitary amphophil cell"}, {"i": "SNOMEDCT:19992001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510887", "l": "Blast cell positive for CD126 antigen"}, {"i": "SNOMEDCT:724305007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2346933", "l": "Malignant Epithelioid Osteoblast"}, {"i": "NCIT:C67523", "l": "Malignant Epithelioid Osteoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514077", "l": "Neoplastic Round Cell with Lipomatous Differentiation"}, {"i": "NCIT:C37102", "l": "Neoplastic Round Cell with Lipomatous Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174612", "l": "Neutrophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12644", "l": "Motor Neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000312", "l": "bronchial goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000693", "l": "kidney interstitial fibrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304493", "l": "Population of all target cells in portion of fluid"}, {"i": "SNOMEDCT:719695006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000251", "l": "extramedullary cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496150", "l": "A4 noradrenaline cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896657", "l": "Anti-CD3 OKT3/Humanized Anti-GD2 3F8 Bispecific Antibody-activated T Lymphocytes"}, {"i": "NCIT:C116330", "l": "Anti-CD3 OKT3/Humanized Anti-GD2 3F8 Bispecific Antibody-activated T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:1000279", "l": "smooth muscle cell of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0949376", "l": "Perineuronal Oligodendroglia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002017", "l": "Kit-negative, Ly-76 high orthochromatophilic erythroblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1978098", "l": "Prekeratocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009030", "l": "enteroendocrine cell of appendix"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514733", "l": "Rat Cell Line"}, {"i": "NCIT:C20222", "l": "Rat Cell Line"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1514170", "l": "Pleomorphic Cell"}, {"i": "NCIT:C37111", "l": "Pleomorphic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000472", "l": "myoepithelial cell of tertiary lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C0018894", "l": "Helper-Inducer T-Lymphocyte"}, {"i": "NCIT:C12538", "l": "Helper-Inducer T-Lymphocyte"}, {"i": "MESH:D006377", "l": "T-Lymphocytes, Helper-Inducer"}, {"i": "SNOMEDCT:29594005"}, {"i": "SNOMEDCT:7944005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002126", "l": "CD25-positive, CD27-positive immature gamma-delta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322820", "l": "Vacuolar absorptive cell of epithelium of colon"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513741", "l": "Multilobated Lipoblast-Like Cell"}, {"i": "NCIT:C36971", "l": "Multilobated Lipoblast-Like Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709193", "l": "Neoplastic Perivascular Epithelioid Cell"}, {"i": "NCIT:C53681", "l": "Neoplastic Perivascular Epithelioid Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514994", "l": "Striated muscle cell"}, {"i": "NCIT:C33637", "l": "Striated Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002400", "l": "Fraction B/C precursor B cell"}]} +{"type": "biolink:Cell", "ic": "74.836269892493803", "identifiers": [{"i": "UMLS:C0004561", "l": "B-Lymphocytes"}, {"i": "NCIT:C12474", "l": "B-Lymphocyte"}, {"i": "MESH:D001402", "l": "B-Lymphocytes"}, {"i": "SNOMEDCT:112130006"}]} +{"type": "biolink:Cell", "ic": "64.27530379215159", "identifiers": [{"i": "CL:0002077", "l": "ecto-epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0872362", "l": "primitive cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520164", "l": "Xanthoma Cell"}, {"i": "NCIT:C36845", "l": "Xanthoma Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "NCIT:C12527", "l": "Erythroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000369", "l": "transitional myocyte of septal division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002026", "l": "CD34-negative, CD41-positive, CD42-positive megakaryocyte cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267785", "l": "Cells.CD27-IgD+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882908", "l": "Cell positive for CD61 antigen"}, {"i": "SNOMEDCT:116829001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1704617", "l": "Perivascular Epithelioid Cell"}, {"i": "NCIT:C45634", "l": "Perivascular Epithelioid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163555", "l": "Epithelial cells.squamous | Bronchoalveolar lavage | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4028003", "l": "alveolar capillary type 2 endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C32199", "l": "Beta Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4324141", "l": "Wasserhelle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0014355", "l": "Argentaffin Cell"}, {"i": "NCIT:C12575", "l": "Enterochromaffin Cell"}, {"i": "NCIT:C32140", "l": "Argentaffin Cell"}, {"i": "MESH:D004759", "l": "Enterochromaffin Cells"}, {"i": "SNOMEDCT:3789000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4288626", "l": "NK Cell-enriched Donor Lymphocytes"}, {"i": "NCIT:C127939", "l": "NK Cell-enriched Donor Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000776", "l": "immature neutrophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171666", "l": "Lymphocytes | Semen | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055459", "l": "Anti-GPC3-CAR Autologous T Lymphocytes"}, {"i": "NCIT:C121638", "l": "Anti-GPC3-CAR Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170930", "l": "Leukocytes | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013172", "l": "Spores, Fungal"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1510780", "l": "Adenocarcinoma Cell with Eosinophilic Granular Cytoplasm"}, {"i": "NCIT:C36880", "l": "Adenocarcinoma Cell with Eosinophilic Granular Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267905", "l": "Lymphocyte positive for CD32 antigen"}, {"i": "SNOMEDCT:117576007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157299", "l": "CD13+CD33+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1711279", "l": "Neoplastic Parathyroid Gland Oncocyte"}, {"i": "NCIT:C48272", "l": "Neoplastic Parathyroid Gland Oncocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001435", "l": "periglomerular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000949", "l": "IgD plasmablast"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0001658", "l": "visual pigment cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440140", "l": "Blasts.CD10"}]} +{"type": "biolink:Cell", "ic": "73.740524343052556", "identifiers": [{"i": "CL:0000164", "l": "enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000431", "l": "iridophore"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1882050", "l": "Neoplastic Epithelial Oval Cell"}, {"i": "NCIT:C60990", "l": "Neoplastic Epithelial Oval Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009028", "l": "intestinal crypt stem cell of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186974", "l": "Reticulocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268002", "l": "Lymphocyte positive for CD128 antigen"}, {"i": "SNOMEDCT:117442001"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001009", "l": "kidney efferent arteriole cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709102", "l": "Myopericyte"}, {"i": "NCIT:C51141", "l": "Myopericyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000471", "l": "myoepithelial cell of secondary lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2360310", "l": "Reticulocytes.high light scatter"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000360", "l": "microfold cell of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002579", "l": "omentum preadipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338017", "l": "Neuron of retina"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001032", "l": "cortical granule cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001030", "l": "CD117-positive common myeloid progenitor OR CD217-positive common lymphoid progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744702", "l": "Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19"}, {"i": "NCIT:C156271", "l": "Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327156", "l": "Enterocyte of epithelium proper of duodenum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0222678", "l": "Undifferentiated mesenchymal cell"}, {"i": "SNOMEDCT:75091002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000360", "l": "morula cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000806", "l": "DN2 thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979063", "l": "Blasts.CD1"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1455888", "l": "Atypical Glandular Cell"}, {"i": "NCIT:C36912", "l": "Atypical Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000447", "l": "epithelial cell of stratum germinativum of esophagus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000010", "l": "dermis blood vessel endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312865", "l": "Sensitized red cell"}, {"i": "SNOMEDCT:57722009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328498", "l": "Pacemaker cell of sinuatrial node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514203", "l": "Polygonal or Elongated Mononuclear Mesenchymal Cell"}, {"i": "NCIT:C36932", "l": "Polygonal or Elongated Mononuclear Mesenchymal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4524369", "l": "CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183428", "l": "Solocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512566", "l": "Hypolobated Neutrophil"}, {"i": "NCIT:C37172", "l": "Hypolobated Neutrophil"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000447", "l": "carbohydrate secreting cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0011020", "l": "neural progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183176", "l": "Set of aminergic cells in reticular formation"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001015", "l": "CD8_alpha-low Langerhans cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000050", "l": "Acanthocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1636284", "l": "Cord blood stem cell"}, {"i": "SNOMEDCT:419423006"}]} +{"type": "biolink:Cell", "ic": "42.844607239608848", "identifiers": [{"i": "CL:0000003", "l": "native cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0206513", "l": "Type 2 vestibular sensory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0001646", "l": "Adrenergic Fibers"}, {"i": "MESH:D000320", "l": "Adrenergic Fibers"}, {"i": "SNOMEDCT:361060001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5160255", "l": "Clue cells | XXX | Microbiology"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000044", "l": "brain microvascular endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254949", "l": "Nk Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511888", "l": "Population of all atypical lymphocytes in portion of fluid"}, {"i": "SNOMEDCT:726506006"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000823", "l": "immature natural killer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518223", "l": "Malignant Neuroendocrine Small Cell with Round Nucleus"}, {"i": "NCIT:C36853", "l": "Malignant Neuroendocrine Small Cell with Round Nucleus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229525", "l": "Endocrine Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157552", "l": "CD4+CD45RO+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267838", "l": "Lymphocyte negative for CD3 antigen and positive for CD16 antigen"}, {"i": "SNOMEDCT:117527001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157379", "l": "CD20 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009051", "l": "T cell of anorectum"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1516595", "l": "Classical Reed-Sternberg Cell"}, {"i": "NCIT:C39720", "l": "Classical Reed-Sternberg Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267803", "l": "FMC7+ lymphocyte"}, {"i": "SNOMEDCT:117507002"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514116", "l": "Neoplastic Trophoblastic Cell"}, {"i": "NCIT:C36803", "l": "Neoplastic Trophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000633", "l": "Hensen cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496266", "l": "B3 serotonin cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000984", "l": "IgA plasmablast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882939", "l": "CD8+HLA-DR+ cell"}, {"i": "SNOMEDCT:732282004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010001", "l": "stromal cell of bone marrow"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C0009013", "l": "Clone Cells"}, {"i": "NCIT:C16441", "l": "Cell Clone"}, {"i": "MESH:D002999", "l": "Clone Cells"}, {"i": "SNOMEDCT:47308002"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1510728", "l": "Abnormal Keratinocyte"}, {"i": "NCIT:C36766", "l": "Abnormal Keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696696", "l": "Cells.CD19+CD27+IgD+IgM+"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1518311", "l": "Nevus cell"}, {"i": "NCIT:C25585", "l": "Nevus Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163438", "l": "Eosinophils | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000877", "l": "splenic tingible body macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2964562", "l": "Viable CD34 cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483190", "l": "CD34+DR+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0242874", "l": "Muscle Fibers, Slow-Twitch"}, {"i": "NCIT:C12614", "l": "Slow-Twitch Muscle Fiber"}, {"i": "MESH:D018657", "l": "Muscle Fibers, Slow-Twitch"}, {"i": "SNOMEDCT:36499009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512553", "l": "Hypergranular Promyelocyte"}, {"i": "NCIT:C37073", "l": "Hypergranular Promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000085", "l": "stratified non keratinized epithelial stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514186", "l": "Pluripotent Bone Marrow Stem Cell"}, {"i": "NCIT:C33331", "l": "Pluripotent Bone Marrow Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0949667", "l": "Hurthle Cells"}, {"i": "NCIT:C33925", "l": "Thyroid Gland Oxyphil Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000881", "l": "perivascular macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882865", "l": "Cells.CD4+HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267806", "l": "LEU M3+ lymphocyte"}, {"i": "SNOMEDCT:117510009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002468", "l": "Gr1-low myeloid suppressor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007009", "l": "prechondroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953987", "l": "Type D cell of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979232", "l": "Blasts.CD34+CD117+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328210", "l": "Basal cell of epithelium of bronchus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000691", "l": "stellate interneuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000995", "l": "CD34-positive, CD38-positive common myeloid progenitor OR CD34-positive, CD38-positive common lymphoid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181452", "l": "S-phase cells | XXX | Molecular pathology"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333859", "l": "Convoluted cell"}, {"i": "SNOMEDCT:33873001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314588", "l": "Colony-Forming Units, Granulocyte-Erythroid-Macrophage-Megakaryocyte"}, {"i": "SNOMEDCT:444993001"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000378", "l": "supporting cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440056", "l": "Abnormal blood cells.CD7"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708859", "l": "Malignant Acantholytic Squamous Cell"}, {"i": "NCIT:C54236", "l": "Malignant Acantholytic Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924224", "l": "Cells.CD25+C69+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1517451", "l": "Glandular cell of stomach"}, {"i": "NCIT:C32655", "l": "Gastric Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516398", "l": "Cerebriform-Like Lymphocyte"}, {"i": "NCIT:C39708", "l": "Cerebriform-Like Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183361", "l": "Type-5 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325127", "l": "Type II enteric ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "CL:0000623", "l": "natural killer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000888", "l": "lymph node tingible body macrophage"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000891", "l": "foam cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009003", "l": "larval midgut cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709673", "l": "Primitive Malignant Skeletal Spindle Cell"}, {"i": "NCIT:C49201", "l": "Primitive Malignant Skeletal Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "63.581972468655337", "identifiers": [{"i": "UMLS:C1513983", "l": "Neoplastic Hematopoietic and Lymphoid Cell"}, {"i": "NCIT:C37060", "l": "Neoplastic Hematopoietic and Lymphoid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184877", "l": "External pillar cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517813", "l": "Mouse Leukoblast"}, {"i": "NCIT:C22569", "l": "Mouse Leukoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520009", "l": "Virchow Cell"}, {"i": "NCIT:C33876", "l": "Virchow Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696006", "l": "Cells.CD3+CD4+CD27+CD62L+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267941", "l": "Lymphocyte positive for CD49F antigen"}, {"i": "SNOMEDCT:117384005"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000520", "l": "prokaryotic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000445", "l": "myoepithelial cell of dilator pupillae"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1628974", "l": "Bone marrow derived hematopoietic stem cell"}, {"i": "SNOMEDCT:419880001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163539", "l": "Epithelial cells | Nose | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009052", "l": "smooth muscle cell of anorectum"}]} +{"type": "biolink:Cell", "ic": "77.02358060617253", "identifiers": [{"i": "CL:0000798", "l": "gamma-delta T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009059", "l": "plasma cell of medullary sinus of lymph node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1115669", "l": "Lymphocytes.clefted"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1513967", "l": "Neoplastic Fibrohistiocytic Cell"}, {"i": "NCIT:C36962", "l": "Neoplastic Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338888", "l": "Paneth cell of epithelium of small intestine"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:4023011", "l": "lamp5 GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327104", "l": "Velate protoplasmic astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023129", "l": "retinoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331834", "l": "Brush cell of epithelium of lobular bronchiole"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727342", "l": "Tumor-Infiltrating Immune Cell"}, {"i": "NCIT:C153548", "l": "Tumor-Infiltrating Immune Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3485979", "l": "Allogeneic Cells"}, {"i": "MESH:D000078422", "l": "Allogeneic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000706", "l": "choroid plexus epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157350", "l": "CD19+CD103+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181218", "l": "Somatic cells | Milk | Microbiology"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267866", "l": "Lymphocyte positive for CD11A antigen"}, {"i": "SNOMEDCT:117547009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000469", "l": "myoepithelial cell of main lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516515", "l": "Chromophobe cell"}, {"i": "NCIT:C32313", "l": "Chromophobe Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D059290", "l": "Dopaminergic Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322733", "l": "CD56+ NK cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333739", "l": "Pinocytotic cell"}, {"i": "SNOMEDCT:57852008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010013", "l": "type I pinealocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180243", "l": "Endothelial cell of venule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267983", "l": "Lymphocyte positive for CD96 antigen"}, {"i": "SNOMEDCT:117423000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000690", "l": "R2 photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000580", "l": "neutrophilic myelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170917", "l": "Leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000474", "l": "pericardial nephrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0282549", "l": "HL-60 Cells"}, {"i": "MESH:D018922", "l": "HL-60 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0682649", "l": "Proprioceptor"}, {"i": "NCIT:C13823", "l": "Proprioceptor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267786", "l": "Cells.CD27-CD45RA+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002653", "l": "squamous endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000628", "l": "photosynthetic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163726", "l": "Erythrocytes | Stool | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1523992", "l": "Leukocyte - Monocyte - Macrophage - Histiocyte (MMHCC)"}, {"i": "NCIT:C22588", "l": "Mouse Histiocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157333", "l": "CD16C+CD56+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1522109", "l": "Leukocyte - Lymphocyte - B-Lymphocyte (MMHCC)"}, {"i": "NCIT:C22576", "l": "Mouse B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1370096", "l": "Cells.CD3+CD8+CD45RO+CD45RA+/100 cells"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002365", "l": "medullary thymic epithelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000438", "l": "luteinizing hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827167", "l": "Autologous Lymphoid Effector Cells Specific Against Tumor Cells"}, {"i": "NCIT:C112495", "l": "Autologous Lymphoid Effector Cells Specific Against Tumor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002153", "l": "corneocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001123", "l": "kidney outer medulla peritubular capillary cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001572", "l": "colon endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1135926", "l": "Satellite Cells, Skeletal Muscle"}, {"i": "MESH:D032496", "l": "Satellite Cells, Skeletal Muscle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007013", "l": "terminally differentiated odontoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4723730", "l": "Anti-K-RAS G12D mTCR-transduced Autologous Peripheral Blood Lymphocytes"}, {"i": "NCIT:C156889", "l": "Anti-K-RAS G12D mTCR-transduced Autologous Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157660", "l": "CD79a cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1708860", "l": "Malignant Adenohypophysial Cell"}, {"i": "NCIT:C45973", "l": "Malignant Adenohypophysial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763592", "l": "Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells BIVV003"}, {"i": "NCIT:C157393", "l": "Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells BIVV003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001021", "l": "CD34-positive, CD38-positive common lymphoid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326121", "l": "Golgi neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229951", "l": "Thymic epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000780", "l": "multinuclear odontoclast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4316814", "l": "Pelger Huet cell -- cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000352", "l": "epiblast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5151349", "l": "Abnormal lymphocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085194", "l": "Conventional Dendritic Cell"}, {"i": "NCIT:C123782", "l": "Conventional Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440238", "l": "Cell positive for CD106 antigen"}, {"i": "SNOMEDCT:725718007"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0000519", "l": "phagocyte (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267867", "l": "Lymphocyte positive for CD11B antigen"}, {"i": "SNOMEDCT:117548004"}]} +{"type": "biolink:Cell", "ic": "73.946956196949927", "identifiers": [{"i": "CL:0000527", "l": "efferent neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518240", "l": "Malignant Polygonal Cell with Abundant Granular Cytoplasm"}, {"i": "NCIT:C36884", "l": "Malignant Polygonal Cell with Abundant Granular Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157275", "l": "CD11c-CD20+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519265", "l": "Mouse Testis Sertoli Cell"}, {"i": "NCIT:C22183", "l": "Mouse Testis Sertoli Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5151699", "l": "Acute leukemia markers | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267922", "l": "Lymphocyte positive for CD42B antigen"}, {"i": "SNOMEDCT:117366008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157542", "l": "CD4+CD29+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011102", "l": "parasympathetic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333471", "l": "Set of adrenergic cells"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002364", "l": "cortical thymic epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4266413", "l": "100 cells.CD3"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440267", "l": "CD19+Kappa+ cell"}, {"i": "SNOMEDCT:732277006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267913", "l": "Lymphocyte positive for CD36 antigen"}, {"i": "SNOMEDCT:117582005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163544", "l": "Epithelial cells | Vaginal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177782", "l": "Polymorphonuclear cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0024264", "l": "Lymphocyte"}, {"i": "SNOMEDCT:56972008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000631", "l": "labyrinth supporting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0011029", "l": "cnidocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157230", "l": "CD1 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1449624", "l": "Neuroepithelial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338973", "l": "Goblet cell of epithelium of pyloric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322823", "l": "CD24+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002109", "l": "B220-positive CD38-positive naive B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002351", "l": "progenitor cell of endocrine pancreas"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514224", "l": "Poorly Differentiated Neoplastic Astrocyte"}, {"i": "NCIT:C37137", "l": "Poorly Differentiated Neoplastic Astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427890", "l": "Urinary epithelial cell"}, {"i": "SNOMEDCT:250442001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317332", "l": "Dysmorphic erythrocyte"}, {"i": "SNOMEDCT:725993007"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1513995", "l": "Neoplastic Large B-Lymphocyte"}, {"i": "NCIT:C37013", "l": "Neoplastic Large B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427530", "l": "Lymphosarcoma cell"}, {"i": "SNOMEDCT:250289002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519121", "l": "SA02"}, {"i": "NCIT:C20265", "l": "SA02"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002001", "l": "CD34-positive, CD38-positive granulocyte monocyte progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950850", "l": "Type D cell of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023114", "l": "calyx vestibular afferent neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514006", "l": "Neoplastic Centroblast"}, {"i": "NCIT:C37014", "l": "Neoplastic Centroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D019879", "l": "Paneth Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519460", "l": "Neoplastic Spindle-Shaped Myofibroblast"}, {"i": "NCIT:C36957", "l": "Neoplastic Spindle-Shaped Myofibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000994", "l": "immature CD11c-negative plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727097", "l": "Autologous TCR-engineered T-cells IMA202"}, {"i": "NCIT:C153218", "l": "Autologous TCR-engineered T-cells IMA202"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1517544", "l": "Giant Epithelial Cell"}, {"i": "NCIT:C36788", "l": "Giant Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182693", "l": "Dark cell of eccrine sweat gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725099", "l": "Autologous CD38-4SCAR-expressing T-cells 4SCAR38"}, {"i": "NCIT:C148523", "l": "Autologous CD38-4SCAR-expressing T-cells 4SCAR38"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002110", "l": "B220-low CD38-positive naive B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002232", "l": "epithelial cell of prostatic duct"}]} +{"type": "biolink:Cell", "ic": "55.950358643372745", "identifiers": [{"i": "CL:0002319", "l": "neural cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440049", "l": "Abnormal blood cells.CD13"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:2000031", "l": "lateral line ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "77.349316285872916", "identifiers": [{"i": "UMLS:C0017526", "l": "Giant Cells"}, {"i": "NCIT:C12607", "l": "Giant Cell"}, {"i": "MESH:D015726", "l": "Giant Cells"}, {"i": "SNOMEDCT:60401004"}, {"i": "SNOMEDCT:81480003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157356", "l": "CD19+CD38+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000024", "l": "spinal cord medial motor column neuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C32691", "l": "Gonadotroph Cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1513970", "l": "Neoplastic Ganglion Cell"}, {"i": "NCIT:C37146", "l": "Neoplastic Ganglion Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956101", "l": "Cumulus Cells"}, {"i": "MESH:D054885", "l": "Cumulus Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000755", "l": "type 3 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0010009", "l": "camera-type eye photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1518228", "l": "Malignant Oncocyte"}, {"i": "NCIT:C36942", "l": "Malignant Oncocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0079852", "l": "Monocytes, Activated Killer"}, {"i": "NCIT:C12548", "l": "Monocyte, Activated Killer"}, {"i": "MESH:D016260", "l": "Monocytes, Activated Killer"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517815", "l": "Mouse Follicular Center Cell"}, {"i": "NCIT:C22578", "l": "Mouse Follicular Center Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440380", "l": "Cells.cyclin D1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440301", "l": "Cells.CD37"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440245", "l": "Cells.CD11a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182613", "l": "Epithelial cell of nasal part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000760", "l": "type 8 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "67.708239083454572", "identifiers": [{"i": "CL:0000115", "l": "endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883279", "l": "Terminal Duct Cell"}, {"i": "NCIT:C62170", "l": "Terminal Duct Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1001138", "l": "interlobular artery cell"}]} +{"type": "biolink:Cell", "ic": "73.946956196949927", "identifiers": [{"i": "CL:0000165", "l": "neuroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002241", "l": "pulmonary interstitial fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304488", "l": "Population of all hypersegmented neutrophils in portion of fluid"}, {"i": "SNOMEDCT:719700004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328961", "l": "Type 1 vestibular sensory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173431", "l": "Monocytes | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000571", "l": "leucophore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513816", "l": "NC03"}, {"i": "NCIT:C20283", "l": "NC03"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009095", "l": "endothelial cell of uterus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157352", "l": "CD19+CD27+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170921", "l": "Leukocytes | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229616", "l": "Small lymphocyte"}, {"i": "SNOMEDCT:91233007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267950", "l": "Lymphocyte positive for CD58 antigen"}, {"i": "SNOMEDCT:117391008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002283", "l": "ecto-epithelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157431", "l": "CD3+CD25+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514001", "l": "Neoplastic Large Cleaved Follicle Center Cell"}, {"i": "NCIT:C37020", "l": "Neoplastic Large Cleaved Follicle Center Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641687", "l": "MCPyV TAg-specific Polyclonal Autologous CD8-positive T Cells"}, {"i": "NCIT:C104009", "l": "MCPyV TAg-specific Polyclonal Autologous CD8-positive T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744618", "l": "Autologous Anti-CD19CAR-CD3zeta-4-1BB-IL-15-PD1-expressing Tri-functional T-lymphocytes"}, {"i": "NCIT:C156169", "l": "Autologous Anti-CD19CAR-CD3zeta-4-1BB-IL-15-PD1-expressing Tri-functional T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687585", "l": "Autologous PBLs Retrovirally-transduced with TCRs Targeting Neoantigens"}, {"i": "NCIT:C146937", "l": "Autologous PBLs Retrovirally-transduced with TCRs Targeting Neoantigens"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710037", "l": "Sebocyte"}, {"i": "NCIT:C43337", "l": "Sebocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "NCIT:C12643", "l": "Efferent Neuron"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0002438", "l": "NK1.1-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157627", "l": "CD59 Monocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696638", "l": "Cells.CD4+CD25+CD45RO+CD127Low+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000256", "l": "uric acid accumulating cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881195", "l": "Indium In 111-Labeled Autologous Peripheral Blood Mononuclear Cells"}, {"i": "NCIT:C67085", "l": "Indium In 111-Labeled Autologous Peripheral Blood Mononuclear Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979510", "l": "Cells.CD11c+20c+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002575", "l": "central nervous system pericyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317185", "l": "Cells.CD10+CD20+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440341", "l": "Cells.CD63"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322731", "l": "Type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440403", "l": "Cells.t(12;16)(q13;p11.2)(DDIT3,FUS)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514043", "l": "Neoplastic Neural Crest Cell"}, {"i": "NCIT:C37148", "l": "Neoplastic Neural Crest Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001058", "l": "plasmacytoid dendritic cell, human"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1183495", "l": "Ectodermal cell"}, {"i": "NCIT:C33935", "l": "Ectoderm Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831510", "l": "Anti-VEGFR2-CAR Retroviral Vector-transduced Autologous T-lymphocytes"}, {"i": "NCIT:C111038", "l": "Anti-VEGFR2-CAR Retroviral Vector-transduced Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001045", "l": "naive CCR4-positive regulatory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440312", "l": "Cells.CD44"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733226", "l": "CAR.CD30-expressing autologous Epstein-Barr virus-specific cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518009", "l": "Low Columnar Cell"}, {"i": "NCIT:C33008", "l": "Low Columnar Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182646", "l": "Pigmented ciliary epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184823", "l": "Variant lymphocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333806", "l": "Macrocytic normochromic erythrocyte"}, {"i": "SNOMEDCT:7841003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229609", "l": "Secretory macrophage"}, {"i": "SNOMEDCT:35113007"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000957", "l": "large pre-B-II cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000666", "l": "fenestrated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324639", "l": "Retinal glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009064", "l": "lymph node paracortex T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708919", "l": "Malignant Stellate Cell"}, {"i": "NCIT:C53989", "l": "Malignant Stellate Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326171", "l": "Pancreatic goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512637", "l": "Immature Peripheral Alpha/Beta Cell of Cytotoxic Type"}, {"i": "NCIT:C38327", "l": "Immature Peripheral Alpha/Beta Cell of Cytotoxic Type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12637", "l": "Retinal Cone"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0008047", "l": "intrafusal muscle fiber"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000711", "l": "cumulus cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000446", "l": "chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002393", "l": "intermediate monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334370", "l": "Stellate cell of cerebral cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0805579", "l": "Cerebroventricular lining cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518170", "l": "Malignant Clear Squamous Cell"}, {"i": "NCIT:C36814", "l": "Malignant Clear Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000912", "l": "helper T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267798", "l": "CV+ lymphocyte"}, {"i": "SNOMEDCT:117502008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2951489", "l": "Type D enteroendocrine cell of gastric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181345", "l": "Spermatozoa Agglutinated | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157672", "l": "CD8+CD95+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010016", "l": "collar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524455", "l": "Structure of exocervical epithelial cell"}, {"i": "SNOMEDCT:91687006"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1516671", "l": "Clonal Hematopoietic Stem Cell"}, {"i": "NCIT:C37061", "l": "Clonal Hematopoietic Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955257", "l": "Erythrocytes.fresh"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724902", "l": "Donor-derived Cytokine-induced Memory-like Natural Killer Cells"}, {"i": "NCIT:C148213", "l": "Donor-derived Cytokine-induced Memory-like Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000501", "l": "granulosa cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267979", "l": "Lymphocyte positive for CD91 antigen"}, {"i": "SNOMEDCT:117419008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157653", "l": "CD71 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174617", "l": "Neutrophils | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333807", "l": "Macrocytic hyperchromic erythrocyte"}, {"i": "SNOMEDCT:23305007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174621", "l": "Neutrophils | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000278", "l": "smooth muscle fiber of ileum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517204", "l": "Flame Cell"}, {"i": "NCIT:C37080", "l": "Flame Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000648", "l": "kidney granular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0597661", "l": "visual photoreceptor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514760", "l": "Receptor Cell"}, {"i": "NCIT:C13156", "l": "Receptor Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000508", "l": "type G enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002645", "l": "endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924459", "l": "Lymphocytes.variant"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546496", "l": "P.B. monoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225668", "l": "Clara cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2346935", "l": "Malignant Giant Osteoblast"}, {"i": "NCIT:C67524", "l": "Malignant Giant Osteoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514660", "l": "RL21"}, {"i": "NCIT:C20294", "l": "RL21"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002168", "l": "border cell of cochlea"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333737", "l": "Muciphage"}, {"i": "SNOMEDCT:57068003"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1516945", "l": "Epithelioid Endothelial Cell"}, {"i": "NCIT:C37093", "l": "Epithelioid Endothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736931", "l": "Cells.CD19+CD56+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085944", "l": "Allodepleted T Cell Immunotherapeutic ATIR101"}, {"i": "UMLS:C4722614", "l": "Theralux-ATIR"}, {"i": "NCIT:C123911", "l": "Allodepleted T Cell Immunotherapeutic ATIR101"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000855", "l": "sensory hair cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1513710", "l": "Mucin-Producing Neoplastic Epithelial Cell"}, {"i": "NCIT:C36891", "l": "Mucin-Producing Neoplastic Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289823", "l": "Central Memory T-Lymphocyte"}, {"i": "NCIT:C126420", "l": "Central Memory T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1524046", "l": "CNS - Brain - Neuron (MMHCC)"}, {"i": "NCIT:C22618", "l": "Mouse Brain Neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002581", "l": "perirenal preadipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3178914", "l": "B-Lymphocytes, Regulatory"}, {"i": "NCIT:C113502", "l": "Regulatory B Cell"}, {"i": "MESH:D060151", "l": "B-Lymphocytes, Regulatory"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000042", "l": "neutrophilic myeloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181966", "l": "Chromaffin cell of adrenal gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002239", "l": "ooblast"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:1000909", "l": "kidney loop of Henle epithelial cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1510965", "l": "Atypical Squamous Cells"}, {"i": "NCIT:C36913", "l": "Atypical Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000721", "l": "kidney papillary duct principal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3494246", "l": "Sf21 Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C12478", "l": "Clear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3656573", "l": "Cells.CD3-CD8-CD57+"}]} +{"type": "biolink:Cell", "ic": "63.137724563693467", "identifiers": [{"i": "CL:0000766", "l": "myeloid leukocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0230519", "l": "Mitotic cell in prophase"}, {"i": "SNOMEDCT:13056009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515147", "l": "TE04 Cell Line"}, {"i": "NCIT:C20299", "l": "TE04"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011110", "l": "histaminergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440305", "l": "Cells.CD4+CD8+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000075", "l": "anterior visceral endoderm cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514656", "l": "RL10"}, {"i": "NCIT:C20290", "l": "RL10"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157458", "l": "CD3+CD8+ (T8 suppressor cells) cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157308", "l": "CD14 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333832", "l": "Tart cell"}, {"i": "SNOMEDCT:26819005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483183", "l": "CD16-CD57-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709223", "l": "Nevoid Polygonal Cell"}, {"i": "NCIT:C54077", "l": "Nevoid Polygonal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511161", "l": "Blast cell positive for cytoplasmic CD13 antigen"}, {"i": "SNOMEDCT:725480006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744703", "l": "Autologous Anti-BCMA-CAR-TCRz/4-1BB-expressing T-lymphocytes CART-BCMA"}, {"i": "NCIT:C156272", "l": "Autologous Anti-BCMA-CAR-TCRz/4-1BB-expressing T-lymphocytes CART-BCMA"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511465", "l": "CY40"}, {"i": "NCIT:C20239", "l": "CY40"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0085087", "l": "3T3 Cells"}, {"i": "MESH:D016475", "l": "3T3 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0085262", "l": "PC12 Cells"}, {"i": "NCIT:C17435", "l": "PC-12"}, {"i": "MESH:D016716", "l": "PC12 Cells"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0011004", "l": "lens fiber cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516922", "l": "Mouse Epididymal Interstitial Cell"}, {"i": "NCIT:C22171", "l": "Mouse Epididymal Interstitial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002314", "l": "external supporting cell of vestibular epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002588", "l": "smooth muscle cell of the umbilical vein"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682543", "l": "cell by staining properties"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511009", "l": "BG04"}, {"i": "NCIT:C20236", "l": "BG04"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1254547", "l": "Hypochromic erythrocyte"}, {"i": "NCIT:C37033", "l": "Hypochromic Red Blood Cell"}, {"i": "SNOMEDCT:397021001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000689", "l": "myoendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513709", "l": "Mucin-Producing Adenocarcinoma Cell"}, {"i": "NCIT:C36856", "l": "Mucin-Producing Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000733", "l": "lymph gland plasmatocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002164", "l": "external pillar cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "UMLS:C1517808", "l": "Leukemic Lymphocyte"}, {"i": "NCIT:C41073", "l": "Leukemic Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000086", "l": "neocortex basket cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1179160", "l": "Pancreatic centro-acinar cell"}, {"i": "NCIT:C33254", "l": "Pancreatic Centroacinar Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706725", "l": "Adrenal Cortical Cell"}, {"i": "NCIT:C48358", "l": "Adrenal Cortical Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180795", "l": "Endothelial cell of lymphatic vessel"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0011022", "l": "fibroblast of skin of back"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157563", "l": "CD41a cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002120", "l": "CD24-positive CD38-negative IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1266872", "l": "Renal tubular epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339159", "l": "Nonkeratinized cell of epithelium of anal column"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519513", "l": "Pituitary TSH-Secreting Cells"}, {"i": "NCIT:C33786", "l": "Thyrotroph Cell"}, {"i": "MESH:D052684", "l": "Thyrotrophs"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268000", "l": "Lymphocyte positive for CD122 antigen"}, {"i": "SNOMEDCT:117440009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513715", "l": "Mucinous Bronchial Cell"}, {"i": "NCIT:C33922", "l": "Mucinous Bronchial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002029", "l": "Fc-epsilon RIalpha-low mast cell progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12592", "l": "Merkel Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724879", "l": "PD-1 knockout EBV-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C148180", "l": "PD-1 knockout EBV-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337276", "l": "Goblet cell of epithelium of gastric cardiac gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336699", "l": "Fibroblast of areolar connective tissue"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1708908", "l": "Malignant Small Squamous Cell"}, {"i": "NCIT:C54207", "l": "Malignant Small Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D055098", "l": "Endocrine Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440241", "l": "Cells.CD11"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000186", "l": "myofibroblast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682696", "l": "Golgi type I neuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12586", "l": "Goblet Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322185", "l": "Epithelial cell of exocervix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002106", "l": "IgD-positive CD38-positive IgG memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000456", "l": "mesothelial cell of parietal peritoneum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684134", "l": "exciter neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257912", "l": "Haploid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157917", "l": "Cell type | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000190", "l": "fast muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000465", "l": "cardioblast (sensu Arthropoda)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267968", "l": "Lymphocyte positive for CD74 antigen"}, {"i": "SNOMEDCT:117408005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267788", "l": "Cells.CD27+IgD+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883046", "l": "Small Cuboidal Cell Resembling Fetal Hepatocyte"}, {"i": "NCIT:C60804", "l": "Small Cuboidal Cell Resembling Fetal Hepatocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002237", "l": "luminal epithelial cell of prostatic duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C33240", "l": "Outer Supporting Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002634", "l": "epithelial cell of anal column"}]} +{"type": "biolink:Cell", "ic": "60.610786514578848", "identifiers": [{"i": "UMLS:C1513959", "l": "Neoplastic Epithelial Cell"}, {"i": "NCIT:C36753", "l": "Neoplastic Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440603", "l": "Erythrocytes.CD59 deficient"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514739", "l": "Reactive mesothelial cells"}, {"i": "NCIT:C36830", "l": "Reactive Mesothelial Cell"}, {"i": "SNOMEDCT:447003004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157326", "l": "CD16+CD56+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322797", "l": "Parasympathetic ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000849", "l": "crypt olfactory receptor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289951", "l": "Autologous HBV-specific TCR-redirected T-Lymphocytes"}, {"i": "NCIT:C126270", "l": "Autologous HBV-specific TCR-redirected T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708872", "l": "Malignant Epithelial Cell with Ground Glass Cytoplasm"}, {"i": "NCIT:C54589", "l": "Malignant Epithelial Cell with Ground Glass Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682538", "l": "intact cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708875", "l": "Malignant Epithelioid Smooth Muscle Cell"}, {"i": "NCIT:C49127", "l": "Malignant Epithelioid Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000691", "l": "kidney interstitial myofibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172359", "l": "Megakaryocytes/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155167", "l": "Blasts | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000971", "l": "IgM memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002363", "l": "keratocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327465", "l": "Transitional myocyte of septal division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163235", "l": "Elliptocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440329", "l": "Cells.CD50"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4763339", "l": "Axonic neuron"}]} +{"type": "biolink:Cell", "ic": "74.836269892493803", "identifiers": [{"i": "UMLS:C1510734", "l": "Abnormal Squamous Cell"}, {"i": "NCIT:C36772", "l": "Abnormal Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979102", "l": "Blasts.CD123"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546507", "l": "P.B. mast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2919941", "l": "Colony-forming unit of monocytic lineage"}, {"i": "SNOMEDCT:445094003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228007", "l": "Prespermatogonia"}, {"i": "SNOMEDCT:64216006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000018", "l": "endothelial cell of coronary artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002574", "l": "stromal cell of pancreas"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881911", "l": "Mucinous Tall Columnar Adenocarcinoma Cell"}, {"i": "NCIT:C54690", "l": "Mucinous Tall Columnar Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2826112", "l": "Autologous NY-ESO-1-Melanoma-Specific CD8+ T-lymphocytes"}, {"i": "NCIT:C82350", "l": "Autologous NY-ESO-1-Melanoma-Specific CD8+ T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002613", "l": "striatum neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002170", "l": "keratinized cell of the oral mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322820", "l": "CD103+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276850", "l": "Entire parathyroid chief cell"}, {"i": "SNOMEDCT:177527004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157263", "l": "CD117 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4530304", "l": "Yescarta"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C0018956", "l": "Hematopoietic stem cells"}, {"i": "NCIT:C12551", "l": "Hematopoietic Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009036", "l": "appendix macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4531900", "l": "Plasma cells.monotypic population"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267962", "l": "Lymphocyte positive for CD66E antigen"}, {"i": "SNOMEDCT:117403001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180330", "l": "Globose cell of olfactory epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C176757", "l": "Tumor-Infiltrating T Helper 17 Cell"}]} +{"type": "biolink:Cell", "ic": "68.973118714897424", "identifiers": [{"i": "UMLS:C1513951", "l": "Neoplastic Endocrine Cell"}, {"i": "NCIT:C36925", "l": "Neoplastic Endocrine Cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000792", "l": "CD4-positive, CD25-positive, alpha-beta regulatory T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000176", "l": "ecdysteroid secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330872", "l": "Brush cell of epithelium of bronchus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000090002", "l": "Stromal Vascular Fraction"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009012", "l": "transit amplifying cell of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514842", "l": "Renal interstitial cell"}, {"i": "NCIT:C33458", "l": "Renal Interstitial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979086", "l": "Blasts.CD11a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000943", "l": "Be1 Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317198", "l": "Cells.CD55"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267856", "l": "Lymphocyte positive for both CD8 antigen and CD38 antigen"}, {"i": "SNOMEDCT:116817005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2717773", "l": "Gametophytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267931", "l": "Lymphocyte positive for CD45RB antigen"}, {"i": "SNOMEDCT:117374009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727549", "l": "Autologous AXL-targeted CAR T-cells CCT301-38"}, {"i": "NCIT:C154276", "l": "Autologous AXL-targeted CAR T-cells CCT301-38"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002176", "l": "secondary follicular cell of ovary"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513964", "l": "Neoplastic Fasciculata Cell"}, {"i": "NCIT:C36926", "l": "Neoplastic Fasciculata Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002275", "l": "pancreatic PP cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008009", "l": "transversely striated visceral muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000245", "l": "posterior lateral line ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710683", "l": "Wreath-Like Multinucleated Giant Cell"}, {"i": "NCIT:C53640", "l": "Wreath-Like Multinucleated Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267710", "l": "100 cells.CD19+CD20+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011028", "l": "olfactory ensheathing cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000744", "l": "columnar chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170956", "l": "Leukocytes other | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514274", "l": "Postgerminal Center Memory B-Lymphocyte"}, {"i": "NCIT:C38339", "l": "Postgerminal Center Memory B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1720886", "l": "Melanotrophs"}, {"i": "MESH:D052717", "l": "Melanotrophs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023077", "l": "bitufted neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512137", "l": "ESO-1 Reactive Autologous Peripheral Blood Lymphocyte"}, {"i": "NCIT:C38119", "l": "ESO-1 Reactive Autologous Peripheral Blood Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518056", "l": "Lymphoblast-Like Neoplastic B-Lymphocyte"}, {"i": "NCIT:C39748", "l": "Lymphoblast-Like Neoplastic B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002516", "l": "interrenal chromaffin cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0013485", "l": "Embryonal Carcinoma Stem Cells"}, {"i": "MESH:D054278", "l": "Embryonal Carcinoma Stem Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000217", "l": "insulating cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000627", "l": "transporting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000434", "l": "epithelial cell of external acoustic meatus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0027884", "l": "Neurons, Efferent"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440275", "l": "Cells.CD26"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000081", "l": "melanocyte of skin of face"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724877", "l": "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes"}, {"i": "NCIT:C148177", "l": "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171871", "l": "Macrophages | Urine sediment | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708911", "l": "Malignant Spindle-Shaped Fibroblast"}, {"i": "NCIT:C49021", "l": "Malignant Spindle-Shaped Fibroblast"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C0368761", "l": "Blast Cell"}, {"i": "NCIT:C12918", "l": "Hematopoietic Blast Cell"}, {"i": "SNOMEDCT:312256009"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000852", "l": "neuromast supporting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163551", "l": "Epithelial cells.parabasal | Vaginal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157441", "l": "CD3+CD4+CD27+CD62L+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317119", "l": "Basophils.immature"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229608", "l": "Histioblast"}, {"i": "SNOMEDCT:1605008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186846", "l": "Neutrophils | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640938", "l": "Allodepleted Haploidentical T Cells-expressing Inducible Caspase 9"}, {"i": "NCIT:C102757", "l": "Allodepleted Haploidentical T Cells-expressing Inducible Caspase 9"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4277543", "l": "Myeloid-Derived Suppressor Cells"}, {"i": "NCIT:C129908", "l": "Myeloid-Derived Suppressor Cell"}, {"i": "MESH:D000072737", "l": "Myeloid-Derived Suppressor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440334", "l": "Cells.CD58"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000518", "l": "phagocyte (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513471", "l": "Monolobed Megakaryocyte"}, {"i": "NCIT:C37048", "l": "Monolobed Megakaryocyte"}]} +{"type": "biolink:Cell", "ic": "65.690062451777465", "identifiers": [{"i": "UMLS:C4551752", "l": "Abnormal Lymphocyte cell"}, {"i": "NCIT:C36725", "l": "Abnormal Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174092", "l": "Myeloblasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002318", "l": "peripheral blood mesothelial cell"}]} +{"type": "biolink:Cell", "ic": "55.950358643372745", "identifiers": [{"i": "CL:0000842", "l": "mononuclear cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000097", "l": "mast cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516095", "l": "Atypical Fibroblastic Spindle Cell"}, {"i": "NCIT:C36956", "l": "Atypical Fibroblastic Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002124", "l": "CD27-positive gamma-delta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154297", "l": "Band form neutrophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254573", "l": "Mature Erythrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011006", "l": "Lugaro cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000313", "l": "serous secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023049", "l": "L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002133", "l": "stromal cell of ovarian cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009001", "l": "compound eye retinal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000644", "l": "Bergmann glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002013", "l": "GlyA-positive basophillic erythroblast"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1881543", "l": "Malignant Eccrine Cell"}, {"i": "NCIT:C62499", "l": "Malignant Eccrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002102", "l": "CD38-negative naive B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170934", "l": "Leukocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002219", "l": "anchoring trophoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727630", "l": "Autologous Bi-epitope BCMA-targeted CAR T-cells JNJ-68284528"}, {"i": "NCIT:C148498", "l": "Ciltacabtagene Autoleucel"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023071", "l": "L5/6 cck cortical GABAergic interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516313", "l": "Castration Cell"}, {"i": "NCIT:C36752", "l": "Castration Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12553", "l": "Megakaryocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002413", "l": "mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157375", "l": "CD2+CD3+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1514115", "l": "Neoplastic Transitional Cell"}, {"i": "NCIT:C36768", "l": "Neoplastic Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0597447", "l": "Sf9 cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000967", "l": "Bm5 B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000359", "l": "microfold cell of epithelium proper of appendix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002481", "l": "peritubular myoid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154514", "l": "Basophils+Eosinophils+Monocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011007", "l": "paraxial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000366", "l": "transitional myocyte of middle internodal tract"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000896", "l": "activated CD4-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002664", "l": "cardioblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736937", "l": "Cells.CD8+CD45RA+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519010", "l": "Mesothelial cell of peritoneum"}, {"i": "NCIT:C33310", "l": "Peritoneal Mesothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682641", "l": "phagocytic reticular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518750", "l": "Mouse Ovarian Follicular Cell"}, {"i": "NCIT:C22661", "l": "Mouse Ovarian Follicular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183209", "l": "Set of tympanic cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229538", "l": "Pituitary thyrotropic cell"}, {"i": "SNOMEDCT:33608007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180817", "l": "Sezary cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330822", "l": "Goblet cell of epithelium of crypt of Lieberkuhn of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3824982", "l": "Pancreatic acinar cells--Cancer"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157429", "l": "CD3+CD16+CD56+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038491", "l": "Cells.diploid.G2 phase"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546493", "l": "P.B. eosinophilic myelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000719", "l": "posterior cone cell (sensu Endopterygota)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0815001", "l": "neuron by chemical response"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4298893", "l": "Cells.CD3+CD4+CD45RO+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002281", "l": "type S enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440330", "l": "Cells.CD51"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008010", "l": "cranial somatomotor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179554", "l": "Pancreatic ductal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986999", "l": "Allogeneic Renal Cell Carcinoma Vaccine MGN1601"}, {"i": "NCIT:C95213", "l": "Allogeneic Renal Cell Carcinoma Vaccine MGN1601"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267837", "l": "B lymphocyte positive for CD19 antigen"}, {"i": "SNOMEDCT:115417009"}]} +{"type": "biolink:Cell", "ic": "64.000820534647843", "identifiers": [{"i": "UMLS:C1512100", "l": "Dysplastic Epithelial Cell"}, {"i": "NCIT:C36807", "l": "Dysplastic Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157287", "l": "CD126 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322730", "l": "CD5+CD25+ B lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510924", "l": "Blast cell positive for CD21 antigen"}, {"i": "SNOMEDCT:725173000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002039", "l": "immature NK T cell stage I"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000804", "l": "kidney outer medulla interstitial cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000775", "l": "neutrophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3847843", "l": "Basophil positive for CD63 antigen"}, {"i": "SNOMEDCT:724247008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267891", "l": "Lymphocyte positive for CD21 antigen"}, {"i": "SNOMEDCT:116843006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157598", "l": "CD5+CD20+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267703", "l": "Inner mesothelial cell of arachnoid"}, {"i": "SNOMEDCT:110662000"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1519354", "l": "Skin squamous cell"}, {"i": "NCIT:C33562", "l": "Skin Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0020204", "l": "Hybridomas"}, {"i": "NCIT:C16700", "l": "Hybridoma"}, {"i": "MESH:D006825", "l": "Hybridomas"}, {"i": "SNOMEDCT:25326005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157532", "l": "CD4 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2717959", "l": "Induced Pluripotent Stem Cells"}, {"i": "NCIT:C124144", "l": "Induced Pluripotent Stem Cell"}, {"i": "MESH:D057026", "l": "Induced Pluripotent Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180537", "l": "Secondary Spermatocytes | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495992", "l": "C3 adrenaline cells"}]} +{"type": "biolink:Cell", "ic": "72.270040348674314", "identifiers": [{"i": "CL:0000723", "l": "somatic stem cell"}]} +{"type": "biolink:Cell", "ic": "77.349316285872916", "identifiers": [{"i": "UMLS:C1514044", "l": "Neoplastic Neuroendocrine Cell"}, {"i": "NCIT:C36761", "l": "Neoplastic Neuroendocrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831168", "l": "CD33CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes"}, {"i": "NCIT:C107190", "l": "CD33CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322830", "l": "Bone marrow-derived hemopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002350", "l": "endocardial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955381", "l": "Spermatozoa.angled midpiece"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267816", "l": "Lymphocyte positive for CD3 antigen"}, {"i": "SNOMEDCT:116852002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000017", "l": "fibroblast of peridontal ligament"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733634", "l": "Autologous CCR4-CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes"}, {"i": "NCIT:C155293", "l": "Autologous CCR4-CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2347433", "l": "Adipose-Derived Regenerative Cells"}, {"i": "NCIT:C73997", "l": "Adipose-Derived Regenerative Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0444242", "l": "Amniotic cell sample"}, {"i": "SNOMEDCT:258563002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007012", "l": "non-terminally differentiated odontoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4553719", "l": "Autologous iC9-CARCD19 T Cells"}, {"i": "NCIT:C146823", "l": "Autologous iCASP9-CD19-expressing T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827113", "l": "Autologous Peripheral Blood Lymphocytes Cotransduced with Retroviral Vectors Encoding Inducible IL-12 and Anti-NY-ESO-1 TCR"}, {"i": "NCIT:C113161", "l": "Autologous Peripheral Blood Lymphocytes Cotransduced with Retroviral Vectors Encoding Inducible IL-12 and Anti-NY-ESO-1 TCR"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172505", "l": "Mesothelial cells | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0033093", "l": "Pressoreceptors"}, {"i": "MESH:D011311", "l": "Pressoreceptors"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1711355", "l": "Malignant Neuroectodermal Cell"}, {"i": "NCIT:C53987", "l": "Malignant Neuroectodermal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518221", "l": "Malignant Neuroendocrine Polygonal Cell"}, {"i": "NCIT:C36855", "l": "Malignant Neuroendocrine Polygonal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0427528", "l": "Atypical mononuclear cell"}, {"i": "NCIT:C12979", "l": "Atypical Mononuclear Cell"}, {"i": "SNOMEDCT:250287000"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001599", "l": "pancreas exocrine glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709771", "l": "Pulmonary Neuroendocrine Cell"}, {"i": "NCIT:C45572", "l": "Pulmonary Neuroendocrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515151", "l": "TE33"}, {"i": "NCIT:C20298", "l": "TE33"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023108", "l": "oxytocin-secreting magnocellular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157228", "l": "CD1 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1518246", "l": "Malignant Stromal Cell"}, {"i": "NCIT:C37153", "l": "Malignant Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517735", "l": "Centroblast"}, {"i": "NCIT:C32932", "l": "Centroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000524", "l": "spheroplast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333836", "l": "Sea-blue histiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517690", "l": "LH Cells"}, {"i": "NCIT:C32985", "l": "LH Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157329", "l": "CD16+CD57- | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002444", "l": "Ly49H-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598829", "l": "Madin Darby Canine Kidney Cells"}, {"i": "MESH:D061985", "l": "Madin Darby Canine Kidney Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002304", "l": "non-pigmented ciliary epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511245", "l": "Bone Marrow Stem Cell with Predominant Neutrophil Differentiation"}, {"i": "NCIT:C41060", "l": "Bone Marrow Stem Cell with Predominant Neutrophil Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000084522", "l": "T Follicular Helper Cells"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "UMLS:C1518172", "l": "Malignant Endocrine Cell"}, {"i": "NCIT:C36929", "l": "Malignant Endocrine Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246840", "l": "Trunk neural crest cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1959571", "l": "Suppressor T-Lymphocytes, Naturally-Occurring"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D055611", "l": "Natural Killer T-Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0162597", "l": "Stromal Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350245", "l": "Megakaryocyte Progenitor Cells"}, {"i": "MESH:D055016", "l": "Megakaryocyte Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333842", "l": "Niemann-Pick cell"}, {"i": "NCIT:C36844", "l": "Niemann-Pick Cell"}, {"i": "SNOMEDCT:9240003"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000646", "l": "basal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229606", "l": "Reticulum cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001253", "l": "Astrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900007", "l": "Autologous 4-1BB Selected Tumor Infiltrating Lymphocytes"}, {"i": "NCIT:C119703", "l": "Autologous 4-1BB Selected Tumor Infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717809", "l": "Erythrocytes.CD55 & CD59"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001437", "l": "hair-down neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002342", "l": "circulating endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000721", "l": "equatorial cone cell (sensu Endopterygota)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163435", "l": "Eosinophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440404", "l": "Cells.t(12;21)(p13;q22.3)(ETV6,RUNX1)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157317", "l": "CD15 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000908", "l": "CD8-positive, alpha-beta cytokine secreting effector T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D011689", "l": "Purkinje Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002335", "l": "brown preadipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326918", "l": "Microfold cell of epithelium proper of appendix"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002631", "l": "epithelial cell of upper respiratory tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002396", "l": "CD14-low, CD16-positive monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3282453", "l": "HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322827", "l": "CD22+CD19+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000085", "l": "mononuclear cell of umbilical cord"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268011", "l": "Immature plasma cell"}, {"i": "SNOMEDCT:117293008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522238", "l": "Thyroid Gland - Follicular Cell (MMHCC)"}, {"i": "NCIT:C22652", "l": "Mouse Thyroid Gland Follicular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157290", "l": "CD127 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1640380", "l": "Bone Marrow Stromal Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881549", "l": "Malignant Epithelial Large Polygonal Cell"}, {"i": "NCIT:C61001", "l": "Malignant Epithelial Large Polygonal Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000339", "l": "enterocyte of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520211", "l": "Yolk Cell"}, {"i": "NCIT:C33933", "l": "Yolk Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182642", "l": "Urothelial cell of trigone of urinary bladder"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515636", "l": "gp100 Peptide-sensitized Autologous T-cells (CD4+ and CD8+)"}, {"i": "NCIT:C29556", "l": "gp100 Peptide-sensitized Autologous T-cells (CD4+ and CD8+)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514017", "l": "CD4+/CD56+ Neoplastic Medium-Sized Cell"}, {"i": "NCIT:C39301", "l": "CD4+/CD56+ Neoplastic Medium-Sized Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000285", "l": "smooth muscle cell of sigmoid colon"}]} +{"type": "biolink:Cell", "ic": "53.855751361765194", "identifiers": [{"i": "CL:0000219", "l": "motile cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1708876", "l": "Malignant Fibroblast"}, {"i": "NCIT:C49028", "l": "Malignant Fibroblast"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002070", "l": "type I vestibular sensory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335377", "l": "Set of cholinergic cells of accumbens nucleus [Ch3]"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1514440", "l": "Primitive Striated Muscle Cell"}, {"i": "NCIT:C36949", "l": "Primitive Striated Muscle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157238", "l": "CD10+CD19+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002079", "l": "pancreatic ductal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0506994", "l": "Goblet Cells"}]} +{"type": "biolink:Cell", "ic": "66.629890497735275", "identifiers": [{"i": "CL:0000076", "l": "squamous epithelial cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1711388", "l": "Neoplastic Dendritic Cell"}, {"i": "NCIT:C43271", "l": "Neoplastic Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333134", "l": "Neuron of cerebral cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1370100", "l": "Cells.CD3+TCR alpha beta+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1512640", "l": "Immature Spindle Cell"}, {"i": "NCIT:C36958", "l": "Immature Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267848", "l": "Lymphocyte positive for both CD5 antigen and CD25 antigen"}, {"i": "SNOMEDCT:116818000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002637", "l": "keratinized epithelial cell of the anal canal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2348423", "l": "Allogeneic CD4+ Memory Th1-like T Cells/Microparticle-bound Anti-CD3/anti-CD28"}, {"i": "UMLS:C2825117", "l": "AlloStim"}, {"i": "NCIT:C71540", "l": "Allogeneic CD4+ Memory Th1-like T Cells/Microparticle-bound Anti-CD3/anti-CD28"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682525", "l": "W138 cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171864", "l": "Macrophages | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441340", "l": "100 cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763382", "l": "Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794"}, {"i": "NCIT:C121379", "l": "Letetresgene Autoleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008013", "l": "cranial visceromotor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157483", "l": "CD33 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157519", "l": "CD3-CD16+CD56+ (Natural killer) cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440347", "l": "Cells.CD66e"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267940", "l": "Lymphocyte positive for CD49E antigen"}, {"i": "SNOMEDCT:117383004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2963388", "l": "Bizarre platelets"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0002633", "l": "respiratory basal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161803", "l": "Cytoplasmic CD3 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684118", "l": "Early erythroblast"}, {"i": "SNOMEDCT:115610004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181295", "l": "Meso-epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267828", "l": "T lymphocyte positive for both CD8 antigen and CD11b antigen"}, {"i": "SNOMEDCT:115414002"}]} +{"type": "biolink:Cell", "ic": "75.324974028080362", "identifiers": [{"i": "UMLS:C1514022", "l": "Neoplastic Melanocyte"}, {"i": "NCIT:C36862", "l": "Neoplastic Melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519373", "l": "Goblet cell of small intestine"}, {"i": "NCIT:C33567", "l": "Small Intestinal Goblet Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174638", "l": "Neutrophils.dysplastic | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023036", "l": "chandelier pvalb GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441342", "l": "100 leukocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023070", "l": "caudal ganglionic eminence derived GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0016390", "l": "Foam Cells"}, {"i": "MESH:D005487", "l": "Foam Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1115673", "l": "Lymphocytes.lambda"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000728", "l": "secondary pigment cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1709199", "l": "Neoplastic Skeletal Muscle Cell"}, {"i": "NCIT:C49167", "l": "Neoplastic Skeletal Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "67.531655931544393", "identifiers": [{"i": "CL:0000101", "l": "sensory neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171659", "l": "Lymphocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0440745", "l": "Pigment cell"}, {"i": "SNOMEDCT:256892003"}]} +{"type": "biolink:Cell", "ic": "77.02358060617253", "identifiers": [{"i": "CL:1000507", "l": "kidney tubule cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340140", "l": "Type F enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000373", "l": "transitional myocyte of ventricular part of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179521", "l": "Reticulocytes.high fluorescence/100 erythrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000512", "l": "paracrine cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002611", "l": "neuron of the dorsal spinal cord"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440414", "l": "Cells.t(8;14)(q24;q32)(MYC,IGH)"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000510", "l": "paneth cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000838", "l": "kidney proximal convoluted tubule epithelial cell"}]} +{"type": "biolink:Cell", "ic": "70.906311464949411", "identifiers": [{"i": "CL:0000055", "l": "non-terminally differentiated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524461", "l": "Autologous Human Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes"}, {"i": "NCIT:C133191", "l": "Autologous Human Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1882046", "l": "Neoplastic Eccrine Cell"}, {"i": "NCIT:C62495", "l": "Neoplastic Eccrine Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157456", "l": "CD3+CD8+ (T8 suppressor cells) cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440937", "l": "Lymphocytes.activated T cells"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:4023009", "l": "extratelencephalic-projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323914", "l": "Set of cranial neural crest cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157504", "l": "CD36 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267908", "l": "Lymphocyte positive for both CD33 antigen and CD44 antigen"}, {"i": "SNOMEDCT:117579000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000374", "l": "transitional myocyte of posterior division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001003", "l": "mature CD8_alpha-negative CD11b-positive dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000056", "l": "Meynert cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2827689", "l": "Natural Killer Cells ZRx101"}, {"i": "NCIT:C85466", "l": "Natural Killer Cells ZRx101"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764038", "l": "Anti-CD38/BCMA CAR T-lymphocytes"}, {"i": "NCIT:C158087", "l": "Anti-CD38/BCMA CAR T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000720", "l": "anterior cone cell (sensu Endopterygota)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002618", "l": "endothelial cell of umbilical vein"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709904", "l": "Renal Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte"}, {"i": "NCIT:C48817", "l": "Renal Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000020", "l": "inner cell mass cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1707339", "l": "Neoplastic Centrocyte"}, {"i": "NCIT:C36743", "l": "Neoplastic Centrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1631818", "l": "Cells.CD20+CD117+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519454", "l": "Spider Cell"}, {"i": "NCIT:C36742", "l": "Spider Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5158327", "l": "Cells.CD3+CD4+CD8+ (Double positive) | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512121", "l": "EG Cell Line"}, {"i": "NCIT:C20231", "l": "EG Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955380", "l": "Spermatozoa structure"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953590", "l": "Type D enteroendocrine cell of epithelium proper of duodenum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002527", "l": "immature CD14-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000039", "l": "posterior lateral line neuromast supporting cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1516399", "l": "Cerebriform Lymphocyte"}, {"i": "NCIT:C39621", "l": "Cerebriform Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710606", "l": "Vacuolated Malignant Fibroblast"}, {"i": "NCIT:C49030", "l": "Vacuolated Malignant Fibroblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1708883", "l": "Malignant Hyperchromatic Epithelial Cell"}, {"i": "NCIT:C54245", "l": "Malignant Hyperchromatic Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002172", "l": "interdental cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "74.378130331796413", "identifiers": [{"i": "CL:0000228", "l": "multinucleate cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327375", "l": "Fibroblast of subepithelial connective tissue of prostatic gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000935", "l": "CD4-negative, CD8-negative, alpha-beta intraepithelial T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182627", "l": "Epithelial cell of gingival part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186221", "l": "Eosinophils | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000162", "l": "parietal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:3000002", "l": "sympathetic noradrenergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184819", "l": "Variant lymphocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4050542", "l": "Technetium Tc-99M Red Blood Cells"}, {"i": "SNOMEDCT:89818005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000938", "l": "CD16-negative, CD56-bright natural killer cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171723", "l": "Lymphocytes/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0025171", "l": "Megaloblasts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518847", "l": "Pagetoid Cell"}, {"i": "NCIT:C36871", "l": "Pagetoid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708921", "l": "Malignant Thyrotroph Cell"}, {"i": "NCIT:C45948", "l": "Malignant Thyrotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4515377", "l": "Entire endocrine pancreas cell"}, {"i": "SNOMEDCT:730209004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326632", "l": "Fibroblast of connective tissue of prostate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157611", "l": "CD55 Granulocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2350175", "l": "Erythroid Progenitor Cells"}, {"i": "NCIT:C12526", "l": "Erythroid Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D009000", "l": "Monocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12638", "l": "Retinal Rod"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157924", "l": "Cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0600432", "l": "K562 Cells"}, {"i": "MESH:D020014", "l": "K562 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000087", "l": "dentate gyrus of hippocampal formation basket cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D004900", "l": "Erythroblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157286", "l": "CD126 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0010006", "l": "cardiac blood vessel endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002166", "l": "epithelial cell of Malassez"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157463", "l": "CD3+CD8+CD57+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333726", "l": "Type D1 enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4552764", "l": "Mesenchymal Progenitor Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0487022", "l": "Irregularly contracted cell"}, {"i": "SNOMEDCT:725684008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002163", "l": "internal pillar cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000850", "l": "serotonergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524978", "l": "Intestinal Secretin Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268010", "l": "Megakaryocytic cell"}, {"i": "SNOMEDCT:127918005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002519", "l": "interrenal epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257792", "l": "Vascular Endothelial Cells"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000019", "l": "sperm"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C0682546", "l": "Acidophil cell"}, {"i": "NCIT:C32044", "l": "Acidophilic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002502", "l": "type M enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323725", "l": "Cranial neural crest cell group"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710151", "l": "Spindle B Melanoma Cell"}, {"i": "NCIT:C54159", "l": "Spindle B Melanoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267990", "l": "Lymphocyte positive for CD104 antigen"}, {"i": "SNOMEDCT:117430006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440420", "l": "Cells.t(X;18)(q11.2;p11.22)(SS18,SSX2)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517734", "l": "Large Multinucleated Erythroid Cell"}, {"i": "NCIT:C37055", "l": "Large Multinucleated Erythroid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0029330", "l": "Orthochromic normoblast (cell)"}, {"i": "UMLS:C2350151", "l": "Normoblasts"}, {"i": "SNOMEDCT:113334004"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000453", "l": "epithelial cell of intermediate tubule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441140", "l": "Reticulocytes.aggregate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440343", "l": "Cells.CD66a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000116", "l": "pioneer neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522374", "l": "Dendritic Cell - Langerhans Cell (MMHCC)"}, {"i": "NCIT:C24191", "l": "Mouse Langerhans Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000918", "l": "Tc2 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517726", "l": "Glandular cell of large intestine"}, {"i": "NCIT:C32925", "l": "Large Intestinal Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512105", "l": "Dysplastic Granulocyte"}, {"i": "NCIT:C37051", "l": "Dysplastic Granulocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512446", "l": "High Grade Malignant Transitional Cell"}, {"i": "NCIT:C36838", "l": "High Grade Malignant Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267815", "l": "Lymphocyte positive for both CD2 antigen and CD26 antigen"}, {"i": "SNOMEDCT:117518002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336187", "l": "Smooth muscle fiber of prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0314589", "l": "Granulocyte-Macrophage Colony Forming Units"}, {"i": "NCIT:C121475", "l": "Granulocyte-Macrophage Colony Forming Unit"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697024", "l": "Cells.CD27+IgD+IgM+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000109", "l": "adrenergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440366", "l": "Cells.CD9"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322674", "l": "CD8+CD56+ NK lymphocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1512992", "l": "Marginal Zone B-Lymphocyte"}, {"i": "NCIT:C38729", "l": "Marginal Zone B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174622", "l": "Neutrophils | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000073", "l": "spinal cord radial glial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0017528", "l": "Giant Cells, Langhans"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1513984", "l": "Neoplastic Histiocyte"}, {"i": "NCIT:C36888", "l": "Neoplastic Histiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000979", "l": "ureter smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:3000003", "l": "sympathetic cholinergic neuron"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1513172", "l": "Metaplastic Epithelial Cell"}, {"i": "NCIT:C36816", "l": "Metaplastic Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709198", "l": "Neoplastic Sebocyte"}, {"i": "NCIT:C43338", "l": "Neoplastic Sebocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1444184", "l": "Entire cleidoic ovum"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1518176", "l": "Malignant Epithelial Giant Cell"}, {"i": "NCIT:C36824", "l": "Malignant Epithelial Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3494245", "l": "Sf9 Cells"}, {"i": "MESH:D061987", "l": "Sf9 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002051", "l": "CD38-high pre-BCR positive cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950600", "l": "Type D cell of jejunum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440410", "l": "Cells.t(21;22)(q22.3;q12.2)(ERG,EWSR1)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000071", "l": "mammary microvascular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011109", "l": "hypocretin-secreting neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229636", "l": "Neutrophilic promyelocyte"}, {"i": "SNOMEDCT:34254002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724838", "l": "iC9-GD2-CAR-CD28-OX40-expressing Autologous NKT Cells"}, {"i": "NCIT:C148135", "l": "iC9-GD2-CAR-CD28-OX40-expressing Autologous NKT Cells"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C0005773", "l": "Blood Cells"}, {"i": "NCIT:C12519", "l": "Peripheral Blood Cell"}, {"i": "MESH:D001773", "l": "Blood Cells"}, {"i": "SNOMEDCT:63370004"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1517654", "l": "Karolinska ES Cell Line"}, {"i": "NCIT:C20267", "l": "Karolinska ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177451", "l": "Plasma cell precursor | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002062", "l": "type I pneumocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1135970", "l": "Theca lutein cell"}, {"i": "NCIT:C33761", "l": "Theca Lutein Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008022", "l": "endocardial cushion cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0009016", "l": "intestinal crypt stem cell of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3642320", "l": "Immature Malignant Mast Cell"}, {"i": "NCIT:C37063", "l": "Immature Malignant Mast Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708863", "l": "Malignant Cell with Large Nucleus and Abundant Eosinophilic Cytoplasm"}, {"i": "NCIT:C53666", "l": "Malignant Cell with Large Nucleus and Abundant Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186857", "l": "Nucleated erythrocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000564", "l": "neutrophilic promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000939", "l": "CD16-positive, CD56-dim natural killer cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157562", "l": "CD41 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725853", "l": "CAR T-Cells AMG 119"}, {"i": "NCIT:C150586", "l": "CAR T-Cells AMG 119"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009058", "l": "enterocyte of anorectum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000581", "l": "peritoneal macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174613", "l": "Neutrophils | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899815", "l": "CD30 CAR-expressing Autologous T Lymphocytes"}, {"i": "NCIT:C116738", "l": "CD30 CAR-expressing Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023027", "l": "L5 T-Martinotti sst GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:4023050", "l": "L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440406", "l": "Cells.t(14;18)(q32;q21.3)(IGH,BCL2)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000321", "l": "large intestine crypt goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725078", "l": "Hepatitis B Virus Antigen Peptides/Hepatitis G2 Cell Protein Lysate-activated Dendritic Cells"}, {"i": "NCIT:C148495", "l": "Hepatitis B Virus Antigen Peptides/Hepatitis G2 Cell Protein Lysate-activated Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512330", "l": "Hallmark Cell"}, {"i": "NCIT:C39679", "l": "Hallmark Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0017670", "l": "Glomus jugulare"}, {"i": "MESH:D005924", "l": "Glomus Jugulare"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157450", "l": "CD3+CD56+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517643", "l": "KA43"}, {"i": "NCIT:C20273", "l": "KA43"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12532", "l": "Eosinophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518308", "l": "Neutrophil with Pseudo Chediak-Higashi Granules"}, {"i": "NCIT:C37175", "l": "Neutrophil with Pseudo Chediak-Higashi Granules"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899032", "l": "Genetically Engineered NY-ESO-1-specific T Lymphocytes"}, {"i": "NCIT:C116846", "l": "Genetically Engineered NY-ESO-1-specific T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173430", "l": "Monocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170919", "l": "Leukocytes | Blood product unit | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1719174", "l": "Cells.CD19+CD27+IgD+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002562", "l": "hair germinal matrix cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023056", "l": "vascular leptomeningeal cell (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267892", "l": "Lymphocyte positive for CD22 antigen"}, {"i": "SNOMEDCT:116819008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827138", "l": "Autologous CT7/MAGE-A3/WT1 mRNA-Electroporated Langerhans-Type Dendritic Cells"}, {"i": "NCIT:C113174", "l": "Autologous CT7/MAGE-A3/WT1 mRNA-Electroporated Langerhans-Type Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000991", "l": "CD11c-negative plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C0221910", "l": "Squamous Epithelial Cells"}, {"i": "NCIT:C12849", "l": "Squamous Cell"}, {"i": "SNOMEDCT:80554009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002009", "l": "macrophage dendritic cell progenitor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000079", "l": "mesenchymal stem cell of femoral bone marrow"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979665", "l": "Cells.CD19+CD43+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000857", "l": "slow muscle myoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000361", "l": "gastrula cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440224", "l": "CD43.T-Cell monocyte+Myeloid cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0002252", "l": "epithelial cell of esophagus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0598786", "l": "Ground Glass Hepatocyte"}, {"i": "NCIT:C83011", "l": "Ground Glass Hepatocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12569", "l": "Osteocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179870", "l": "Nodal myocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514092", "l": "Neoplastic Small Round Cell"}, {"i": "NCIT:C37100", "l": "Neoplastic Small Round Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002433", "l": "CD69-positive, CD4-positive single-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183899", "l": "Luminal cell of prostatic duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12565", "l": "Alveolar Macrophage"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C38331", "l": "Intraepithelial T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514045", "l": "Neoplastic Neuroendocrine Polygonal Cell"}, {"i": "NCIT:C36933", "l": "Neoplastic Neuroendocrine Polygonal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333240", "l": "Non-nucleated solocyte"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002352", "l": "gestational hematopoietic stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3825466", "l": "Paraneurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181535", "l": "Chromaffin cell of paraaortic body"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000545", "l": "T-helper 1 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708922", "l": "Malignant Transitional Cell with Clear Cytoplasm"}, {"i": "NCIT:C54561", "l": "Malignant Transitional Cell with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268005", "l": "Hematopoietic precursor cell"}, {"i": "SNOMEDCT:127911004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350827", "l": "Ciliary Photoreceptor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512547", "l": "Hyperchromatic Adipocyte"}, {"i": "NCIT:C36979", "l": "Hyperchromatic Adipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513081", "l": "Mouse Megakaryocyte"}, {"i": "NCIT:C22567", "l": "Mouse Megakaryocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2699753", "l": "TGF-beta-Resistant LMP-Specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C77859", "l": "TGF-beta-Resistant LMP-Specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180939", "l": "Sickle cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "72.96845868813736", "identifiers": [{"i": "CL:1000854", "l": "kidney blood vessel cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000301", "l": "fibroblast of subepithelial connective tissue of prostatic gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763651", "l": "Allogeneic Tri-functional Anti-CD19 CAR-NK Cells"}, {"i": "NCIT:C157484", "l": "Allogeneic Tri-functional Anti-CD19 CAR-NK Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055460", "l": "Anti-CEA-CAR Autologous T Lymphocytes"}, {"i": "NCIT:C121784", "l": "Anti-CEA-CAR Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652652", "l": "indium (111In) tropolonate labelled cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000357", "l": "stratified epithelial stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4087054", "l": "Donor-derived WT1/PRAME/NY-ESO-1/Survivin-specific T-lymphocytes"}, {"i": "NCIT:C123817", "l": "Donor-derived WT1/PRAME/NY-ESO-1/Survivin-specific T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326252", "l": "Monopoietic cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514171", "l": "Pleomorphic Connective and Soft Tissue Cell"}, {"i": "NCIT:C37112", "l": "Pleomorphic Connective and Soft Tissue Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002511", "l": "CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514933", "l": "Rhabdoid Cell"}, {"i": "NCIT:C37149", "l": "Rhabdoid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000486", "l": "garland cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514520", "l": "Prostatic Glandular Cell"}, {"i": "NCIT:C33409", "l": "Prostatic Glandular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333841", "l": "Hunter-Hurler cell"}, {"i": "SNOMEDCT:84702007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513017", "l": "Maturation-Stage Ameloblast"}, {"i": "NCIT:C33057", "l": "Maturation-Stage Ameloblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000038", "l": "posterior lateral line neuromast mantle cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000547", "l": "kidney inner medulla collecting duct epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000024", "l": "oogonial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001451", "l": "sensory neuron of dorsal root ganglion"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682542", "l": "ciliated cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1513974", "l": "Neoplastic Glandular Cell with Clear Cytoplasm"}, {"i": "NCIT:C36765", "l": "Neoplastic Glandular Cell with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514079", "l": "Neoplastic Round Neuroepithelial Cell"}, {"i": "NCIT:C42092", "l": "Neoplastic Round Neuroepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000613", "l": "basophil progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510908", "l": "Blast cell positive for CD135 antigen"}, {"i": "SNOMEDCT:724253008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180090", "l": "Non-nucleated lens fiber"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697030", "l": "Cells.CD38+ IgM-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317333", "l": "Erythrocytes.lytic resistant"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682550", "l": "silver-staining cell"}]} +{"type": "biolink:Cell", "ic": "76.125169645393314", "identifiers": [{"i": "UMLS:C1522639", "l": "Leukocyte (WBC) (MMHCC)"}, {"i": "NCIT:C22570", "l": "Mouse Leukocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000370", "l": "transitional myocyte of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157453", "l": "CD3+CD62L+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764288", "l": "Anti-EGFR CAR-transduced IL-12-expressing T-lymphocytes"}, {"i": "NCIT:C158602", "l": "Anti-EGFR CAR-transduced IL-12-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545591", "l": "Blood, other cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000299", "l": "fibroblast of connective tissue of prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002672", "l": "retinal progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322734", "l": "FMC-7+ B lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440270", "l": "Cells.CD1a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170928", "l": "Leukocytes | Ear | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3282339", "l": "Cells, Cultured, Allogeneic"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163741", "l": "Erythrocytes.dysmorphic | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163558", "l": "Epithelial cells.squamous | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000102", "l": "polymodal neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513966", "l": "Neoplastic Fibroblast-Like Cell"}, {"i": "NCIT:C36959", "l": "Neoplastic Fibroblast-Like Cell"}]} +{"type": "biolink:Cell", "ic": "75.582117822819498", "identifiers": [{"i": "CL:0000568", "l": "amine precursor uptake and decarboxylation cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001607", "l": "articular chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333804", "l": "Stomatocyte (cell)"}, {"i": "SNOMEDCT:10636005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019028", "l": "midzonal region hepatocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157506", "l": "CD36 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "67.619415617667244", "identifiers": [{"i": "CL:0000099", "l": "interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596889", "l": "Mauthner's neuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023083", "l": "chandelier cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183362", "l": "Type-6 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2983776", "l": "Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2"}, {"i": "NCIT:C90577", "l": "Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000083", "l": "epithelial cell of pancreas"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182654", "l": "Corneal endothelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0935440", "l": "Cuboidal cell"}, {"i": "NCIT:C13157", "l": "Cuboidal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184142", "l": "Luminal cell of lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174616", "l": "Neutrophils | Control | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1709176", "l": "Neoplastic Follicle Center B-Cell"}, {"i": "NCIT:C45317", "l": "Neoplastic Follicle Center B-Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181333", "l": "Spermatogonia | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D020671", "l": "Posterior Horn Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000383", "l": "nephrogenic mesenchyme stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709165", "l": "Neoplastic C-Cell"}, {"i": "NCIT:C47802", "l": "Neoplastic C-Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000082", "l": "melanocyte of foreskin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5148824", "l": "Reticulocytes.low fluorescence"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440247", "l": "Cells.CD11c+CD20+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002455", "l": "CD8_alpha-negative plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524458", "l": "Upper motor neuron"}, {"i": "SNOMEDCT:91769000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157495", "l": "CD34 cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881196", "l": "Indium In 111-Labeled Autologous Polymorphonuclear Leukocytes"}, {"i": "NCIT:C67086", "l": "Indium In 111-Labeled Autologous Polymorphonuclear Leukocytes"}]} +{"type": "biolink:Cell", "ic": "57.776573636475689", "identifiers": [{"i": "CL:0000404", "l": "electrically signaling cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000421", "l": "coelomocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184310", "l": "Epithelial cell of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002642", "l": "epithelial cell of esophageal cardiac gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440264", "l": "Cells.CD18"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334588", "l": "Pyramidal cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "75.848614326174683", "identifiers": [{"i": "CL:0010011", "l": "cerebral cortex GABAergic interneuron"}]} +{"type": "biolink:Cell", "ic": "62.195236199606647", "identifiers": [{"i": "CL:0002078", "l": "meso-epithelial cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0000135", "l": "fibrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327016", "l": "Type I cell of adrenal cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157925", "l": "Cells | Right anterior chamber | NEI eyeGENE slit lamp biomicroscopy"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511887", "l": "Population of all epithelial cells in portion of fluid"}, {"i": "SNOMEDCT:726504009"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0002092", "l": "bone marrow cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1709468", "l": "Parathyroid Gland Parenchymal Cell"}, {"i": "NCIT:C48257", "l": "Parathyroid Gland Parenchymal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330221", "l": "Goblet cell of epithelium of intestinal villus"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000771", "l": "eosinophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170904", "l": "Leukocyte clumps | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002568", "l": "mesenchymal stem cell of Wharton's jelly"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009020", "l": "tuft cell of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157614", "l": "CD55+CD59 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000534", "l": "primary interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514024", "l": "Neoplastic Merkel Cell"}, {"i": "NCIT:C37098", "l": "Neoplastic Merkel Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001106", "l": "kidney loop of Henle thick ascending limb epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725079", "l": "Autologous PSMA-specific TGFb-resistant CAR T Cells"}, {"i": "NCIT:C148496", "l": "Autologous PSMA-specific TGFb-resistant CAR T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514591", "l": "Pseudoxanthoma Cell"}, {"i": "NCIT:C36740", "l": "Pseudoxanthoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170931", "l": "Leukocytes | Gastric fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000506", "l": "enkephalin secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157280", "l": "CD122 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177783", "l": "Polymorphonuclear cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000384", "l": "type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000276", "l": "smooth muscle fiber of duodenum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001595", "l": "rectum glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000436", "l": "vaginal lubricant secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0205878", "l": "Glomus tympanicum"}, {"i": "MESH:D043485", "l": "Glomus Tympanicum"}, {"i": "SNOMEDCT:181381004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2987399", "l": "Anti-CD3 x Anti-CD20 Bispecific Antibody-Armed Activated T Cells"}, {"i": "NCIT:C95751", "l": "Anti-CD3 x Anti-CD20 Bispecific Antibody-Armed Activated T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002018", "l": "CD71-negative, GlyA-positive orthochromatic erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2951544", "l": "Type D enteroendocrine cell of epithelium proper of jejunum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1719198", "l": "Cells.CD20+CD52+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0029418", "l": "Osteoblasts"}, {"i": "NCIT:C12568", "l": "Osteoblast"}, {"i": "MESH:D010006", "l": "Osteoblasts"}, {"i": "SNOMEDCT:48156001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157407", "l": "CD24 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5148041", "l": "Monocytes.CD55"}]} +{"type": "biolink:Cell", "ic": "66.108910517769971", "identifiers": [{"i": "NCIT:C12535", "l": "Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0019001", "l": "tracheobronchial serous cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268458", "l": "Cell positive for CD43 antigen"}, {"i": "SNOMEDCT:116833008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182619", "l": "Epithelial cell of lacrimal sac"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002049", "l": "Fraction C precursor B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440149", "l": "Blasts.CD7"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711269", "l": "Neoplastic Lactotroph Cell with Large Secretory Granules"}, {"i": "NCIT:C45952", "l": "Neoplastic Lactotroph Cell with Large Secretory Granules"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440336", "l": "Cells.CD6"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1519467", "l": "Spindle Melanocyte"}, {"i": "NCIT:C36869", "l": "Spindle Melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267914", "l": "Lymphocyte positive for CD37 antigen"}, {"i": "SNOMEDCT:117583000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0025207", "l": "Melanophores"}, {"i": "NCIT:C12582", "l": "Melanophore"}, {"i": "MESH:D008547", "l": "Melanophores"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184822", "l": "Variant lymphocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2826134", "l": "Human Myeloid Progenitor Cells CLT-008"}, {"i": "UMLS:C2830065", "l": "CLT-008"}, {"i": "NCIT:C82381", "l": "Romyelocel-L"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000096", "l": "mature neutrophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724851", "l": "Allogeneic TCR alpha/beta-positive T-lymphocyte-depleted Peripheral Blood Stem Cells"}, {"i": "NCIT:C148149", "l": "Allogeneic TCR alpha/beta-positive T-lymphocyte-depleted Peripheral Blood Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514392", "l": "Premalignant Cell"}, {"i": "NCIT:C12976", "l": "Premalignant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267861", "l": "Lymphoblast positive for CD10 antigen"}, {"i": "SNOMEDCT:117543008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002312", "l": "somatotroph"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254945", "l": "Okt3 Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516965", "l": "Keratinized squamous cell of esophagus"}, {"i": "NCIT:C32542", "l": "Esophageal Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440346", "l": "Cells.CD66d"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517359", "l": "GE92"}, {"i": "NCIT:C20262", "l": "GE92"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022891", "l": "Labyrinth Supporting Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682524", "l": "fibroblast cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518312", "l": "Nevus Cell A-Type"}, {"i": "NCIT:C36864", "l": "Nevus Cell A-Type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000091", "l": "Kupffer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986394", "l": "Allogeneic Natural Killer Cell Line MG4101"}, {"i": "NCIT:C94209", "l": "Allogeneic Natural Killer Cell Line MG4101"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441143", "l": "Reticulocytes.mid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228071", "l": "Ganglion cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157498", "l": "CD34+CD117+ blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522151", "l": "Leukocyte - Lymphocyte - Thymocyte (MMHCC)"}, {"i": "NCIT:C22583", "l": "Mouse Thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2717771", "l": "Generative Cells, Plant"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000377", "l": "tracheoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001099", "l": "kidney efferent arteriole endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246839", "l": "Sacral/lumbosacral neural crest cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736933", "l": "Cells.CD3+CD8+CD45+"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:2000064", "l": "ovarian surface epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225700", "l": "Type-II Pneumocytes"}, {"i": "NCIT:C32055", "l": "Alveolar Cell Type II"}, {"i": "SNOMEDCT:52782001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0947288", "l": "Cell positive for CD71 antigen"}, {"i": "SNOMEDCT:116830006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163437", "l": "Eosinophils | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254552", "l": "Band Form Leukocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2359895", "l": "Platelets.reticulated"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687450", "l": "Autologous TCR-engineered T-cells IMA201"}, {"i": "NCIT:C146779", "l": "Autologous TCR-engineered T-cells IMA201"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157457", "l": "CD3+CD8+ (T8 suppressor cells) cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267884", "l": "Lymphocyte positive for CD18 antigen"}, {"i": "SNOMEDCT:117561004"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0011013", "l": "motile sperm cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000277", "l": "smooth muscle fiber of jejunum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440348", "l": "Cells.CD68"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177453", "l": "Plasma cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0242873", "l": "Muscle Fibers, Fast-Twitch"}, {"i": "NCIT:C12613", "l": "Fast-Twitch Muscle Fiber"}, {"i": "MESH:D018656", "l": "Muscle Fibers, Fast-Twitch"}, {"i": "SNOMEDCT:87812003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009092", "l": "endothelial cell of placenta"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002250", "l": "intestinal crypt stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684462", "l": "Autologous CD4 and CD8 Positive Truncated CD19-expressing Antigen Presenting T-cells"}, {"i": "NCIT:C142205", "l": "Autologous CD4 and CD8 Positive Truncated CD19-expressing Antigen Presenting T-cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1881357", "l": "Large Adenocarcinoma Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C61110", "l": "Large Adenocarcinoma Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2359880", "l": "Transfuse platelet concentrate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267864", "l": "Lymphocyte positive for CD11 antigen"}, {"i": "SNOMEDCT:117545001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167386", "l": "Histiocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882048", "l": "Neoplastic Epithelial Cell with Granular Cytoplasm"}, {"i": "NCIT:C62102", "l": "Neoplastic Epithelial Cell with Granular Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882055", "l": "Neoplastic Large Polygonal Sertoli Cell"}, {"i": "NCIT:C61417", "l": "Neoplastic Large Polygonal Sertoli Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154480", "l": "Basophils | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011100", "l": "galanergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170922", "l": "Leukocytes | Bronchial | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979638", "l": "Blasts.CD1a"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000217", "l": "growth plate cartilage chondrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511008", "l": "BG03"}, {"i": "NCIT:C20235", "l": "BG03"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000080", "l": "mesenchymal stem cell of abdominal adipose tissue"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440332", "l": "Cells.CD53"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0005821", "l": "Blood Platelets"}, {"i": "NCIT:C12520", "l": "Platelet"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512899", "l": "Interphase Cell"}, {"i": "NCIT:C32869", "l": "Interphase Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317193", "l": "Cells.CD23+CD38+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1516090", "l": "Atypical Chondrocyte"}, {"i": "NCIT:C36984", "l": "Atypical Chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740238", "l": "Spermatozoa.excess residual cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178786", "l": "Noradrenergic Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507174", "l": "Cells.CD4+CD28+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514438", "l": "Primitive Mesenchymal Stellate Cell"}, {"i": "NCIT:C36928", "l": "Primitive Mesenchymal Stellate Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267923", "l": "Lymphocyte positive for CD42C antigen"}, {"i": "SNOMEDCT:117367004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4763654", "l": "Therapeutic Ex Vivo-expanded Allogeneic gamma delta T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724925", "l": "Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells ST-400"}, {"i": "NCIT:C148240", "l": "Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells ST-400"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267849", "l": "Lymphocyte positive for both CD5 antigen and CD8 antigen"}, {"i": "SNOMEDCT:117535003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517543", "l": "Giant Cell with Myoblastic Differentiation"}, {"i": "NCIT:C36828", "l": "Giant Cell with Myoblastic Differentiation"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1523993", "l": "Leukocyte - Monocyte - Macrophage (MMHCC)"}, {"i": "NCIT:C22587", "l": "Mouse Macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002052", "l": "Fraction D precursor B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709210", "l": "Neoplastic Vacuolated Stromal Cell"}, {"i": "NCIT:C54090", "l": "Neoplastic Vacuolated Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086505", "l": "ICT-121 Dendritic Cell Vaccine"}, {"i": "NCIT:C124652", "l": "ICT-121 Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727561", "l": "Autologous NY-ESO-1-redirected CRISPR-edited T Cells"}, {"i": "NCIT:C154288", "l": "Autologous NY-ESO-1-redirected CRISPR-edited T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000329", "l": "tracheal goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000479", "l": "vasopressin stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002016", "l": "CD71-low, GlyA-positive polychromatic erythroblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000434", "l": "eccrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000357", "l": "microfold cell of epithelium proper of jejunum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2346934", "l": "Malignant Fusiform Osteoblast"}, {"i": "NCIT:C67521", "l": "Malignant Fusiform Osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D052940", "l": "Merozoites"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267808", "l": "SMIG+ lymphocyte"}, {"i": "SNOMEDCT:117512001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1113687", "l": "human embryonic stem cell line"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0949666", "l": "Oxyphil Cells"}, {"i": "NCIT:C12654", "l": "Oxyphil Cell"}, {"i": "MESH:D024862", "l": "Oxyphil Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267827", "l": "T lymphocyte positive for both CD8 antigen and CD11a antigen"}, {"i": "SNOMEDCT:115413008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1257739", "l": "NIH 3T3 Cells"}, {"i": "NCIT:C17422", "l": "NIH/3T3"}, {"i": "MESH:D041681", "l": "NIH 3T3 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157336", "l": "CD179a blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000002", "l": "decidual cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002429", "l": "CD69-positive double-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1953343", "l": "Chromosome number"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546492", "l": "P.B. neutrophilic myelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514276", "l": "Postradiation Dysplastic Glandular Cell"}, {"i": "NCIT:C36805", "l": "Postradiation Dysplastic Glandular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3172534", "l": "Cells.CD3+CD5-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086005", "l": "Autologous Cytotoxic T-lymphocytes Induced with MUC1 Gene-transfected Dendritic Cells"}, {"i": "NCIT:C124997", "l": "Autologous Cytotoxic T-lymphocytes Induced with MUC1 Gene-transfected Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518162", "l": "Population of all immature spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:725438007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4245839", "l": "Set of specialized cardiac muscle cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179491", "l": "Epithelial cell of Malassez"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545577", "l": "Marrow plasma cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002541", "l": "chorionic membrane mesenchymal stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329893", "l": "Type N enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155100", "l": "Bizarre cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002446", "l": "Ly49CI-negative natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517107", "l": "Faggot Cell"}, {"i": "NCIT:C37052", "l": "Faggot Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000560", "l": "band form neutrophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326142", "l": "Keratinized squamous cell"}]} +{"type": "biolink:Cell", "ic": "69.997272734060871", "identifiers": [{"i": "CL:0000630", "l": "supporting cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002118", "l": "CD38-negative IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000033", "l": "limb basal cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350246", "l": "Monocyte-Macrophage Precursor Cells"}, {"i": "MESH:D055017", "l": "Monocyte-Macrophage Precursor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924433", "l": "Intestinal goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333810", "l": "Knizocyte"}, {"i": "SNOMEDCT:84082000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000374", "l": "trichogen cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545461", "l": "Cells.CD11c+CD19+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268443", "l": "Normal cell"}, {"i": "SNOMEDCT:118957004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174093", "l": "Myeloblasts/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000049", "l": "common myeloid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000565", "l": "Ameloblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736930", "l": "Cells.CD19+CD34+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002524", "l": "disseminated nephrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335233", "l": "Basal cell of epithelium of respiratory bronchiole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1512035", "l": "Dopaminergic Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225369", "l": "Chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179962", "l": "Round cells | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178284", "l": "Prolymphocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516097", "l": "B lymphoblast"}, {"i": "NCIT:C33931", "l": "Precursor B-Lymphoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1623039", "l": "Veiled Cells"}, {"i": "SNOMEDCT:127942009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3642419", "l": "Autologous Pluripotent ALDHbr Stem Cells ALD-451"}, {"i": "NCIT:C78466", "l": "Autologous Pluripotent ALDHbr Stem Cells ALD-451"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002000", "l": "Kit-positive erythroid progenitor cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000386", "l": "attachment cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157395", "l": "CD22 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516469", "l": "Chicken Cells"}, {"i": "NCIT:C18695", "l": "Chicken Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009062", "l": "germinal center T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324975", "l": "Enterocyte of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4759709", "l": "Meiotic cell"}, {"i": "SNOMEDCT:55164002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744787", "l": "Alpha/Beta T-Lymphocyte"}, {"i": "NCIT:C156387", "l": "Alpha/Beta T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180383", "l": "Specialized cardiac myocyte"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0001006", "l": "dermal dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177457", "l": "Plasma cells immature | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440291", "l": "Cells.CD3+DR+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002339", "l": "prostate stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000087", "l": "male germ line stem cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513999", "l": "Neoplastic Large Cell with Abundant Eosinophilic Cytoplasm"}, {"i": "NCIT:C37106", "l": "Neoplastic Large Cell with Abundant Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157637", "l": "CD64 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157948", "l": "Cells other than spermatozoa | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157471", "l": "CD3+IL2R1+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0009006", "l": "enteroendocrine cell of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225667", "l": "Dense-core granulated cell"}, {"i": "SNOMEDCT:85615000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3251824", "l": "Cell positive for CD4 antigen"}, {"i": "SNOMEDCT:116745007"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000566", "l": "angioblastic mesenchymal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684836", "l": "Autologous Dendritic Cells Pulsed with MART-1 (26-35) Peptide"}, {"i": "NCIT:C142814", "l": "Autologous Dendritic Cells Pulsed with MART-1 (26-35) Peptide"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520103", "l": "WA01 cell line"}, {"i": "NCIT:C20308", "l": "WA01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518367", "l": "Non-Keratinizing Malignant Large Squamous Cell"}, {"i": "NCIT:C36793", "l": "Non-Keratinizing Malignant Large Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000175", "l": "luteal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522040", "l": "Signet Ring Adenocarcinoma Cell"}, {"i": "NCIT:C36777", "l": "Signet Ring Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157261", "l": "CD117 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D009046", "l": "Motor Neurons"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000884", "l": "mucosa-associated lymphoid tissue macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440400", "l": "Cells.t(11;19)(q23;p13.3)(MLL,MLLT1)"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514089", "l": "Neoplastic Small Lymphocyte"}, {"i": "NCIT:C36998", "l": "Neoplastic Small Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0002293", "l": "epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764289", "l": "Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901"}, {"i": "NCIT:C158604", "l": "Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001014", "l": "CD1a-positive Langerhans cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3642444", "l": "CD19CAR-CD3zeta-expressing Autologous T lymphocytes"}, {"i": "NCIT:C88266", "l": "CD19CAR-CD3zeta-expressing Autologous T lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157597", "l": "CD5+CD2- | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513950", "l": "Neoplastic Elongated Glial Cell"}, {"i": "NCIT:C37144", "l": "Neoplastic Elongated Glial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697020", "l": "Cells.CD25-CD127+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177468", "l": "Plasma cells/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253021", "l": "Set of type A cells of pancreatic islet"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257975", "l": "Mesenchymal Stem Cells"}, {"i": "SNOMEDCT:418124002"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:1000617", "l": "kidney inner medulla cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002154", "l": "early promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708880", "l": "Malignant Goblet-Like Mucous Cell"}, {"i": "NCIT:C47812", "l": "Malignant Goblet-Like Mucous Cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0000682", "l": "M cell of gut"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000031", "l": "neuroblast (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2348032", "l": "Cytokine-Induced Killer Cells"}, {"i": "NCIT:C71757", "l": "Cytokine-Induced Killer Cells"}, {"i": "MESH:D055612", "l": "Cytokine-Induced Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708917", "l": "Malignant Spindle-Shaped Smooth Muscle Cell"}, {"i": "NCIT:C49126", "l": "Malignant Spindle-Shaped Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322819", "l": "CD198+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257741", "l": "BALB 3T3 Cells"}, {"i": "MESH:D041702", "l": "BALB 3T3 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682539", "l": "cuboid cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C0151776", "l": "Abnormal megakaryocyte"}, {"i": "NCIT:C37043", "l": "Abnormal Megakaryocyte"}, {"i": "SNOMEDCT:68425008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956051", "l": "Hair Cells, Ampulla"}, {"i": "MESH:D054777", "l": "Hair Cells, Ampulla"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002169", "l": "basal cell of olfactory epithelium"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000308", "l": "metal ion accumulating cell"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1518216", "l": "Malignant Neuroendocrine Cell"}, {"i": "NCIT:C36825", "l": "Malignant Neuroendocrine Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184417", "l": "Unspecified cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827096", "l": "Anti-CD19-CAR-CD3zeta-4-1BB-Expressing Allogenic Natural Killer Cells"}, {"i": "UMLS:C4722559", "l": "NKCARCD19"}, {"i": "NCIT:C112179", "l": "Anti-CD19-CAR-CD3zeta-4-1BB-Expressing Allogenic Natural Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317194", "l": "Cells.CD235a"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009079", "l": "thymic fibroblast type 2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3896829", "l": "Axicabtagene ciloleucel"}, {"i": "MESH:C000629083", "l": "axicabtagene ciloleucel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0521392", "l": "Peripheral motor neuron"}, {"i": "SNOMEDCT:18249007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324238", "l": "Transitional myocyte of anterior division of left branch of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:1000615", "l": "kidney cortex tubule cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D003713", "l": "Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023043", "l": "L5/6 near-projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322678", "l": "Chromosome pair"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514018", "l": "Neoplastic Medium-Sized T-Lymphocyte"}, {"i": "NCIT:C39600", "l": "Neoplastic Medium-Sized T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000718", "l": "kidney inner medulla collecting duct principal cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000168", "l": "insulin secreting cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1709675", "l": "Primitive Skeletal Muscle Cell"}, {"i": "NCIT:C49200", "l": "Primitive Skeletal Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510781", "l": "Adenocarcinoma Cell with Intranuclear Inclusion"}, {"i": "NCIT:C36876", "l": "Adenocarcinoma Cell with Intranuclear Inclusion"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183202", "l": "Set of cholinergic cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172549", "l": "Metamyelocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "76.125169645393314", "identifiers": [{"i": "CL:0002202", "l": "epithelial cell of tracheobronchial tree"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708900", "l": "Malignant Parathyroid Gland Clear Cell"}, {"i": "NCIT:C48270", "l": "Malignant Parathyroid Gland Clear Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710399", "l": "Thymic Epithelial Stem Cell"}, {"i": "NCIT:C45723", "l": "Thymic Epithelial Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163727", "l": "Erythrocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180270", "l": "Myoepithelial cell of sweat gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002228", "l": "primary lens fiber"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496149", "l": "A17 dopamine cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002271", "l": "type EC1 enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170946", "l": "Leukocytes | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009029", "l": "mesothelial cell of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1278781", "l": "Entire thyroid parafollicular cell"}, {"i": "SNOMEDCT:176770005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304630", "l": "Population of all acanthocytes in portion of fluid"}, {"i": "SNOMEDCT:719690001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725690", "l": "Autologous Anti-CD19 CAR-T Cells TBI-1501"}, {"i": "NCIT:C150377", "l": "Autologous Anti-CD19 CAR-T Cells TBI-1501"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000055", "l": "liver dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640295", "l": "Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo"}, {"i": "NCIT:C101891", "l": "Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002353", "l": "fetal liver hematopoietic progenitor cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000371", "l": "protoplast"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:0000867", "l": "secondary lymphoid organ macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000013", "l": "fibroblast of skin of abdomen"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1519839", "l": "Urothelial Cell"}, {"i": "NCIT:C33841", "l": "Urothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002607", "l": "migratory enteric neural crest cell"}]} +{"type": "biolink:Cell", "ic": "64.67771801809657", "identifiers": [{"i": "UMLS:C1510724", "l": "Abnormal Glandular Cell"}, {"i": "NCIT:C36764", "l": "Abnormal Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002456", "l": "CD8_alpha-positive plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511162", "l": "Blast cell positive for cytoplasmic CD22 antigen"}, {"i": "SNOMEDCT:725482003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1257772", "l": "Colony-Forming Units, Erythroid"}, {"i": "NCIT:C121533", "l": "Erythroid Colony Forming Unit"}, {"i": "SNOMEDCT:445399000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711302", "l": "Malignant Parathyroid Gland Oncocyte"}, {"i": "NCIT:C48273", "l": "Malignant Parathyroid Gland Oncocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000559", "l": "promonocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5185096", "l": "Viable CD34 cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512993", "l": "Marginal Zone B-Lymphocyte of Nodal Type"}, {"i": "NCIT:C38322", "l": "Marginal Zone B-Lymphocyte of Nodal Type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4053520", "l": "Interferon Beta-secreting Mesenchymal Stem Cells"}, {"i": "NCIT:C123724", "l": "Interferon Beta-secreting Mesenchymal Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000882", "l": "thymic medullary macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001606", "l": "foreskin keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228075", "l": "Small neuron"}, {"i": "SNOMEDCT:16868009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157448", "l": "CD3+CD56+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "77.349316285872916", "identifiers": [{"i": "UMLS:C1947950", "l": "Embryonic Cell"}, {"i": "NCIT:C13054", "l": "Embryonic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000376", "l": "Purkinje myocyte of interventricular septum"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514047", "l": "Neoplastic Neuroendocrine Spindle Cell"}, {"i": "NCIT:C36935", "l": "Neoplastic Neuroendocrine Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5176574", "l": "Pencil cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511434", "l": "CEA RNA-pulsed Autologous Human Cultured Dendritic Cells"}, {"i": "NCIT:C2710", "l": "CEA RNA-pulsed Autologous Human Cultured Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362027", "l": "Frozen erythrocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322965", "l": "Set of all cells"}]} +{"type": "biolink:Cell", "ic": "68.3621111081913", "identifiers": [{"i": "CL:0002681", "l": "kidney cortical cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514182", "l": "Mesothelial cell of pleura"}, {"i": "NCIT:C33330", "l": "Pleural Mesothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023118", "l": "L5/6 non-Martinotti morphology sst expressing GABAergic cortical internueron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000133", "l": "neurectodermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682702", "l": "Cerebellar neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186014", "l": "Basophils | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322672", "l": "CD23+ hemal cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1708902", "l": "Malignant Polygonal Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C53641", "l": "Malignant Polygonal Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170932", "l": "Leukocytes | Nose | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979240", "l": "Blasts.CD36"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511740", "l": "Decidual cell"}, {"i": "NCIT:C32429", "l": "Decidual Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184398", "l": "Unidentified cells | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002523", "l": "mesonephric glomerular visceral epithelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1879883", "l": "Blastemal Cell"}, {"i": "NCIT:C61288", "l": "Blastemal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440243", "l": "CD117 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009040", "l": "stromal cell of lamina propria of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D018417", "l": "Th1 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163707", "l": "Erythrocytes | Amniotic fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002149", "l": "epithelial cell of uterus"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1709186", "l": "Neoplastic Mononuclear Stromal Cell"}, {"i": "NCIT:C49055", "l": "Neoplastic Mononuclear Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "67.190764411475698", "identifiers": [{"i": "CL:0000197", "l": "sensory receptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001076", "l": "NKp46-positive innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000811", "l": "CD8-positive, alpha-beta thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333723", "l": "Folded cell"}, {"i": "SNOMEDCT:39922000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708645", "l": "Large Multinucleated Malignant Histiocyte"}, {"i": "NCIT:C43256", "l": "Large Multinucleated Malignant Histiocyte"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0005010", "l": "renal intercalated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1707673", "l": "Dendritic Melanoma Cell"}, {"i": "NCIT:C53275", "l": "Dendritic Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C2346938", "l": "Malignant Trophoblastic Cell"}, {"i": "NCIT:C68658", "l": "Malignant Trophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002160", "l": "basal external epithelial cell of tympanic membrane"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1519458", "l": "Neoplastic Spindle-Shaped Fibroblast"}, {"i": "NCIT:C36955", "l": "Neoplastic Spindle-Shaped Fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950978", "l": "Endothelial cell of endocardium for atrium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157600", "l": "CD5+CD23+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001792", "l": "Blood Platelets"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002636", "l": "nonkeratinized epithelial cell of inferior part of anal canal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C73125", "l": "Nucleated Red Blood Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D052682", "l": "Lactotrophs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002410", "l": "pancreatic stellate cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512902", "l": "Interstitial cell of pineal gland"}, {"i": "NCIT:C32872", "l": "Interstitial Cell of the Pineal Gland"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000275", "l": "smooth muscle cell of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0553711", "l": "Blood band cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440391", "l": "Cells.IgG"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000926", "l": "CD4-positive type I NK T cell secreting interferon-gamma"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1516089", "l": "Atypical Adipocyte"}, {"i": "NCIT:C36977", "l": "Atypical Adipocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518565", "l": "Olfactory Receptor Cells"}, {"i": "NCIT:C12633", "l": "Olfactory Receptor Neuron"}, {"i": "NCIT:C13151", "l": "Olfactory Receptor Cell"}, {"i": "MESH:D018034", "l": "Olfactory Receptor Neurons"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002035", "l": "Slamf1-negative multipotent progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545579", "l": "Marrow proplasmacyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000695", "l": "Cajal-Retzius cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513174", "l": "Metaplastic Hurthle Cell"}, {"i": "NCIT:C36875", "l": "Metaplastic Hurthle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953062", "l": "Endothelial cell of endocardium of right ventricle"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1882961", "l": "Round Adenocarcinoma Cell"}, {"i": "NCIT:C54417", "l": "Round Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267958", "l": "Lymphocyte positive for CD66A antigen"}, {"i": "SNOMEDCT:117399005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163718", "l": "Erythrocytes | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157610", "l": "CD55 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171960", "l": "Malignant cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12576", "l": "Enterochromaffin-Like Cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002522", "l": "renal filtration cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001004", "l": "immature CD8_alpha-positive CD11b-negative dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440354", "l": "Cells.CD77"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763759", "l": "Expanded/Activated Gamma Delta T-cells"}, {"i": "NCIT:C157634", "l": "Expanded/Activated Gamma Delta T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023024", "l": "neurogliaform lamp5 GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339101", "l": "Serous cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002332", "l": "ciliated cell of the bronchus"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000051", "l": "common lymphoid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496265", "l": "B2 serotonin cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002431", "l": "CD4-positive, CD8-intermediate double-positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1514025", "l": "Neoplastic Mesothelial Cell"}, {"i": "NCIT:C41605", "l": "Neoplastic Mesothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181293", "l": "Ecto-epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001111", "l": "kidney loop of Henle thin descending limb epithelial cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000488", "l": "visible light photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038423", "l": "cervical cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881597", "l": "Malignant Spindle Transitional Cell"}, {"i": "NCIT:C60303", "l": "Malignant Spindle Transitional Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008038", "l": "alpha motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154487", "l": "Basophils.immature/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513067", "l": "Neoplastic Medium-Sized Lymphocyte with Pale Cytoplasm"}, {"i": "NCIT:C37007", "l": "Neoplastic Medium-Sized Lymphocyte with Pale Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267918", "l": "Lymphocyte positive for CD41 antigen"}, {"i": "SNOMEDCT:117586008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709898", "l": "Renal Pelvis Urothelial Cell"}, {"i": "NCIT:C54557", "l": "Renal Pelvis Urothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440237", "l": "Cell positive for CD105 antigen"}, {"i": "SNOMEDCT:725330004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330475", "l": "Goblet cell of epithelium of crypt of Lieberkuhn of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740237", "l": "Spermatozoa.abnormal principal pieces"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514112", "l": "Neoplastic T-Prolymphocyte"}, {"i": "NCIT:C37184", "l": "Neoplastic T-Prolymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708709", "l": "Lipoblast-Like Malignant Transitional Cell"}, {"i": "NCIT:C54562", "l": "Lipoblast-Like Malignant Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0022539", "l": "KB Cells"}, {"i": "MESH:D007624", "l": "KB Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000712", "l": "stratum granulosum cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000329", "l": "oxygen accumulating cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514021", "l": "Neoplastic Megakaryoblast"}, {"i": "NCIT:C37068", "l": "Neoplastic Megakaryoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267904", "l": "Lymphocyte positive for CD31 antigen"}, {"i": "SNOMEDCT:117575006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518212", "l": "Malignant Myoepithelial Cell"}, {"i": "NCIT:C36780", "l": "Malignant Myoepithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518165", "l": "Population of all spermatozoa with abnormal head shape in portion of fluid"}, {"i": "SNOMEDCT:725223008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882045", "l": "Neoplastic Columnar Epithelial Cell"}, {"i": "NCIT:C62202", "l": "Neoplastic Columnar Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496264", "l": "B1 serotonin cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157424", "l": "CD3 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336931", "l": "Goblet cell of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180240", "l": "Endothelial cell of postcapillary venule of lymph node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023111", "l": "cerebral cortex pyramidal neuron"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000797", "l": "alpha-beta intraepithelial T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0600531", "l": "U937 Cells"}, {"i": "MESH:D020298", "l": "U937 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002402", "l": "Peyer's patch B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267957", "l": "Lymphocyte positive for CD64 antigen"}, {"i": "SNOMEDCT:117398002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267824", "l": "T lymphocyte positive for both CD4 antigen and CD45RA antigen"}, {"i": "SNOMEDCT:115403000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0552337", "l": "bladder cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12589", "l": "Keratinocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002437", "l": "mature CD8 single-positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1514104", "l": "Neoplastic Stromal Cell"}, {"i": "NCIT:C37150", "l": "Neoplastic Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000919", "l": "CD8-positive, CD25-positive, alpha-beta regulatory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267988", "l": "Lymphocyte positive for CD102 antigen"}, {"i": "SNOMEDCT:117428009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519376", "l": "Small Lymphocyte-Like Neoplastic Germ Cell"}, {"i": "NCIT:C37131", "l": "Small Lymphocyte-Like Neoplastic Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182799", "l": "Epithelial cell of collecting duct of renal tubule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338580", "l": "Otic ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179047", "l": "Myoepithelial cell of intralobular lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000828", "l": "thromboblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708914", "l": "Malignant Spindle-Shaped to Round Cell"}, {"i": "NCIT:C51147", "l": "Malignant Spindle-Shaped to Round Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157351", "l": "CD19+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002520", "l": "nephrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184931", "l": "External limiting cell of vestibular epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000436", "l": "epithelial cell of lacrimal sac"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000419", "l": "seam cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733642", "l": "Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1"}, {"i": "NCIT:C155884", "l": "Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440281", "l": "Cells.CD3+CD4+CD45RO+CD45RA-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709174", "l": "Neoplastic Epithelioid Stromal Cell"}, {"i": "NCIT:C54002", "l": "Neoplastic Epithelioid Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011018", "l": "lymphoid tissue–inducer cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157537", "l": "CD4+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329553", "l": "Enterocyte of epithelium proper of ileum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709197", "l": "Neoplastic Schwann-Like Cell"}, {"i": "NCIT:C48594", "l": "Neoplastic Schwann-Like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009083", "l": "rearranging double negative thymocyte (Homo sapiens)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4745172", "l": "Human Anti-CD30 CAR-expressing Autologous T-lymphocytes"}, {"i": "NCIT:C156933", "l": "Human Anti-CD30 CAR-expressing Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334745", "l": "Astroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682689", "l": "neuron type"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545060", "l": "Peripheral blood (P.B.), abnormal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002199", "l": "oxyphil cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882814", "l": "CD2+ cell"}, {"i": "SNOMEDCT:732268004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186089", "l": "CD34 cells | Blood product unit | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0037890", "l": "Spheroplasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682690", "l": "primary sensory neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517725", "l": "Neoplastic Large Erythroblast"}, {"i": "NCIT:C37059", "l": "Neoplastic Large Erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328697", "l": "Hemal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330894", "l": "Retinal pigment epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0016030", "l": "Fibroblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174620", "l": "Neutrophils | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362797", "l": "Blood cell precursor - general anatomical term"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0815004", "l": "Neural Crest Cells"}, {"i": "NCIT:C33937", "l": "Neural Crest Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331102", "l": "Olfactory glial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179683", "l": "Mucous cell of stomach"}]} +{"type": "biolink:Cell", "ic": "43.937253351040077", "identifiers": [{"i": "CL:0000255", "l": "eukaryotic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001011", "l": "immature interstitial dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002530", "l": "immature CD1a-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "ic": "53.682382036583391", "identifiers": [{"i": "UMLS:C4329351", "l": "Antineoplastic Immune Cell"}, {"i": "NCIT:C129826", "l": "Antineoplastic Immune Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002605", "l": "astrocyte of the cerebral cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1113654", "l": "Neural Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440338", "l": "CD62E Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182791", "l": "Glomerular endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000420", "l": "syncytial epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440307", "l": "Cells.CD41a"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1882057", "l": "Neoplastic Neuroendocrine Small Cell"}, {"i": "NCIT:C60534", "l": "Neoplastic Neuroendocrine Small Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002210", "l": "red muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896982", "l": "Autologous CD123CAR-CD28-CD3zeta-EGFRt-expressing T Lymphocytes"}, {"i": "NCIT:C116329", "l": "Autologous CD123CAR-CD28-CD3zeta-EGFRt-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C33152", "l": "Myoepithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324262", "l": "Secondary afferent neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2346937", "l": "Malignant Ovoid Osteoblast"}, {"i": "NCIT:C67522", "l": "Malignant Ovoid Osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267783", "l": "Cells.CD4-CD8-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5160676", "l": "Columnar cells/100 cells | Bronchial | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157296", "l": "CD13 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000946", "l": "antibody secreting cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000801", "l": "gamma-delta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000642", "l": "folliculostellate cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000345", "l": "dental papilla cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0003273", "l": "Antibody-Producing Cells"}, {"i": "NCIT:C12611", "l": "Antibody-Producing Cell"}, {"i": "MESH:D000921", "l": "Antibody-Producing Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924222", "l": "Cells.CD11c-CD25+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511462", "l": "CY10"}, {"i": "NCIT:C20245", "l": "CY10"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3656689", "l": "B cell+T cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000890", "l": "alternatively activated macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0814995", "l": "Skin cell"}, {"i": "SNOMEDCT:314819008"}]} +{"type": "biolink:Cell", "ic": "73.946956196949927", "identifiers": [{"i": "CL:0000764", "l": "erythroid lineage cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1512102", "l": "Dysplastic Erythroid Precursor"}, {"i": "NCIT:C37054", "l": "Dysplastic Erythroid Precursor"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1512971", "l": "Malignant Thyroid Gland Follicular Cell"}, {"i": "NCIT:C36836", "l": "Malignant Thyroid Gland Follicular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1292098", "l": "IgD B lymphocyte"}, {"i": "SNOMEDCT:115604004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225468", "l": "Structure of posterior cells of ethmoid sinus"}, {"i": "SNOMEDCT:5890002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166081", "l": "Granulocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D010786", "l": "Photoreceptor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3273206", "l": "Anti-mesothelin CIR mRNA-electroporated Autologous T Cells"}, {"i": "NCIT:C97038", "l": "Anti-mesothelin CIR mRNA-electroporated Autologous T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546445", "l": "Russell-Crooke cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314590", "l": "Colony-forming unit, granulocyte-monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163731", "l": "Erythrocytes | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267852", "l": "Lymphocyte positive for CD7 antigen"}, {"i": "SNOMEDCT:117538001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333949", "l": "Cholinergic Neurons"}, {"i": "MESH:D059329", "l": "Cholinergic Neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440369", "l": "Cells.CD93"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002598", "l": "bronchial smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000729", "l": "tertiary pigment cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300400", "l": "Cells.chromosome region 7q31 deletion"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000047", "l": "brainstem motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002033", "l": "short term hematopoietic stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440230", "l": "Cells.aneuploid.population 2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267834", "l": "Lymphocyte positive for both CD3 antigen and DR antigen"}, {"i": "SNOMEDCT:117524008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2984034", "l": "Allogeneic Cytomegalovirus-Specific Cytotoxic T lymphocytes"}, {"i": "NCIT:C91095", "l": "Allogeneic Cytomegalovirus-Specific Cytotoxic T lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0034964", "l": "Regenerating muscle fiber"}, {"i": "SNOMEDCT:56132000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596713", "l": "horizontal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2826155", "l": "2G-1 TCR Retroviral Vector-Transduced Lymphocytes"}, {"i": "NCIT:C82408", "l": "2G-1 TCR Retroviral Vector-Transduced Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C0014793", "l": "Abnormal Red Blood Cell"}, {"i": "NCIT:C12522", "l": "Abnormal Red Blood Cell"}, {"i": "MESH:D004913", "l": "Erythrocytes, Abnormal"}, {"i": "SNOMEDCT:397019006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023014", "l": "L5 vip cortical GABAergic interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023092", "l": "inverted pyramidal neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D033661", "l": "Oocysts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440142", "l": "Blasts.CD14"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1514083", "l": "Neoplastic Sex Cord-Stromal Cell"}, {"i": "NCIT:C36898", "l": "Neoplastic Sex Cord-Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000198", "l": "pain receptor cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1000480", "l": "transitional myocyte of internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441122", "l": "Purkinje cell cytoplasmic type Tr"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000300", "l": "gamete"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763655", "l": "EBV LMP-2A-specific Autologous CD8+ T-cells"}, {"i": "NCIT:C157488", "l": "EBV LMP-2A-specific Autologous CD8+ T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038494", "l": "Cells.aneuploid.S phase population 2"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C12482", "l": "Fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023028", "l": "L5 non-Martinotti sst GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4082186", "l": "Degenerating muscle fiber"}, {"i": "SNOMEDCT:85613007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154479", "l": "Basophils | Nose | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001590", "l": "epididymis glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009054", "l": "microfold cell of epithelium proper of anorectum"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0524984", "l": "Somatostatin-Secreting Cells"}, {"i": "NCIT:C12574", "l": "Delta Cell"}, {"i": "MESH:D019864", "l": "Somatostatin-Secreting Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000441", "l": "epithelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514277", "l": "Postradiation Dysplastic Squamous Cell"}, {"i": "NCIT:C36806", "l": "Postradiation Dysplastic Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881768", "l": "Melanoma Cell with Large Nucleus and Abundant Pale Cytoplasm"}, {"i": "NCIT:C62342", "l": "Melanoma Cell with Large Nucleus and Abundant Pale Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0224523", "l": "Synovial fluid mononuclear cell"}, {"i": "SNOMEDCT:77589000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157383", "l": "CD20+FMC7+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267942", "l": "Lymphocyte positive for CD50 antigen"}, {"i": "SNOMEDCT:117385006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512166", "l": "Squamous cell of ectocervix"}, {"i": "NCIT:C33915", "l": "Ectocervical Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0225699", "l": "Type-I Pneumocytes"}, {"i": "NCIT:C13144", "l": "Alveolar Cell Type I"}, {"i": "NCIT:C32054", "l": "Alveolar Cell Type I"}, {"i": "SNOMEDCT:34826000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183496", "l": "Neural plate cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001582", "l": "lateral ventricle neuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513023", "l": "Mature Cytotoxic T-Lymphocyte"}, {"i": "NCIT:C38324", "l": "Mature Cytotoxic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002441", "l": "CD94-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000067", "l": "cardiac atrium fibroblast"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "NCIT:C12547", "l": "Monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157242", "l": "CD10+HLA-DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1512246", "l": "Goteborg ES Cell Line"}, {"i": "NCIT:C20263", "l": "Goteborg ES Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708899", "l": "Malignant Parathyroid Gland Chief Cell"}, {"i": "NCIT:C48269", "l": "Malignant Parathyroid Gland Chief Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510925", "l": "Blast cell positive for CD20 antigen"}, {"i": "SNOMEDCT:725174006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328464", "l": "Fibroblast of connective tissue of nonglandular part of prostate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336695", "l": "Hepatic oval stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184395", "l": "Unidentified cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1706715", "l": "Adenohypophysial Cell"}, {"i": "NCIT:C45920", "l": "Adenohypophysial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157625", "l": "CD59 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182610", "l": "Corneal epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1956385", "l": "Plasmacytoid Dendritic Cells"}, {"i": "NCIT:C45236", "l": "Plasmacytoid Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179516", "l": "Epithelial cell of pancreas"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496530", "l": "telencephalic dopamine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D017777", "l": "Parasympathetic Fibers, Postganglionic"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322737", "l": "CD1+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000821", "l": "B-1b B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183210", "l": "Set of tubal air cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514070", "l": "Neoplastic Polygonal Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C37164", "l": "Neoplastic Polygonal Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023042", "l": "L6 corticothalamic-projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178301", "l": "Promonocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945925", "l": "Cells.CD3+CD25+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002512", "l": "CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513972", "l": "Neoplastic Germ Cell with Clear to Lightly Eosinophilic Cytoplasm"}, {"i": "NCIT:C37130", "l": "Neoplastic Germ Cell with Clear to Lightly Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708874", "l": "Malignant Epithelioid Fibroblast"}, {"i": "NCIT:C49029", "l": "Malignant Epithelioid Fibroblast"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C0333727", "l": "Signet ring cell"}, {"i": "NCIT:C12487", "l": "Signet Ring Cell"}, {"i": "SNOMEDCT:86918008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336790", "l": "Macroglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440108", "l": "Autologous erythrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517357", "l": "Geron H14 stem cell line"}, {"i": "NCIT:C20260", "l": "GE14"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:1001036", "l": "vasa recta cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5185786", "l": "ZAP70 cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1512107", "l": "Dysplastic Neutrophil"}, {"i": "NCIT:C37031", "l": "Dysplastic Neutrophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157430", "l": "CD3+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979078", "l": "Blasts.CD117"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157322", "l": "CD158 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1517536", "l": "Geron ES Cell Line"}, {"i": "NCIT:C20255", "l": "Geron ES Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009015", "l": "Peyer's patch follicular dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267581", "l": "Gastric mucous gland neck cell"}, {"i": "SNOMEDCT:110605001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000343", "l": "visual pigment cell (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312867", "l": "Sensitized platelet"}, {"i": "SNOMEDCT:65533007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524983", "l": "Gastrin-Secreting Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174641", "l": "Neutrophils.hypogranulated | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181336", "l": "Spermatozoa | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:4023008", "l": "intratelencephalic-projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304496", "l": "Population of all sickle cells in portion of fluid"}, {"i": "SNOMEDCT:719692009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300402", "l": "Cells.chromosome region 5q31 deletion"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517539", "l": "Giant Adenocarcinoma Cell"}, {"i": "NCIT:C36857", "l": "Giant Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175645", "l": "Oval macrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178300", "l": "Promonocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002464", "l": "SIRPa-negative adipose dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512049", "l": "Downey Cell"}, {"i": "NCIT:C36736", "l": "Downey Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709903", "l": "Renal Tumor-Reactive Autologous Peripheral Blood Lymphocyte"}, {"i": "NCIT:C48816", "l": "Renal Tumor-Reactive Autologous Peripheral Blood Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "71.333297062267803", "identifiers": [{"i": "UMLS:C0039194", "l": "T-Lymphocyte"}, {"i": "NCIT:C12476", "l": "T-Lymphocyte"}, {"i": "MESH:D013601", "l": "T-Lymphocytes"}, {"i": "SNOMEDCT:57184004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002196", "l": "hepatic oval stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440147", "l": "Blasts.CD34"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881553", "l": "Malignant Epithelial Small Polygonal Cell"}, {"i": "NCIT:C60996", "l": "Malignant Epithelial Small Polygonal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000069", "l": "gallbladder fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182725", "l": "Target cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1514056", "l": "Neoplastic Perineural Cell"}, {"i": "NCIT:C41413", "l": "Neoplastic Perineural Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515996", "l": "Anti-gp100 TCR Retroviral Vector-Transduced Autologous PBL"}, {"i": "NCIT:C38136", "l": "Anti-gp100 TCR Retroviral Vector-Transduced Autologous PBL"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002439", "l": "NKGA2-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002037", "l": "CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002307", "l": "brush border cell of the proximal tubule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512101", "l": "Dysplastic Erythroblast"}, {"i": "NCIT:C37056", "l": "Dysplastic Erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325537", "l": "Epithelial cell of lactiferous gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0014597", "l": "Epithelial Cells"}, {"i": "MESH:D004847", "l": "Epithelial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182609", "l": "Epithelial cell of choroid plexus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002521", "l": "subcutaneous fat cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D046569", "l": "Neuroepithelial Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0001052", "l": "CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514655", "l": "RL07"}, {"i": "NCIT:C20289", "l": "RL07"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002309", "l": "corticotroph"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4316839", "l": "CD16-CD57+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329916", "l": "Fibroblast of outer membrane of prostatic capsule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440423", "l": "Cells.terminal deoxyribonucleotidyl transferase"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001010", "l": "mature dermal dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682517", "l": "animal cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002466", "l": "small intestine serosal dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333855", "l": "Small cleaved cell"}, {"i": "NCIT:C12915", "l": "Small Cleaved Follicle Center Cell"}, {"i": "SNOMEDCT:89494004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513755", "l": "Multivacuolated Lipoblast"}, {"i": "NCIT:C36973", "l": "Multivacuolated Lipoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157511", "l": "CD38 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000158", "l": "club cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181300", "l": "Active chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181164", "l": "Set of peripheral neuroglial cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336812", "l": "Type X enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518247", "l": "Malignant Tadpole Squamous Cell"}, {"i": "NCIT:C36776", "l": "Malignant Tadpole Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267948", "l": "Lymphocyte positive for CD56 antigen"}, {"i": "SNOMEDCT:116732008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333852", "l": "Türk cell"}, {"i": "SNOMEDCT:4205002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325623", "l": "Pyramidal cell of precentral gyrus of cerebral hemisphere"}, {"i": "SNOMEDCT:89416001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339015", "l": "Vacuolar absorptive cell of epithelium proper of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640224", "l": "Allogeneic Adenovirus-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C101796", "l": "Allogeneic Adenovirus-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0002174", "l": "follicular cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518154", "l": "Population of all spermatozoa with abnormal tail in portion of fluid"}, {"i": "SNOMEDCT:725227009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157427", "l": "CD3 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329800", "l": "Purkinje myocyte of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002610", "l": "raphe nuclei neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709114", "l": "Cells.CD138+Kappa+"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000593", "l": "androgen secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002467", "l": "Gr1-high myeloid suppressor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0747205", "l": "PANCYTOSIS"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515150", "l": "TE32"}, {"i": "NCIT:C20297", "l": "TE32"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000043", "l": "mature basophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328960", "l": "Hippocampal interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0807107", "l": "Vacuolated neutrophil"}, {"i": "SNOMEDCT:726746002"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0002096", "l": "internodal tract myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696000", "l": "Cells.CD3+CD4+CD27-CD45RO+CD62L-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183982", "l": "Chromaffin cell of left ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317634", "l": "Agranular platelet"}, {"i": "SNOMEDCT:726588009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515168", "l": "TNF Transduced TIL"}, {"i": "NCIT:C29482", "l": "TNF Transduced TIL"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697028", "l": "Cells.CD28+HLA DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184400", "l": "Unidentified cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326430", "l": "Bronchial goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002227", "l": "nucleated secondary lens fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001080", "l": "NKp44-negative group 3 innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002359", "l": "placental hematopoietic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518115", "l": "MB03"}, {"i": "NCIT:C20277", "l": "MB03"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154300", "l": "Band form neutrophils | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174625", "l": "Neutrophils | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334307", "l": "Paneth cell of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009047", "l": "macrophage of medullary sinus of lymph node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986568", "l": "Neoplastic Eosinophilic Spindle Cell"}, {"i": "NCIT:C94551", "l": "Neoplastic Eosinophilic Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598090", "l": "permanent cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1879789", "l": "Basophilic Adenocarcinoma Cell"}, {"i": "NCIT:C61051", "l": "Basophilic Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881029", "l": "HSV-TK-Transduced Donor Lymphocytes"}, {"i": "NCIT:C67047", "l": "HSV-TK-Transduced Donor Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000171", "l": "pancreatic A cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2346885", "l": "Autologous LMP1-/LMP2- Specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C70836", "l": "Autologous LMP1-/LMP2- Specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483184", "l": "CD16+CD57+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337273", "l": "Transitional myocyte of atrial septal branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000426", "l": "chromaffin cell of adrenal gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007002", "l": "precementoblast"}]} +{"type": "biolink:Cell", "ic": "73.539748874002555", "identifiers": [{"i": "UMLS:C1513029", "l": "Mature T-Lymphocyte"}, {"i": "NCIT:C33061", "l": "Mature T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "67.274512136805257", "identifiers": [{"i": "CL:0001200", "l": "lymphocyte of B lineage, CD19-positive"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000000", "l": "epidermal melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0242632", "l": "T-helper cell type 1"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000394", "l": "plasmatocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002197", "l": "inactive chief cell of parathyoid gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000083", "l": "stratified keratinized epithelial stem cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000866", "l": "thymic macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682522", "l": "AGMK cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945933", "l": "CD45+ cell"}, {"i": "SNOMEDCT:732272000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323049", "l": "Oocyte in dictyate arrest"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0029048", "l": "Oogonia"}, {"i": "NCIT:C12600", "l": "Primary Oocyte"}, {"i": "MESH:D009867", "l": "Oogonia"}, {"i": "SNOMEDCT:78829006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0206427", "l": "Rod Photoreceptors"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171667", "l": "Lymphocytes | Stool | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725100", "l": "Autologous CD22-4SCAR-expressing T-cells 4SCAR22"}, {"i": "NCIT:C148524", "l": "Autologous CD22-4SCAR-expressing T-cells 4SCAR22"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1882047", "l": "Neoplastic Epithelial Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C61295", "l": "Neoplastic Epithelial Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514172", "l": "Pleomorphic Epithelial Cell"}, {"i": "NCIT:C37170", "l": "Pleomorphic Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267880", "l": "Lymphocyte positive for both CD16C antigen and CD56 antigen"}, {"i": "SNOMEDCT:117557005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157253", "l": "CD11+CD20+ cells | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002213", "l": "white muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182788", "l": "Epithelial cell of glomerular capsule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157301", "l": "CD135 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0086031", "l": "Colony-Forming Units, Hematopoietic"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182666", "l": "Endo-epithelial cell of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517304", "l": "Foveolar cell"}, {"i": "NCIT:C32632", "l": "Foveolar Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513952", "l": "Neoplastic Endocrine Chief Cell"}, {"i": "NCIT:C36938", "l": "Neoplastic Endocrine Chief Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000178", "l": "Leydig cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3494180", "l": "Bone Marrow Stromal Cells, Multipotent"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339502", "l": "Enterocyte of epithelium proper of jejunum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167385", "l": "Histiocytes | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002095", "l": "hilus cell of ovary"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002485", "l": "retinal melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155171", "l": "Blasts | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312864", "l": "Sensitized cell"}, {"i": "SNOMEDCT:52976009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440345", "l": "Cells.CD66c"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764236", "l": "Citrate Blood Cell Fraction"}, {"i": "NCIT:C158461", "l": "Citrate Blood Cell Fraction"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184140", "l": "Myoepithelial cell of tertiary lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0019612", "l": "Histiocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522173", "l": "CNS - Brain - Astrocyte (MMHCC)"}, {"i": "NCIT:C22607", "l": "Mouse Astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327673", "l": "Rod bipolar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170980", "l": "Leukocytes+Platelets | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000973", "l": "IgA memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440331", "l": "Cells.CD52"}]} +{"type": "biolink:Cell", "ic": "68.86768025975131", "identifiers": [{"i": "CL:0002584", "l": "renal cortical epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1280425", "l": "Entire alpha Cell of islet"}, {"i": "SNOMEDCT:247770008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3826391", "l": "Erythrocyte disorders"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512788", "l": "Inner phalangeal cell of cochlea"}, {"i": "NCIT:C32812", "l": "Inner Supporting Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4006000", "l": "fibroblast of breast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184809", "l": "Primitive cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163732", "l": "Erythrocytes | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512085", "l": "Ductal Epithelial Cell"}, {"i": "NCIT:C12479", "l": "Ductal Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314594", "l": "Colony-forming unit, monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12655", "l": "APUD Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C4317010", "l": "Reactive Lymphocyte"}, {"i": "NCIT:C12847", "l": "Reactive Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515149", "l": "TE07"}, {"i": "NCIT:C20302", "l": "TE07"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173495", "l": "Mononuclear cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180818", "l": "Sezary cells | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155170", "l": "Blasts | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002255", "l": "stromal cell of endometrium"}]} +{"type": "biolink:Cell", "ic": "63.042556392227013", "identifiers": [{"i": "UMLS:C1510716", "l": "Abnormal Connective and Soft Tissue Cell"}, {"i": "NCIT:C36843", "l": "Abnormal Connective and Soft Tissue Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709199", "l": "Natural killer"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178760", "l": "Mirror Neurons"}, {"i": "MESH:D059167", "l": "Mirror Neurons"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000956", "l": "pre-B-I cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157325", "l": "CD16 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180578", "l": "Segmented neutrophils | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182792", "l": "Epithelial cell of proximal tubule"}]} +{"type": "biolink:Cell", "ic": "66.553158422731826", "identifiers": [{"i": "CL:0002419", "l": "mature T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1879556", "l": "Adenocarcinoma Cell with Foamy Cytoplasm"}, {"i": "NCIT:C60526", "l": "Adenocarcinoma Cell with Foamy Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000345", "l": "paneth cell of epithelium of crypt of Lieberkuhn of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008033", "l": "decidual pericyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1720857", "l": "Adipocytes, Brown"}, {"i": "MESH:D052437", "l": "Adipocytes, Brown"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339921", "l": "Epithelial cell of uterus"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0000134", "l": "mesenchymal stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001064", "l": "malignant cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177626", "l": "Platelets Large | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1510733", "l": "Abnormal Neutrophil"}, {"i": "NCIT:C37029", "l": "Abnormal Neutrophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329326", "l": "Anti-Glypican 3-scFvGC33-CAR-expressing T Lymphocytes"}, {"i": "NCIT:C132989", "l": "Anti-Glypican 3-scFvGC33-CAR-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "UMLS:C1512108", "l": "Dysplastic Squamous Cell"}, {"i": "NCIT:C36789", "l": "Dysplastic Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0682639", "l": "Memory T-Lymphocyte"}, {"i": "NCIT:C104082", "l": "Memory T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000715", "l": "kidney cortex collecting duct intercalated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684116", "l": "megaloblast of Sabin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0734999", "l": "Exocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167747", "l": "HLA-B27 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "61.360270191050041", "identifiers": [{"i": "CL:0000145", "l": "professional antigen presenting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002047", "l": "Fraction B precursor B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440349", "l": "Cells.CD69"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023116", "l": "type 2 spiral ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002093", "l": "secondary polar body"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518218", "l": "Malignant Neuroendocrine Cell with Moderate Cytoplasm"}, {"i": "NCIT:C36916", "l": "Malignant Neuroendocrine Cell with Moderate Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267966", "l": "Lymphocyte positive for CD72 antigen"}, {"i": "SNOMEDCT:117406009"}]} +{"type": "biolink:Cell", "ic": "72.438504002572699", "identifiers": [{"i": "CL:0000104", "l": "multipolar neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002297", "l": "type-3 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000491", "l": "mesothelial cell of pleura"}]} +{"type": "biolink:Cell", "ic": "77.02358060617253", "identifiers": [{"i": "CL:0000035", "l": "single fate stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514080", "l": "Neoplastic Schwann Cell"}, {"i": "NCIT:C37151", "l": "Neoplastic Schwann Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000425", "l": "pore cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157466", "l": "CD3+HLA-DR+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002671", "l": "endothelial stalk cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3172555", "l": "Ciliated epithelial cell"}, {"i": "SNOMEDCT:725724001"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000778", "l": "mononuclear osteoclast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000495", "l": "blue sensitive photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177629", "l": "Platelets reticulated | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180576", "l": "Segmented neutrophils | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727694", "l": "Autologous Anti-Claudin18.2-transduced T Lymphocytes"}, {"i": "NCIT:C150382", "l": "Autologous Anti-Claudin18.2-transduced T Lymphocytes CT041"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000588", "l": "odontoclast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229598", "l": "Structure of delta Cell of islet"}, {"i": "NCIT:C38639", "l": "Delta Cell of the Pancreas"}, {"i": "SNOMEDCT:11815004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0933802", "l": "Smooth columnar cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086501", "l": "Human Umbilical Cord Perivascular Cell"}, {"i": "NCIT:C124146", "l": "Human Umbilical Cord Perivascular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1258005", "l": "HCT116 Cells"}, {"i": "MESH:D045325", "l": "HCT116 Cells"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0002374", "l": "ear hair cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709209", "l": "Neoplastic Thyroid Gland Follicular Signet Ring Cell"}, {"i": "NCIT:C47831", "l": "Neoplastic Thyroid Gland Follicular Signet Ring Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708890", "l": "Malignant Neuroectodermal Cell with Hyperchromatic Nucleus and Scanty Cytoplasm"}, {"i": "NCIT:C54040", "l": "Malignant Neuroectodermal Cell with Hyperchromatic Nucleus and Scanty Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038495", "l": "Cells.aneuploid.S phase population"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000503", "l": "theca cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5158933", "l": "Cerebroventricular lining cells | Cerebral spinal fluid | Cytology"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086004", "l": "Autologous Colorectal Tumor Antigen-pulsed Dendritic Cell Vaccine"}, {"i": "NCIT:C123918", "l": "Autologous Colorectal Tumor Antigen-pulsed Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001097", "l": "kidney afferent arteriole smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "74.378130331796413", "identifiers": [{"i": "CL:0000624", "l": "CD4-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495621", "l": "A15 dopamine cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000478", "l": "transitional myocyte of sinoatrial node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1879553", "l": "Adenocarcinoma Cell with Abundant Finely Vacuolated Cytoplasm"}, {"i": "NCIT:C54718", "l": "Adenocarcinoma Cell with Abundant Finely Vacuolated Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0883468", "l": "CD16+CD56+ cell"}, {"i": "SNOMEDCT:732275003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009017", "l": "intestinal crypt stem cell of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002343", "l": "decidual natural killer cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4263664", "l": "Lymphocyte T-cell & B-cell & Natural killer subsets"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697022", "l": "Cells.CD27+CD45RO+CD62L+CCR7+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163447", "l": "Eosinophils | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684830", "l": "Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143"}, {"i": "NCIT:C142807", "l": "Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157596", "l": "CD5+CD19+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "UMLS:C1515078", "l": "Supporting Cell of the Nervous System"}, {"i": "NCIT:C33704", "l": "Supporting Cell of the Nervous System"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002220", "l": "interstitial cell of pineal gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314584", "l": "Blast colony-forming unit"}, {"i": "SNOMEDCT:445113006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D052681", "l": "Gonadotrophs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023015", "l": "sncg GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157565", "l": "CD42 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002137", "l": "type III cell of adrenal cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682643", "l": "resting or wandering histiocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736928", "l": "CD154+ cell"}, {"i": "SNOMEDCT:732273005"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000354", "l": "microfold cell of epithelium of intestinal villus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000697", "l": "R4 photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157628", "l": "CD59 RBC | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000324", "l": "duodenal goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1699193", "l": "african green monkey kidney cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522165", "l": "Leukocyte - Myelocyte (Granulocyte) - Basophil - Mast Cell (MMHCC)"}, {"i": "NCIT:C22594", "l": "Mouse Mast Cell"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "CL:0000239", "l": "brush border epithelial cell"}]} +{"type": "biolink:Cell", "ic": "72.96845868813736", "identifiers": [{"i": "UMLS:C1514049", "l": "Neoplastic Neuroepithelial Cell and Neoplastic Perineural Cell"}, {"i": "NCIT:C41408", "l": "Neoplastic Neuroepithelial Cell and Neoplastic Perineural Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4484193", "l": "Neutrophil.PMA stimulated.DHR"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171965", "l": "Malignant cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000740", "l": "retinal ganglion cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332129", "l": "Internodal tract myocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512132", "l": "ES03"}, {"i": "NCIT:C20251", "l": "ES03"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179760", "l": "Epithelial cell of appendix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517638", "l": "KA08"}, {"i": "NCIT:C20268", "l": "KA08"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000022", "l": "female germ line stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440244", "l": "Cells.CD118"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0001007", "l": "interstitial dendritic cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002678", "l": "memory regulatory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D017628", "l": "Microglia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512336", "l": "HeLa S3"}, {"i": "NCIT:C20227", "l": "HeLa S3"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000430", "l": "xanthophore cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184107", "l": "Myoepithelial cell of acinus of lactiferous gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055481", "l": "Akt-1/2 Inhibitor-treated Tumor Infiltrating Lymphocytes"}, {"i": "NCIT:C123720", "l": "Akt-1/2 Inhibitor-treated Tumor Infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900058", "l": "Allogeneic Multivirus-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C115107", "l": "Allogeneic Multivirus-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3826603", "l": "Cell metabolism"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170936", "l": "Leukocytes | Prostatic fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717693", "l": "Chronic leukemia markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831170", "l": "CD138CAR-CD137/TCRzeta-expressing T Lymphocytes"}, {"i": "NCIT:C107505", "l": "CD138CAR-CD137/TCRzeta-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4243124", "l": "Set of erythropoietic cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001040", "l": "non-terminally differentiated osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181723", "l": "Cortical cell of adrenal gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002189", "l": "granular cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170954", "l": "Leukocytes other | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0920441", "l": "circulating cancer cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:4023013", "l": "corticothalamic-projecting glutamatergic cortical neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325342", "l": "Set of cholinergic cells of substantia innominata [Ch4]"}]} +{"type": "biolink:Cell", "ic": "68.3621111081913", "identifiers": [{"i": "CL:0000451", "l": "dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002084", "l": "Boettcher cell"}]} +{"type": "biolink:Cell", "ic": "75.324974028080362", "identifiers": [{"i": "CL:0000787", "l": "memory B cell"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000748", "l": "retinal bipolar neuron"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0009024", "l": "mesothelial cell of small intestine"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001216", "l": "interlobulary artery endothelial cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002334", "l": "preadipocyte"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:1001598", "l": "small intestine glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000551", "l": "unimodal nocireceptor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002244", "l": "squamous cell of ectocervix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170948", "l": "Leukocytes | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0333721", "l": "Fusiform cell"}, {"i": "NCIT:C32645", "l": "Fusiform Cell"}, {"i": "SNOMEDCT:15409002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726996", "l": "Related Donor Adenovirus-specific Cytotoxic T Cells"}, {"i": "NCIT:C152980", "l": "Related Donor Adenovirus-specific Cytotoxic T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4683473", "l": "Autologous Anti-CD19 Chimeric Antigen Receptor T-cells C-CAR011"}, {"i": "NCIT:C141050", "l": "Autologous Anti-CD19 Chimeric Antigen Receptor T-cells C-CAR011"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:1000413", "l": "endothelial cell of artery"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175152", "l": "Nucleated cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545227", "l": "Cells.CD3+CD56+/100 cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510930", "l": "Anti-MART-1 TCR Retroviral Vector-Transduced Autologous TIL"}, {"i": "NCIT:C38137", "l": "Anti-MART-1 TCR Retroviral Vector-Transduced Autologous TIL"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038490", "l": "Cells.diploid.S phase"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513923", "l": "Neoplastic Acidophilic Stem Cell"}, {"i": "NCIT:C36924", "l": "Neoplastic Acidophilic Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002501", "l": "type D1 enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330808", "l": "Mammosomatotroph"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023022", "l": "canopy lamp5 GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157557", "l": "CD4+CD95+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229618", "l": "Large lymphocyte"}, {"i": "SNOMEDCT:54969003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267933", "l": "Lymphocyte positive for CD46 antigen"}, {"i": "SNOMEDCT:117376006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023003", "l": "nuclear chain fiber"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684971", "l": "Allogeneic Nicotinamide-expanded Natural Killer Cells"}, {"i": "NCIT:C143157", "l": "Allogeneic Nicotinamide-expanded Natural Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157526", "l": "CD3-CD57+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514180", "l": "Pleomorphic Smooth Muscle Cell"}, {"i": "NCIT:C36946", "l": "Pleomorphic Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0011003", "l": "magnocellular neurosecretory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4738963", "l": "Leukocytes.DNA+Plasma.cfDNA"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1449623", "l": "Neuroepithelial Bodies"}, {"i": "MESH:D046568", "l": "Neuroepithelial Bodies"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178309", "l": "Promyelocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495990", "l": "Acg noradrenaline cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002184", "l": "basal proper cell of olfactory epithelium"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000065", "l": "ependymal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257771", "l": "Burst-Forming Units, Erythroid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440407", "l": "Cells.t(15;17)(q24.1;q21.1)(PML,RARA)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744501", "l": "M1 Macrophage"}, {"i": "NCIT:C156004", "l": "M1 Macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186791", "l": "Lymphocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000015", "l": "fibroblast of arm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1704336", "l": "Skeletal Myocytes"}, {"i": "NCIT:C13000", "l": "Rhabdomyocyte"}, {"i": "NCIT:C33558", "l": "Skeletal Fiber"}, {"i": "NCIT:C48687", "l": "Skeletal Muscle Cell"}, {"i": "MESH:D018485", "l": "Muscle Fibers, Skeletal"}, {"i": "SNOMEDCT:80985008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709672", "l": "Primitive Bone Marrow Myeloid Stem Cell"}, {"i": "NCIT:C43229", "l": "Primitive Bone Marrow Myeloid Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724864", "l": "Autologous mRNA-modified Anti-cMET CAR-T Cells"}, {"i": "NCIT:C148164", "l": "Autologous mRNA-modified Anti-cMET CAR-T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510808", "l": "Adipocyte with Nuclear Atypia"}, {"i": "NCIT:C36978", "l": "Adipocyte with Nuclear Atypia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002638", "l": "bronchioalveolar stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5187172", "l": "Fibroblasts^Control"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154476", "l": "Basophils | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1277042", "l": "Parathyroid cell"}, {"i": "SNOMEDCT:360553006"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0001054", "l": "CD14-positive monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1953382", "l": "Forward primer"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267916", "l": "Lymphocyte positive for CD39 antigen"}, {"i": "SNOMEDCT:117584006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440272", "l": "Cells.CD22+CD11c+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520127", "l": "Warthin-Finkeldey Polykaryocyte"}, {"i": "NCIT:C36812", "l": "Warthin-Finkeldey Polykaryocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329516", "l": "CD8+NKG2D+ AKT Cell"}, {"i": "NCIT:C132027", "l": "CD8+NKG2D+ AKT Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0808143", "l": "Synovial lining cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0524457", "l": "Structure of endometrial glandular cell"}, {"i": "NCIT:C32515", "l": "Endometrial Glandular Cell"}, {"i": "SNOMEDCT:91768008"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514071", "l": "Malignant Primitive Germ Cell"}, {"i": "NCIT:C36897", "l": "Malignant Primitive Germ Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002022", "l": "Ly-76 high positive erythrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518170", "l": "Population of all immature eosinophils in portion of fluid"}, {"i": "SNOMEDCT:725440002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000076", "l": "hindlimb stylopod vein endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000742", "l": "periarticular chondrocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1519449", "l": "Spermatogenic Cell"}, {"i": "NCIT:C33582", "l": "Spermatogenic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519986", "l": "Villous Lymphocyte"}, {"i": "NCIT:C38727", "l": "Villous Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510907", "l": "Blast cell positive for CD14 antigen"}, {"i": "SNOMEDCT:724252003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736938", "l": "Cells.CD8+CD45RO+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682520", "l": "canine cell line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440318", "l": "Cells.CD46"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184798", "l": "Supporting cell of vestibular epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1651663", "l": "Cells.CD20+CD23+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517214", "l": "Flower-Like T-Lymphocyte"}, {"i": "NCIT:C39682", "l": "Flower-Like T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881225", "l": "Medium Size Melanoma Cell"}, {"i": "NCIT:C54163", "l": "Medium Size Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763523", "l": "Autologous CLL1-CD33 Compound CAR T Cells"}, {"i": "NCIT:C157281", "l": "Autologous CLL1-CD33 Compound CAR T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000073", "l": "barrier epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2349679", "l": "Atypical cervical glandular cells NOS"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896758", "l": "MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201"}, {"i": "NCIT:C114978", "l": "MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441141", "l": "Immature reticulocyte"}, {"i": "SNOMEDCT:409888001"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000505", "l": "kidney pelvis cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332462", "l": "Basket cell of cerebral cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183326", "l": "Mesothelial cell of parietal peritoneum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011002", "l": "lateral motor column neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000696", "l": "kidney interstitial inflammatory macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D006412", "l": "Hematopoietic Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000634", "l": "Claudius cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267960", "l": "Lymphocyte positive for CD66C antigen"}, {"i": "SNOMEDCT:117401004"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000350", "l": "basal cell of epithelium of terminal bronchiole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440256", "l": "Cells.CD14+CD11b+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000917", "l": "Tc1 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002127", "l": "innate effector T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733688", "l": "autologous tri-functional anti-CD19 CAR T cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267809", "l": "Lymphocyte negative for surface membrane immunoglobulin and positive for CD79 antigen"}, {"i": "SNOMEDCT:117513006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157328", "l": "CD16+CD56+CD3- | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440392", "l": "Cells.multiple drug resistance"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12546", "l": "Tumor Infiltrating Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0085820", "l": "Antibody-Secreting Cells"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1513173", "l": "Metaplastic Glandular Cell"}, {"i": "NCIT:C36837", "l": "Metaplastic Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "76.125169645393314", "identifiers": [{"i": "CL:0000100", "l": "motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002497", "l": "primary trophoblast giant cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D007985", "l": "Leydig Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4317150", "l": "Vacuolated lymphocyte"}, {"i": "SNOMEDCT:725384001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440382", "l": "Cells.cytoplasmic Ig mu"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709172", "l": "Neoplastic Epithelioid Fibrohistiocytic Cell"}, {"i": "NCIT:C49080", "l": "Neoplastic Epithelioid Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000334", "l": "vegetative cell (sensu Fungi)"}]} +{"type": "biolink:Cell", "ic": "64.560469977467903", "identifiers": [{"i": "CL:0002251", "l": "epithelial cell of alimentary canal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000694", "l": "R3 photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740203", "l": "Cells.CD24-FLAER-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175157", "l": "Nucleated erythrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000020", "l": "spermatogonium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3534344", "l": "100 round cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183497", "l": "Cell of surface ectoderm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708270", "l": "Ex Vivo-Expanded HER2-Specific T Cells"}, {"i": "NCIT:C52192", "l": "Ex Vivo-Expanded HER2-Specific T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440355", "l": "CD79a+ cell"}, {"i": "SNOMEDCT:732274004"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000454", "l": "epinephrine secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002561", "l": "outer root sheath cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517530", "l": "Mouse Germ Cell"}, {"i": "NCIT:C24193", "l": "Mouse Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322679", "l": "Chromosome sex pair"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515138", "l": "Precursor T-Lymphoblast"}, {"i": "NCIT:C33930", "l": "Precursor T-Lymphoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441144", "l": "Reticulocytes.punctate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513493", "l": "Mott Cell"}, {"i": "NCIT:C37079", "l": "Mott Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733602", "l": "Autologous TBX-4000-treated Peripheral Blood Mononuclear Cells TBX-3400"}, {"i": "NCIT:C154565", "l": "Autologous TBX-4000-treated Peripheral Blood Mononuclear Cells TBX-3400"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000860", "l": "classical monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000761", "l": "type 9 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000941", "l": "thymic conventional dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440350", "l": "Cells.CD3-CD7+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000142", "l": "hyalocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157421", "l": "CD3 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514146", "l": "Plasmablastic Immunoblast"}, {"i": "NCIT:C37011", "l": "Plasmablastic Immunoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328956", "l": "Set of cholinergic cells of dorsal tegmental area [Ch5]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725117", "l": "Anti-CD3/MUC1 Antibody-armed PD-1 Inhibitor-induced Cytokine-induced Killer Cells"}, {"i": "NCIT:C148543", "l": "Anti-CD3/MUC1 Antibody-armed PD-1 Inhibitor-induced Cytokine-induced Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D002460", "l": "Cell Line"}]} +{"type": "biolink:Cell", "ic": "55.861102409464458", "identifiers": [{"i": "UMLS:C4727509", "l": "Genetically-engineered Immune Cell"}, {"i": "NCIT:C154231", "l": "Genetically-engineered Immune Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524980", "l": "Enterochromaffin-like Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002100", "l": "regular interventricular cardiac myocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000876", "l": "splenic white pulp macrophage"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023086", "l": "T Martinotti neuron"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:1001516", "l": "intestinal enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000504", "l": "enterochromaffin-like cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329343", "l": "Anti-hCD70-CAR Retroviral Vector-transduced Autologous PBLs"}, {"i": "NCIT:C129593", "l": "Anti-hCD70-CAR Retroviral Vector-transduced Autologous PBLs"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1511324", "l": "BresaGen ES Cell Line"}, {"i": "NCIT:C20247", "l": "BresaGen ES Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000341", "l": "enterocyte of epithelium proper of jejunum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002344", "l": "CD56-negative, CD161-positive immature natural killer cell, human"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882991", "l": "Secretory Adenocarcinoma Cell"}, {"i": "NCIT:C60313", "l": "Secretory Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000650", "l": "mesangial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518148", "l": "Population of all spermatozoa with coiled tail in portion of fluid"}, {"i": "SNOMEDCT:725254007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D055214", "l": "Retinal Photoreceptor Cell Outer Segment"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000722", "l": "cystoblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001131", "l": "vasa recta ascending limb cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186802", "l": "Macrophages | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513968", "l": "Neoplastic Follicular Dendritic Cell"}, {"i": "NCIT:C36893", "l": "Neoplastic Follicular Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157403", "l": "CD23+CD38+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180239", "l": "Endothelial cell of Peyer's patch"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002278", "l": "GIP cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979667", "l": "Cells.CD19+IgA+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0029431", "l": "Osteoclasts"}, {"i": "NCIT:C12570", "l": "Osteoclast"}, {"i": "MESH:D010010", "l": "Osteoclasts"}, {"i": "SNOMEDCT:27770000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D011387", "l": "Prokaryotic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000281", "l": "smooth muscle cell of cecum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157376", "l": "CD2+CD7+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000715", "l": "embryonic crystal cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1514055", "l": "Neoplastic Osteoblast"}, {"i": "NCIT:C36900", "l": "Neoplastic Osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332839", "l": "Purkinje myocyte of interventricular septum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184820", "l": "Variant lymphocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0017473", "l": "Germ Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157631", "l": "CD61 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D017966", "l": "Pyramidal Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1648296", "l": "Cells.CD38+Kappa+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163454", "l": "Eosinophils/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D006644", "l": "Histiocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000338", "l": "neuroblast (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163713", "l": "Erythrocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "44.081597049772775", "identifiers": [{"i": "CL:0002371", "l": "somatic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170945", "l": "Leukocytes | Vaginal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277534", "l": "Oogonial Stem Cells"}, {"i": "MESH:D000072977", "l": "Oogonial Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000022", "l": "mesonephric nephron tubule epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1280426", "l": "Entire beta Cell of islet"}, {"i": "SNOMEDCT:247867004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000348", "l": "basal cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002463", "l": "SIRPa-positive adipose dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510888", "l": "Blast cell positive for CD123 antigen"}, {"i": "SNOMEDCT:724307004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979866", "l": "CD244 (cell)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002571", "l": "hepatic mesenchymal stem cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0229614", "l": "Prolymphocyte (cell)"}, {"i": "NCIT:C13119", "l": "Prolymphocyte"}, {"i": "SNOMEDCT:19394005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322669", "l": "CD56+ NK lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002492", "l": "strial marginal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D053058", "l": "Trophozoites"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4084729", "l": "Cardiac Stem Cell"}, {"i": "NCIT:C124143", "l": "Cardiac Stem Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002406", "l": "immature Vgamma2-positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001203", "l": "CD8-positive, alpha-beta memory T cell, CD45RO-positive"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000762", "l": "nucleated thrombocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513020", "l": "Mature B-Lymphocyte at the Germinal Center Stage of Differentiation"}, {"i": "NCIT:C38436", "l": "Mature B-Lymphocyte at the Germinal Center Stage of Differentiation"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001069", "l": "group 2 innate lymphoid cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002113", "l": "B220-low CD38-negative unswitched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495541", "l": "A1 noradrenaline cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4764336", "l": "OmnImmune"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023030", "l": "L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513981", "l": "Neoplastic Granulosa Cell"}, {"i": "NCIT:C36894", "l": "Neoplastic Granulosa Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246477", "l": "Mesomesenchymal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267937", "l": "Lymphocyte positive for CD49B antigen"}, {"i": "SNOMEDCT:117380001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000626", "l": "olfactory granule cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4505192", "l": "THP-1 Cells"}, {"i": "MESH:D000074084", "l": "THP-1 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184818", "l": "Variant lymphocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711306", "l": "Malignant Thyroid Gland Follicular Clear Cell"}, {"i": "NCIT:C47821", "l": "Malignant Thyroid Gland Follicular Clear Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899739", "l": "CXCL12-Abundant Reticular Cell"}, {"i": "NCIT:C114786", "l": "CXCL12-Abundant Reticular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2936598", "l": "Pancreatic Stellate Cells"}, {"i": "NCIT:C107531", "l": "Pancreatic Stellate Cell"}, {"i": "MESH:D058954", "l": "Pancreatic Stellate Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157319", "l": "CD15 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157538", "l": "CD4+CD25+CD45RA+CD127Low+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000975", "l": "short lived plasma cell"}]} +{"type": "biolink:Cell", "ic": "63.331851047434839", "identifiers": [{"i": "CL:0000084", "l": "T cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1515234", "l": "Technion ES Cell Line"}, {"i": "NCIT:C20295", "l": "Technion ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510885", "l": "Blast cell positive for CD13 antigen"}, {"i": "SNOMEDCT:724270000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000958", "l": "T1 B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000983", "l": "IgM plasmablast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518155", "l": "Population of all spermatozoa with abnormal midpiece in portion of fluid"}, {"i": "SNOMEDCT:725226000"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:2000022", "l": "cardiac septum cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229586", "l": "Structure of parathyroid chief cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163683", "l": "Erythrocyte clumps | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696688", "l": "Cells.CD19+CD27+IgD-IgM+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002554", "l": "fibroblast of lymphatic vessel"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514010", "l": "Neoplastic Lobular Epithelial Cell"}, {"i": "NCIT:C36878", "l": "Neoplastic Lobular Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000873", "l": "splenic metallophillic macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268444", "l": "Nonhematic cell"}, {"i": "SNOMEDCT:115611000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170920", "l": "Leukocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3488038", "l": "human breast tumor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176908", "l": "Cells.cytoplasmic Ig"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4525597", "l": "Autologous Peripheral Blood Mononuclear Cells"}, {"i": "NCIT:C135058", "l": "Autologous Peripheral Blood Mononuclear Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072767", "l": "Cells.4q12 chromosome region rearrangements"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001006", "l": "kidney afferent arteriole cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3826992", "l": "Immature Myeloid Cell"}, {"i": "NCIT:C113503", "l": "Immature Myeloid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312737", "l": "Immunologic cell"}, {"i": "SNOMEDCT:64419002"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000663", "l": "valve cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515141", "l": "T-Prolymphocyte"}, {"i": "NCIT:C33927", "l": "T-Prolymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510985", "l": "Autologous Tumor Cell"}, {"i": "NCIT:C12940", "l": "Autologous Tumor Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171959", "l": "Malignant cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1522104", "l": "Spindle Melanoma Cell"}, {"i": "NCIT:C36874", "l": "Spindle Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000773", "l": "eosinophilic metamyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1882059", "l": "Neoplastic Sex Cord-Stromal Cell Resembling Steroid Hormone-Secreting Cell"}, {"i": "NCIT:C61450", "l": "Neoplastic Sex Cord-Stromal Cell Resembling Steroid Hormone-Secreting Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514437", "l": "Primitive Mesenchymal Round Cell"}, {"i": "NCIT:C36910", "l": "Primitive Mesenchymal Round Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267870", "l": "Lymphocyte positive for CD12 antigen"}, {"i": "SNOMEDCT:117549007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002042", "l": "immature NK T cell stage IV"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4723769", "l": "Therapeutic Invariant Natural Killer T-cells"}, {"i": "NCIT:C148557", "l": "Therapeutic Invariant Natural Killer T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173469", "l": "Monocytes+Macrophages | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514008", "l": "Neoplastic Large T-Lymphocyte"}, {"i": "NCIT:C37016", "l": "Neoplastic Large T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329763", "l": "Transitional myocyte of atrioventricular bundle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0029432", "l": "Osteocytes"}, {"i": "SNOMEDCT:23821005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D005057", "l": "Eukaryotic Cells"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0001061", "l": "abnormal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000305", "l": "fibroblast of connective tissue of glandular part of prostate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0037866", "l": "Spermatogonia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000698", "l": "kidney resident macrophage"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513410", "l": "Monkey Cell Line"}, {"i": "NCIT:C20219", "l": "Monkey Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4521448", "l": "Derived Peripheral Blood Mononuclear Cell"}, {"i": "NCIT:C138972", "l": "Derived Peripheral Blood Mononuclear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440394", "l": "Cells.S phase"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516101", "l": "B-Prolymphocyte"}, {"i": "NCIT:C33926", "l": "B-Prolymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945924", "l": "Cell positive for CD23 antigen"}, {"i": "SNOMEDCT:116755006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000239", "l": "anterior lateral line nerve glial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831438", "l": "Autologous Cultured Acute Myeloid Leukemia-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C111996", "l": "Autologous Cultured Acute Myeloid Leukemia-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055479", "l": "Allogeneic CD3- CD19- Selected Natural Killer Cells"}, {"i": "NCIT:C121445", "l": "Allogeneic CD3- CD19- Selected Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001055", "l": "CD14-positive, CD16-low monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519737", "l": "Tzanck Cell"}, {"i": "NCIT:C39665", "l": "Tzanck Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0037868", "l": "sperm cell"}, {"i": "NCIT:C12602", "l": "Spermatozoon"}, {"i": "MESH:D013094", "l": "Spermatozoa"}, {"i": "SNOMEDCT:6789008"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1514188", "l": "Pochon ES Cell Line"}, {"i": "NCIT:C20284", "l": "Pochon ES Cell Line"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000772", "l": "immature eosinophil"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12598", "l": "Oocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C2936411", "l": "Th17 Cells"}, {"i": "NCIT:C113815", "l": "T Helper 17 Cell"}, {"i": "MESH:D058504", "l": "Th17 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740205", "l": "Cells.TACI"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736927", "l": "Cells.CD13+HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0814990", "l": "neural cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3273371", "l": "CD4 Positive Memory T-Lymphocyte"}, {"i": "NCIT:C97349", "l": "CD4 Positive Memory T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002063", "l": "type II pneumocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002215", "l": "type IIb muscle cell"}]} +{"type": "biolink:Cell", "ic": "70.769338388976067", "identifiers": [{"i": "CL:0000499", "l": "stromal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000238", "l": "non keratinizing barrier epithelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514096", "l": "Neoplastic Small to Medium-Sized T-Lymphocyte"}, {"i": "NCIT:C39606", "l": "Neoplastic Small to Medium-Sized T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1178808", "l": "Purkinje myocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002142", "l": "dark cell of eccrine sweat gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267875", "l": "Lymphocyte positive for CD16 antigen"}, {"i": "SNOMEDCT:117554003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440248", "l": "Cells.CD11c+CD25+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000494", "l": "UV sensitive photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0002117", "l": "IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171862", "l": "Macrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C176755", "l": "Follicular Helper T Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155287", "l": "Blasts/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267890", "l": "Lymphocyte positive for CD20 antigen"}, {"i": "SNOMEDCT:116842001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510917", "l": "Blast cell with terminal deoxyribonucleotidyl transferase"}, {"i": "SNOMEDCT:724317009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727558", "l": "Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1"}, {"i": "NCIT:C154285", "l": "Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D016246", "l": "Lymphocytes, Tumor-Infiltrating"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267881", "l": "Lymphocyte negative for CD16 antigen and positive for CD34 antigen"}, {"i": "SNOMEDCT:117558000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333121", "l": "Enterocyte of epithelium of intestinal villus"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1708877", "l": "Malignant Fibrohistiocytic Cell"}, {"i": "NCIT:C49062", "l": "Malignant Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002411", "l": "Vgamma1.1-positive, Vdelta6.3-negative thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0486825", "l": "Germ cells.immature"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2599785", "l": "Granulocytes.CD59 deficient"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0011001", "l": "spinal cord motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163709", "l": "Erythrocytes | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C4055074", "l": "Effector Memory Immune Cell"}, {"i": "NCIT:C122731", "l": "Effector Memory Immune Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001286", "l": "inner medulla vasa recta descending limb cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C3146292", "l": "Mouse Basophil"}, {"i": "NCIT:C22591", "l": "Mouse Basophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157393", "l": "CD22 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157273", "l": "CD11c+CD103+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173471", "l": "Monocytes+Macrophages | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173499", "l": "Mononuclear cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000342", "l": "enterocyte of epithelium proper of ileum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440306", "l": "Cells.CD40"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333861", "l": "Micromegakaryocyte"}, {"i": "NCIT:C12916", "l": "Micromegakaryocyte"}, {"i": "SNOMEDCT:33196003"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000138", "l": "chondrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002064", "l": "pancreatic acinar cell"}]} +{"type": "biolink:Cell", "ic": "75.324974028080362", "identifiers": [{"i": "UMLS:C1514109", "l": "Neoplastic T-Lymphocyte"}, {"i": "NCIT:C38641", "l": "Neoplastic T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173468", "l": "Monocytes+Macrophages | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180382", "l": "Regular cardiac myocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515969", "l": "Anaplastic Plasma Cell"}, {"i": "NCIT:C37081", "l": "Anaplastic Plasma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000833", "l": "eosinophilic promyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267829", "l": "T lymphocyte positive for CD16 antigen and negative for CD57 antigen"}, {"i": "SNOMEDCT:115415001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000356", "l": "microfold cell of epithelium proper of duodenum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0596995", "l": "Myoblasts"}, {"i": "NCIT:C33151", "l": "Myoblast"}, {"i": "MESH:D032446", "l": "Myoblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163440", "l": "Eosinophils | Fetus | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1708873", "l": "Malignant Epithelial Large Cell with Vesicular Nucleus and Distinct Nucleolus"}, {"i": "NCIT:C54387", "l": "Malignant Epithelial Large Cell with Vesicular Nucleus and Distinct Nucleolus"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002066", "l": "Feyrter cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0677626", "l": "hepatoma cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000433", "l": "epithelial cell of lacrimal canaliculus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440416", "l": "Cells.t(9;11)(p22;q23)(MLLT3,MLL)"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000313", "l": "gastric goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D020397", "l": "Goblet Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000872", "l": "splenic marginal zone macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157295", "l": "CD13 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154481", "l": "Basophils | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440239", "l": "Cell positive for CD107a antigen"}, {"i": "SNOMEDCT:725723007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510963", "l": "Atypical Reparative Cell"}, {"i": "NCIT:C36785", "l": "Atypical Reparative Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267945", "l": "Lymphocyte positive for CD53 antigen"}, {"i": "SNOMEDCT:117388008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440233", "l": "Cell positive for CD100 antigen"}, {"i": "SNOMEDCT:725325003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696632", "l": "Cells.CD3-CD45+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545589", "l": "Blood monocytic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329680", "l": "Colony Forming Unit-Endothelial Cells"}, {"i": "NCIT:C129679", "l": "Colony Forming Unit-Endothelial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000757", "l": "type 5 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228008", "l": "Primary spermatocyte"}, {"i": "SNOMEDCT:49904001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001079", "l": "NKp44-positive group 3 innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000911", "l": "effector T cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513985", "l": "Neoplastic Histiocyte-Like Cell"}, {"i": "NCIT:C36961", "l": "Neoplastic Histiocyte-Like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009089", "l": "lung pericyte"}]} +{"type": "biolink:Cell", "ic": "68.973118714897424", "identifiers": [{"i": "CL:0000057", "l": "fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950040", "l": "Type D cell of ileum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323726", "l": "Trunk neural crest cell group"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177458", "l": "Plasma cells immature | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086002", "l": "Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes"}, {"i": "NCIT:C124795", "l": "Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546502", "l": "P.B. megakaryocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0038856", "l": "Suppressor T Lymphocyte"}, {"i": "SNOMEDCT:50146007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515989", "l": "Angioblast"}, {"i": "NCIT:C33934", "l": "Angioblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0018497", "l": "Inner Auditory Hair Cells"}, {"i": "NCIT:C32805", "l": "Inner Hair Cell of the Organ of the Corti"}, {"i": "MESH:D006199", "l": "Hair Cells, Auditory, Inner"}, {"i": "SNOMEDCT:11520008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3282679", "l": "foreskin keratinocyte, neonatal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267910", "l": "Lymphocyte positive for CD34 antigen"}, {"i": "SNOMEDCT:116733003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000741", "l": "spinal accessory motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163719", "l": "Erythrocytes | Gastric fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "75.848614326174683", "identifiers": [{"i": "CL:0000166", "l": "chromaffin cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C45919", "l": "Pituicyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711380", "l": "Neoplastic Medium to Large Size Erythroblast"}, {"i": "NCIT:C43218", "l": "Neoplastic Medium to Large Size Erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009084", "l": "epithelial cell of endometrial gland"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000914", "l": "immature NK T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267795", "l": "Mononuclear cell (histiocyte, lymphocyte, plasma cell)"}, {"i": "SNOMEDCT:116711000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333860", "l": "ABNORMAL MEGAKARYOCYTES AND PLATELETS"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038460", "l": "Non-hematopoietic stem cell"}, {"i": "SNOMEDCT:725272001"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1882049", "l": "Neoplastic Epithelial Large Polygonal Cell"}, {"i": "NCIT:C61000", "l": "Neoplastic Epithelial Large Polygonal Cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000244", "l": "transitional epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4763340", "l": "Anaxonic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510921", "l": "Blast cell positive for CD19 antigen"}, {"i": "SNOMEDCT:725177004"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002635", "l": "nonkeratinized epithelial cell of anal column"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339178", "l": "Epithelial cell of esophageal cardiac gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512865", "l": "Intermediate Type Trophoblastic Cell"}, {"i": "NCIT:C33920", "l": "Intermediate Type Trophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513124", "l": "Meningothelial Cell with Clear Cytoplasm"}, {"i": "NCIT:C37160", "l": "Meningothelial Cell with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "76.412572999466406", "identifiers": [{"i": "UMLS:C0003315", "l": "Antigen-Presenting Cells"}, {"i": "NCIT:C12621", "l": "Antigen Presenting Cell"}, {"i": "MESH:D000938", "l": "Antigen-Presenting Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440053", "l": "Abnormal blood cells.CD20"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008036", "l": "extravillous trophoblast"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513946", "l": "Neoplastic Cutaneous Basal Cell"}, {"i": "NCIT:C36781", "l": "Neoplastic Cutaneous Basal Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000023", "l": "oocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229588", "l": "Entire parathyroid wasserhelle cell"}, {"i": "SNOMEDCT:88360009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000916", "l": "dendritic epidermal T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000110", "l": "peptidergic neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733638", "l": "Allogeneic HPV-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C155881", "l": "Allogeneic HPV-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0487470", "l": "Round Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257913", "l": "Polyploid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0025166", "l": "Megakaryocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514041", "l": "Neoplastic Myoid Cell"}, {"i": "NCIT:C36964", "l": "Neoplastic Myoid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331667", "l": "Type II of carotid body"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157673", "l": "CD8+HLA-DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001100", "l": "kidney efferent arteriole smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182797", "l": "Epithelial cell of intermediate tubule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267912", "l": "Lymphocyte positive for CD35 antigen"}, {"i": "SNOMEDCT:117035005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000338", "l": "enterocyte of epithelium of crypt of Lieberkuhn of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514165", "l": "Pleomorphic Adenocarcinoma Cell"}, {"i": "NCIT:C37171", "l": "Pleomorphic Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514741", "l": "Reactive Squamous Cell"}, {"i": "NCIT:C36810", "l": "Reactive Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157234", "l": "CD10 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007000", "l": "preameloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329053", "l": "Goblet cell of epithelium proper of jejunum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175147", "l": "Nucleated cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513469", "l": "Monocytoid B-Lymphocyte"}, {"i": "NCIT:C33138", "l": "Monocytoid B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000614", "l": "basophilic myelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157387", "l": "CD20+FMC7+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166243", "l": "Hairy cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D008544", "l": "Melanocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002311", "l": "mammotroph"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1512995", "l": "Maria ES Cell Line"}, {"i": "NCIT:C20274", "l": "Maria ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0815002", "l": "GABAergic Neurons"}, {"i": "MESH:D059330", "l": "GABAergic Neurons"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000405", "l": "neuroepidermoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546497", "l": "P.B. plasmoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514205", "l": "Polylobated T-Lymphocyte"}, {"i": "NCIT:C39599", "l": "Polylobated T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000495", "l": "small intestine goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157671", "l": "CD8+CD57+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1179503", "l": "Cementocyte"}, {"i": "NCIT:C32275", "l": "Cementocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4053969", "l": "Suppressive Monocyte"}, {"i": "NCIT:C122732", "l": "Suppressive Monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009009", "l": "paneth cell of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599846", "l": "PBMC (peripheral blood mononuclear cell)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000850", "l": "macula densa epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157546", "l": "CD4+CD45RA+CD45RB+CD45RC+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180237", "l": "Cuboidal endothelial cell of vascular tree"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1179114", "l": "Basal cell of olfactory epithelium"}, {"i": "NCIT:C13153", "l": "Olfactory Basal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684123", "l": "Late erythroblast"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "UMLS:C1517806", "l": "Leukemic Cell"}, {"i": "NCIT:C25553", "l": "Leukemic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706828", "l": "Apocrine Cell"}, {"i": "NCIT:C43374", "l": "Apocrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727680", "l": "Expanded Cord Blood Stem Cells Mixed with Engineered Human Endothelial Cells AB-110"}, {"i": "NCIT:C150135", "l": "Expanded Cord Blood Stem Cells Mixed with Engineered Human Endothelial Cells AB-110"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D017154", "l": "Stromal Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183357", "l": "Type-1 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182626", "l": "Epithelial cell of paranasal sinus part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2950709", "l": "Set of Golgi neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179124", "l": "Type I taste bud cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179672", "l": "Stem cell of intestinal crypt of Lieberkuhn"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008031", "l": "cortical interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0677646", "l": "crypt cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0001047", "l": "CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000923", "l": "CD4-positive type I NK T cell"}]} +{"type": "biolink:Cell", "ic": "67.444934845976888", "identifiers": [{"i": "CL:0000710", "l": "neurecto-epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0597694", "l": "Xenopus oocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002265", "l": "type D cell of colon"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000233", "l": "platelet"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173467", "l": "Monocytes+Macrophages | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:2000046", "l": "ventricular cardiac muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764367", "l": "iPSC-derived Natural Killer Cells FT500"}, {"i": "NCIT:C158438", "l": "iPSC-derived Natural Killer Cells FT500"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267811", "l": "Lymphocyte positive for CD1A antigen"}, {"i": "SNOMEDCT:117514000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1370091", "l": "Cells.CD11+CD18+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327527", "l": "Sympathetic ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000037", "l": "posterior lateral line neuromast hair cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154301", "l": "Band form neutrophils | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1947989", "l": "Colony (cells or organisms)"}, {"i": "NCIT:C61515", "l": "Colony"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300405", "l": "Cells.chromosome region 13q14"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008026", "l": "open tracheal system tracheocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000788", "l": "naive B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254948", "l": "C5 Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0333826", "l": "Atypical lymphoblast"}, {"i": "NCIT:C12914", "l": "Neoplastic Lymphoblast"}, {"i": "SNOMEDCT:84863008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002292", "l": "type I cell of carotid body"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4706843", "l": "Indium (111-In) labeled granulocyte"}, {"i": "SNOMEDCT:763410001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333853", "l": "Cleaved cell"}, {"i": "NCIT:C28128", "l": "Cleaved Cell"}, {"i": "SNOMEDCT:58604003"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000693", "l": "neurogliaform cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001039", "l": "terminally differentiated osteoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002081", "l": "type II cell of carotid body"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267840", "l": "Lymphocyte negative for CD3 antigen and positive for CD19 antigen"}, {"i": "SNOMEDCT:116734009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000321", "l": "seminal fluid secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170471", "l": "Large granular lymphocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511469", "l": "CY91"}, {"i": "NCIT:C20243", "l": "CY91"}]} +{"type": "biolink:Cell", "ic": "77.349316285872916", "identifiers": [{"i": "CL:0002032", "l": "hematopoietic oligopotent progenitor cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000725", "l": "nitrogen fixing cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0039198", "l": "Regulatory T-Lymphocytes"}, {"i": "MESH:D050378", "l": "T-Lymphocytes, Regulatory"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000427", "l": "adrenal cortex chromaffin cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1879680", "l": "Remestemcel-L"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513756", "l": "Mummified Cell"}, {"i": "NCIT:C37025", "l": "Mummified Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513125", "l": "Meningothelial Cell with Elongated Processes"}, {"i": "NCIT:C37157", "l": "Meningothelial Cell with Elongated Processes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4324117", "l": "CD77+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002458", "l": "langerin-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002357", "l": "fetal derived definitive erythrocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000622", "l": "acinar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496154", "l": "Aaq dopamine cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000078", "l": "placental pericyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000951", "l": "IgE short lived plasma cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086350", "l": "GD2-CAR-expressing Autologous T-lymphocytes"}, {"i": "NCIT:C123820", "l": "GD2-CAR-expressing Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000894", "l": "DN1 thymic pro-T cell"}]} +{"type": "biolink:Cell", "ic": "68.560173062599716", "identifiers": [{"i": "UMLS:C4527420", "l": "T-cell Receptor-engineered T-cells"}, {"i": "NCIT:C138180", "l": "T-cell Receptor-engineered T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733630", "l": "Autologous Ovarian Cancer-specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C155664", "l": "Autologous Ovarian Cancer-specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000976", "l": "IgA short lived plasma cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440303", "l": "Cells.CD39"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:2000049", "l": "primary motor cortex pyramidal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002014", "l": "Kit-negative, Ly-76 high basophilic erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023121", "l": "sst chodl GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002105", "l": "CD38-positive IgG memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3850017", "l": "Endothelial Progenitor Cells"}, {"i": "NCIT:C124145", "l": "Endothelial Progenitor Cell"}, {"i": "MESH:D066026", "l": "Endothelial Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002483", "l": "hair follicle melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2698062", "l": "Alpha-Galactosylceramide-Pulsed Autologous Dendritic Cells"}, {"i": "NCIT:C78489", "l": "Alpha-Galactosylceramide-Pulsed Autologous Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000443", "l": "ciliary muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337324", "l": "Glandular cell of prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002565", "l": "iris pigment epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000493", "l": "mesothelial cell of visceral pleura"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1524103", "l": "CNS - Brain - Glial Cell (MMHCC)"}, {"i": "NCIT:C22613", "l": "Mouse Glial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170941", "l": "Leukocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177778", "l": "Polymorphonuclear cells | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724886", "l": "Autologous Mesenchymal Stem Cells-Poly Lactic-co-glycolic Acid"}, {"i": "NCIT:C148189", "l": "Autologous Mesenchymal Stem Cells-Poly Lactic-co-glycolic Acid"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182623", "l": "Unipotent stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001503", "l": "olfactory bulb tufted cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0032112", "l": "Plasma Cells"}, {"i": "NCIT:C12486", "l": "Plasma Cell"}, {"i": "MESH:D010950", "l": "Plasma Cells"}, {"i": "SNOMEDCT:113335003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D032389", "l": "Myocytes, Smooth Muscle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514052", "l": "Neoplastic Oligodendrocyte-Like Cell"}, {"i": "NCIT:C37147", "l": "Neoplastic Oligodendrocyte-Like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038446", "l": "Reticulocytes.hypochromic"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000602", "l": "pressoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267800", "l": "CYCD79+ lymphocyte"}, {"i": "SNOMEDCT:117504009"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C1510723", "l": "Abnormal Erythroid Precursor"}, {"i": "NCIT:C37053", "l": "Abnormal Erythroid Precursor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000483", "l": "bombesin stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002606", "l": "astrocyte of the spinal cord"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000448", "l": "white fat cell"}]} +{"type": "biolink:Cell", "ic": "73.153983691316824", "identifiers": [{"i": "UMLS:C1513998", "l": "Neoplastic Large Cell with Abundant Cytoplasm"}, {"i": "NCIT:C37107", "l": "Neoplastic Large Cell with Abundant Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1708862", "l": "Malignant Cell with Eosinophilic Cytoplasm"}, {"i": "NCIT:C53644", "l": "Malignant Cell with Eosinophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511447", "l": "Mouse Undifferentiated Brain Cell"}, {"i": "NCIT:C22624", "l": "Mouse Undifferentiated Brain Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684117", "l": "prokaryoblast"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000670", "l": "primordial germ cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2826113", "l": "M87o-Transduced CD34+ Peripheral Blood Stem Cells"}, {"i": "NCIT:C82351", "l": "M87o-Transduced CD34+ Peripheral Blood Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0015161", "l": "Eukaryotic Cells"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000596", "l": "sexual spore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267955", "l": "Lymphocyte positive for CD62P antigen"}, {"i": "SNOMEDCT:117396003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514078", "l": "Neoplastic Round Cell with Neuronal Differentiation"}, {"i": "NCIT:C37101", "l": "Neoplastic Round Cell with Neuronal Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2963403", "l": "Cells.CD79"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267817", "l": "Lymphocyte positive for both CD3 antigen and CD16 antigen"}, {"i": "SNOMEDCT:117519005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328888", "l": "Cholinergic amacrine cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177474", "l": "Plasma cells/100 leukocytes | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229541", "l": "Pituitary chromophobe cell"}, {"i": "SNOMEDCT:27186004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182778", "l": "Epithelial cell of sweat gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157380", "l": "CD20 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1513940", "l": "Neoplastic Clear Cell"}, {"i": "NCIT:C36757", "l": "Neoplastic Clear Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0005018", "l": "ghrelin secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4682464", "l": "Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707"}, {"i": "NCIT:C139730", "l": "Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "CL:0000617", "l": "GABAergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174096", "l": "Myelocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5185787", "l": "ZAP70 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175154", "l": "Nucleated cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157439", "l": "CD3+CD4+ (T4 helper) cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4301984", "l": "Non-motile spermatozoa"}, {"i": "SNOMEDCT:723203005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175160", "l": "Nucleated erythrocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339635", "l": "Enterocyte of epithelium of crypt of Lieberkuhn of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483181", "l": "CD10+CD20+"}]} +{"type": "biolink:Cell", "ic": "75.848614326174683", "identifiers": [{"i": "CL:0000188", "l": "cell of skeletal muscle"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12579", "l": "Ameloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181540", "l": "Chromaffin cell of paraganglion"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362084", "l": "Washed packed erythrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896917", "l": "siRNA-transfected Peripheral Blood Mononuclear Cells APN401"}, {"i": "NCIT:C116353", "l": "siRNA-transfected Peripheral Blood Mononuclear Cells APN401"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157515", "l": "CD3-CD16+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881593", "l": "Malignant Sex Cord-Stromal Cell"}, {"i": "NCIT:C61416", "l": "Malignant Sex Cord-Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331651", "l": "Polar Bodies"}, {"i": "MESH:D059705", "l": "Polar Bodies"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514014", "l": "Neoplastic Maturing Ganglion Cell"}, {"i": "NCIT:C42093", "l": "Neoplastic Maturing Ganglion Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002247", "l": "pleural macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764273", "l": "Allogeneic Anti-CD19-CAR T-cells PBCAR0191"}, {"i": "NCIT:C158558", "l": "Azercabtagene Zapreleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002136", "l": "type II cell of adrenal cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440359", "l": "Cells.CD80"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157525", "l": "CD3-CD56+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516727", "l": "Common Thymocyte"}, {"i": "NCIT:C32360", "l": "Common Thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727557", "l": "Allogeneic CD19CAR-transfected Cytokine-induced Killer Cells"}, {"i": "NCIT:C154284", "l": "Allogeneic CD19CAR-transfected Cytokine-induced Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512478", "l": "Hodgkin Cell"}, {"i": "NCIT:C37021", "l": "Hodgkin Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163443", "l": "Eosinophils | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000574", "l": "erythrophore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0030559", "l": "Parietal Cells, Gastric"}, {"i": "NCIT:C12594", "l": "Parietal Cell"}, {"i": "MESH:D010295", "l": "Parietal Cells, Gastric"}, {"i": "SNOMEDCT:57041003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177616", "l": "Platelets | Blood capillary | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1267822", "l": "CD4+ CD25+ Regulatory T Cells"}, {"i": "NCIT:C78829", "l": "CD4+ CD25+ Regulatory T Cells"}, {"i": "SNOMEDCT:115399009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323492", "l": "Parasol ganglion cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4241119", "l": "Mesencephalic neural crest cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519111", "l": "Round Cell with Primitive Myoblastic Differentiation"}, {"i": "NCIT:C36951", "l": "Round Cell with Primitive Myoblastic Differentiation"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186228", "l": "Erythrocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157436", "l": "CD3+CD4+ (T4 helper) cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "74.378130331796413", "identifiers": [{"i": "CL:0000362", "l": "epidermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163742", "l": "Erythrocytes.dysmorphic | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002487", "l": "cutaneous/subcutaneous mechanoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0019000", "l": "Hemocytes (cell)"}, {"i": "MESH:D006434", "l": "Hemocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2936408", "l": "Mesophyll Cells"}, {"i": "MESH:D058503", "l": "Mesophyll Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154475", "l": "Basophils | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511440", "l": "CH02"}, {"i": "NCIT:C20286", "l": "CH02"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157365", "l": "CD2 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175607", "l": "Other cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440299", "l": "Cells.CD35"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002382", "l": "multinucleate conidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0037888", "l": "Spherocytes"}, {"i": "MESH:D013102", "l": "Spherocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002243", "l": "smooth muscle cell of sphincter of pupil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4053624", "l": "Autologous Tumor Infiltrating Lymphocytes LN-144"}, {"i": "NCIT:C120552", "l": "Lifileucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515152", "l": "TE62"}, {"i": "NCIT:C20301", "l": "TE62"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157550", "l": "CD4+CD45RO+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4695105", "l": "Kymriah (DLBCL)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3274553", "l": "Tri-virus/GD2-specific Allogeneic Cytotoxic T-lymphocytes"}, {"i": "NCIT:C99132", "l": "Tri-virus/GD2-specific Allogeneic Cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000344", "l": "paneth cell of epithelium proper of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002449", "l": "CD94-positive Ly49CI-positive natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002679", "l": "natural helper lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002360", "l": "AGM hematopoietic stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979677", "l": "Cells.CD81"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483186", "l": "CD19+SmIg kappa+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881559", "l": "Malignant Hobnail Cell"}, {"i": "NCIT:C61543", "l": "Malignant Hobnail Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522072", "l": "Skin - Epidermis - Keratinocyte (MMHCC)"}, {"i": "NCIT:C22542", "l": "Mouse Keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157384", "l": "CD20+FMC7+ cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001001", "l": "immature CD8_alpha-negative CD11b-negative dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440051", "l": "Abnormal blood cells.CD19"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1564017", "l": "Gastric delta Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324104", "l": "Diffuse cone bipolar cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708913", "l": "Malignant Spindle-Shaped Osteoblast"}, {"i": "NCIT:C53957", "l": "Malignant Spindle-Shaped Osteoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514105", "l": "Neoplastic Subependymal Glial Cell"}, {"i": "NCIT:C41451", "l": "Neoplastic Subependymal Glial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709202", "l": "Neoplastic Spindle-Shaped Chondrocyte"}, {"i": "NCIT:C53473", "l": "Neoplastic Spindle-Shaped Chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163729", "l": "Erythrocytes | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002263", "l": "transitional cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179528", "l": "Reticulocytes.low fluorescence/100 erythrocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C179841", "l": "Mesenchymal Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325047", "l": "Martinotti cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512641", "l": "Immature Mesenchymal Spindle Cell"}, {"i": "NCIT:C37120", "l": "Immature Mesenchymal Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000410", "l": "myocyte of atrioventricular node"}]} +{"type": "biolink:Cell", "ic": "75.848614326174683", "identifiers": [{"i": "CL:0000349", "l": "extraembryonic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163448", "l": "Eosinophils | Urine sediment | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267847", "l": "Lymphocyte positive for both CD5 antigen and CD20 antigen"}, {"i": "SNOMEDCT:117534004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513123", "l": "Meningothelial cell"}, {"i": "NCIT:C33095", "l": "Meningothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496528", "l": "A5 noradrenaline cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0011306", "l": "Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517818", "l": "Mouse Pre-T-Lymphocyte"}, {"i": "NCIT:C22580", "l": "Mouse Pre-T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000979", "l": "IgG memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5183792", "l": "Transitional cells | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000242", "l": "Merkel cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002270", "l": "type EC2 enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254546", "l": "Anisocyte (cell)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000086", "l": "germ line stem cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002192", "l": "metamyelocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001589", "l": "duodenum glandular cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157346", "l": "CD19 cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157527", "l": "CD3-CD57+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184399", "l": "Unidentified cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333769", "l": "Vacuolated fibers"}, {"i": "SNOMEDCT:71272000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4321645", "l": "Set of embryonic stem cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0039748", "l": "theca cell"}, {"i": "NCIT:C12572", "l": "Theca Cell"}, {"i": "MESH:D013799", "l": "Theca Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182767", "l": "T-cell naive and memory and effector (CD27 and CD45RA) subsets | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513965", "l": "Neoplastic Fetal Epithelial Cell"}, {"i": "NCIT:C37113", "l": "Neoplastic Fetal Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000363", "l": "transitional myocyte of atrial branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000915", "l": "CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001087", "l": "effector memory CD4-positive, alpha-beta T cell, terminally differentiated"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000516", "l": "perineuronal satellite cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440048", "l": "Abnormal blood cells.CD10"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1182605", "l": "Ciliated columnar cell of tracheobronchial tree"}, {"i": "NCIT:C32317", "l": "Ciliated Bronchial Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709585", "l": "Pluripotent Primordial Germ Cell"}, {"i": "NCIT:C45735", "l": "Pluripotent Primordial Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337234", "l": "Suppressor enhancer T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175005", "l": "Normoblasts | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D051245", "l": "Retinal Bipolar Cells"}]} +{"type": "biolink:Cell", "ic": "69.298854394597811", "identifiers": [{"i": "UMLS:C0085983", "l": "Cell Line, Tumor"}, {"i": "NCIT:C20313", "l": "Tumor Cell Line"}, {"i": "MESH:D045744", "l": "Cell Line, Tumor"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0524979", "l": "Enteroendocrine Cell"}, {"i": "NCIT:C45968", "l": "Enteroendocrine Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4528643", "l": "Kymriah"}, {"i": "NCIT:C102758", "l": "Tisagenlecleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000480", "l": "secretin stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000018", "l": "spermatid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000332", "l": "serous cell of epithelium of terminal bronchiole"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002471", "l": "MHC-II-negative non-classical monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171664", "l": "Lymphocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254876", "l": "Polychromic Normoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2697996", "l": "Allogeneic LMP1/LMP2-Specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C78201", "l": "Allogeneic LMP1/LMP2-Specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4287718", "l": "Cord Blood-derived Expanded Natural Killer Cells PNK-007"}, {"i": "NCIT:C128560", "l": "Cord Blood-derived Expanded Natural Killer Cells PNK-007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000091245", "l": "Memory B Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955314", "l": "Leukemia markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267977", "l": "Lymphocyte positive for CD87 antigen"}, {"i": "SNOMEDCT:117417005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163556", "l": "Epithelial cells.squamous | Sputum | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2827682", "l": "Autologous TGFbeta-Resistant HER2/EBV-Specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C85459", "l": "Autologous TGFbeta-Resistant HER2/EBV-Specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696004", "l": "Cells.CD3+CD8+CD27+CD62L+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697033", "l": "Cells.IgM"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0224522", "l": "Synoviocytes"}, {"i": "NCIT:C13059", "l": "Synovial Cell"}, {"i": "MESH:D000070918", "l": "Synoviocytes"}, {"i": "SNOMEDCT:76323008"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0596155", "l": "Basal Cell"}, {"i": "NCIT:C12475", "l": "Skin Basal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518158", "l": "Population of all motile spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:726584006"}]} +{"type": "biolink:Cell", "ic": "66.785808001218697", "identifiers": [{"i": "CL:0000789", "l": "alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0002620", "l": "skin fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181297", "l": "Light chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2984029", "l": "Autologous IL-21-Modulated CD8+ MART1-Specific T Cells"}, {"i": "NCIT:C91088", "l": "Autologous IL-21-Modulated CD8+ MART1-Specific T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000123", "l": "metanephric nephron tubule epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267980", "l": "Lymphocyte positive for CD93 antigen"}, {"i": "SNOMEDCT:117420002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882903", "l": "Cell positive for CD56 antigen"}, {"i": "SNOMEDCT:116828009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173439", "l": "Monocytes | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186934", "l": "Platelets | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267993", "l": "Lymphocyte positive for CD107A antigen"}, {"i": "SNOMEDCT:117433008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2985194", "l": "E. coli CD-expressing Genetically Modified Neural Stem Cells"}, {"i": "NCIT:C92585", "l": "E. coli CD-expressing Genetically Modified Neural Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4318752", "l": "CD5+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157927", "l": "Cells | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "69.08009647184646", "identifiers": [{"i": "CL:0000117", "l": "CNS neuron (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725019", "l": "Partially HLA-matched Adenovirus-specific T Lymphocytes"}, {"i": "NCIT:C148419", "l": "Partially HLA-matched Adenovirus-specific T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4699468", "l": "Light-chain negative plasma cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002623", "l": "acinar cell of salivary gland"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000092", "l": "hair follicular keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0598088", "l": "continuous cell line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183932", "l": "Luminal cell of prostatic acinus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229572", "l": "Supporting cell of carotid body"}, {"i": "SNOMEDCT:37269007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002408", "l": "immature Vgamma2-negative thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002560", "l": "inner root sheath cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267889", "l": "Lymphoblast positive for CD20 antigen"}, {"i": "SNOMEDCT:117565008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000950", "l": "IgE plasmablast"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000530", "l": "primary neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0242697", "l": "Muscle Fibers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C13001", "l": "Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440361", "l": "Cells.CD83"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000594", "l": "skeletal muscle satellite cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001287", "l": "outer medulla vasa recta descending limb cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157452", "l": "CD3+CD57+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253034", "l": "Epithelial cell of prostatic urethra"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323413", "l": "Set of rod cells of inner nuclear layer"}]} +{"type": "biolink:Cell", "ic": "69.997272734060871", "identifiers": [{"i": "CL:0000990", "l": "conventional dendritic cell"}]} +{"type": "biolink:Cell", "ic": "54.460307624802397", "identifiers": [{"i": "CL:0000738", "l": "leukocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267939", "l": "Lymphocyte positive for CD49D antigen"}, {"i": "SNOMEDCT:117382009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000365", "l": "animal zygote"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711280", "l": "Neoplastic Somatotroph Cell with Scarce Secretory Granules"}, {"i": "NCIT:C45940", "l": "Neoplastic Somatotroph Cell with Scarce Secretory Granules"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684127", "l": "stage II megakaryocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350243", "l": "Granulocyte-Macrophage Progenitor Cells"}, {"i": "MESH:D055014", "l": "Granulocyte-Macrophage Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000818", "l": "transitional stage B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008015", "l": "inhibitory motor neuron"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "NCIT:C41410", "l": "Neuroepithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170959", "l": "Leukocytes other | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314592", "l": "Colony-forming unit of macrophagocytic lineage"}, {"i": "SNOMEDCT:445092004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157472", "l": "CD3+TCR alpha beta+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516859", "l": "Stromal cell of endometrium"}, {"i": "NCIT:C33921", "l": "Endometrial Stromal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709173", "l": "Neoplastic Epithelioid Neuroendocrine Cell"}, {"i": "NCIT:C48593", "l": "Neoplastic Epithelioid Neuroendocrine Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178867", "l": "Plant Cells"}, {"i": "MESH:D059828", "l": "Plant Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517817", "l": "Leukocyte - Lymphocyte - Immature T-Lymphocyte (MMHCC)"}, {"i": "NCIT:C22579", "l": "Mouse Immature T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000625", "l": "CD8-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267801", "l": "CYIG MU+ lymphocyte"}, {"i": "SNOMEDCT:117505005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289596", "l": "Effector Memory T-Lymphocyte"}, {"i": "NCIT:C126419", "l": "Effector Memory T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2603381", "l": "CD135 cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002391", "l": "multinucleate blastoconidium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000846", "l": "vestibular dark cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2599947", "l": "Purkinje cell cytoplasmic type 1"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000028", "l": "CNS neuron (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1708907", "l": "Malignant Small Round Cell"}, {"i": "NCIT:C53487", "l": "Malignant Small Round Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596630", "l": "granule cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002044", "l": "Kit-positive, integrin beta7-high basophil mast progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182710", "l": "Epithelial cell of stratum corneum of esophagus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2951827", "l": "Endothelial cell of endocardium of ventricle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171669", "l": "Lymphocytes | Urine sediment | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882892", "l": "Cell positive for CD5 antigen"}, {"i": "SNOMEDCT:116746008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000105", "l": "pseudounipolar neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0282480", "l": "Muscle Fibers, White"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0487156", "l": "Lymphocyte positive for both CD5 antigen and CD19 antigen"}, {"i": "SNOMEDCT:117532000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0034143", "l": "Purkinje Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1882044", "l": "Neoplastic Apocrine Cell with Eosinophilic Granular Cytoplasm"}, {"i": "NCIT:C62207", "l": "Neoplastic Apocrine Cell with Eosinophilic Granular Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000034", "l": "anterior lateral line neuromast hair cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002305", "l": "epithelial cell of distal tubule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C33391", "l": "Pre-B Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0005006", "l": "ionocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002094", "l": "interstitial cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733830", "l": "Fibroblasts (Human)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511515", "l": "Reticulocyte specimen"}, {"i": "SNOMEDCT:725946000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3166352", "l": "Spermatozoa.abnormal head shape"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000271", "l": "lung ciliated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4484257", "l": "100 cells.CD8"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000487", "l": "oenocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1181052", "l": "Thyroid Gland Follicular Cell"}, {"i": "NCIT:C33783", "l": "Thyroid Gland Follicular Cell"}, {"i": "MESH:D000072637", "l": "Thyroid Epithelial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008032", "l": "rosehip neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157556", "l": "CD4+CD8+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175161", "l": "Nucleated erythrocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "70.634878722804729", "identifiers": [{"i": "CL:0000048", "l": "multi fate stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0017000", "l": "pulmonary ionocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440302", "l": "Cells.CD38+CD56+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440286", "l": "Cells.CD3+CD7+"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1001588", "l": "colon glandular cell"}]} +{"type": "biolink:Cell", "ic": "69.997272734060871", "identifiers": [{"i": "CL:1000504", "l": "kidney medulla cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002643", "l": "nonkeratinized cell of stratum corneum of esophageal epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440268", "l": "CD19+Lambda+ cell"}, {"i": "SNOMEDCT:732278001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009075", "l": "myo-medullary thymic epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085963", "l": "Anti-CD22 scFv TCRz:41BB-CAR Lentiviral Vector-transduced Autologous T-lymphocytes"}, {"i": "NCIT:C124656", "l": "Anti-CD22 scFv TCRz:41BB-CAR Lentiviral Vector-transduced Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163728", "l": "Erythrocytes | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4241340", "l": "Set of enteroendocrine cells of epithelium of stomach"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002482", "l": "dermal melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000062", "l": "placental villus capillary endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304492", "l": "Population of all granulocytes in portion of fluid"}, {"i": "SNOMEDCT:719696007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332530", "l": "Goblet cell of epithelium proper of ileum"}]} +{"type": "biolink:Cell", "ic": "76.711710297129045", "identifiers": [{"i": "CL:0000359", "l": "vascular associated smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002326", "l": "luminal epithelial cell of mammary gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333857", "l": "Large non-cleaved cell"}, {"i": "SNOMEDCT:55134005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002550", "l": "fibroblast of the conjunctiva"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229650", "l": "Megakaryoblasts"}, {"i": "NCIT:C13122", "l": "Megakaryoblast"}, {"i": "SNOMEDCT:27852005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174861", "l": "Nonhematic cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0301863", "l": "\"U\" lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517738", "l": "Large Round Epithelioid Endothelial Cell"}, {"i": "NCIT:C37094", "l": "Large Round Epithelioid Endothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333402", "l": "Ciliary ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736936", "l": "Cells.CD56-CD138+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157451", "l": "CD3+CD56+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2964631", "l": "100 cells.CD34"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000377", "l": "dense-core granulated cell of epithelium of trachea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000707", "l": "R7 photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177776", "l": "Polyclonal plasma cells/Plasma cells.total | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1711387", "l": "Neoplastic Adrenal Cortical Cell"}, {"i": "NCIT:C48361", "l": "Neoplastic Adrenal Cortical Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882808", "l": "Cell positive for CD19 antigen"}, {"i": "SNOMEDCT:116753004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427533", "l": "Hypogranular white blood cell"}, {"i": "SNOMEDCT:250292003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171961", "l": "Malignant cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:1001052", "l": "kidney cortex vein cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D065309", "l": "Atypical Squamous Cells of the Cervix"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0017527", "l": "Giant Cells, Foreign-Body"}, {"i": "NCIT:C12561", "l": "Foreign Body Giant Cell"}, {"i": "MESH:D015743", "l": "Giant Cells, Foreign-Body"}, {"i": "SNOMEDCT:21386001"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000809", "l": "double-positive, alpha-beta thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1292101", "l": "IgM B lymphocyte"}, {"i": "SNOMEDCT:115607006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652635", "l": "technetium (99mTc) stannous agent labelled cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179186", "l": "Serous cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4743545", "l": "Spanlecortemlocel"}, {"i": "UMLS:C4745265", "l": "Allogeneic UCB-derived HSPCs MGTA 456"}, {"i": "NCIT:C111571", "l": "Spanlecortemlocel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515019", "l": "Subependymal Cell"}, {"i": "NCIT:C41452", "l": "Subependymal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267994", "l": "Lymphocyte positive for CD107B antigen"}, {"i": "SNOMEDCT:117434002"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000795", "l": "CD8-positive, alpha-beta regulatory T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225340", "l": "Transitional Epithelial Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1717525", "l": "Acute leukemia markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440242", "l": "Cells.CD115"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515148", "l": "TE06"}, {"i": "NCIT:C20300", "l": "TE06"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000947", "l": "IgE plasma cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170918", "l": "Leukocytes | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002268", "l": "P/D1 enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0009042", "l": "enteroendocrine cell of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157536", "l": "CD4+ CD26- Cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000085", "l": "germ line stem cell (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002158", "l": "external epithelial cell of tympanic membrane"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882842", "l": "Cells.CD3-CD19+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727553", "l": "Therapeutic Ex-vivo-treated Autologous Central Memory T Cells"}, {"i": "NCIT:C154280", "l": "Therapeutic Ex-vivo-treated Autologous Central Memory T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2717770", "l": "Germ Cells, Plant"}, {"i": "MESH:D055993", "l": "Germ Cells, Plant"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002380", "l": "oospore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511119", "l": "Binucleated Reed-Sternberg Cell"}, {"i": "NCIT:C37022", "l": "Binucleated Reed-Sternberg Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001027", "l": "CD7-negative lymphoid progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0028944", "l": "Oligodendroglia"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733878", "l": "Keratinocytes (Human)"}]} +{"type": "biolink:Cell", "ic": "64.502542037809732", "identifiers": [{"i": "CL:1000497", "l": "kidney cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733016", "l": "PP14 derivative-treated HLA-matched donor mononuclear cell-enriched leukocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C13057", "l": "Fibroblastic Reticular Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709163", "l": "Neoplastic Adrenal Cortical Oncocyte"}, {"i": "NCIT:C48448", "l": "Neoplastic Adrenal Cortical Oncocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4240445", "l": "Vascular smooth muscle cell of aorta"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000702", "l": "kidney pelvis smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328384", "l": "Peripheral blood mesothelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1711288", "l": "Primitive Round to Oval Cell"}, {"i": "NCIT:C53980", "l": "Primitive Round to Oval Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711215", "l": "Bone Marrow Stem Cell Committed to the Basophil Lineage"}, {"i": "NCIT:C43227", "l": "Bone Marrow Stem Cell Committed to the Basophil Lineage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1978414", "l": "Blast cell positive for CD22 antigen"}, {"i": "SNOMEDCT:724266008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5151350", "l": "Abnormal lymphocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520027", "l": "Preganglionic neuron"}, {"i": "NCIT:C33878", "l": "Visceral Efferent Neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000040", "l": "monoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157541", "l": "CD4+CD28+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1711389", "l": "Neoplastic Erythroblast"}, {"i": "NCIT:C43217", "l": "Neoplastic Erythroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000699", "l": "paraganglial type 1 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002457", "l": "epidermal Langerhans cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1519742", "l": "UCSF ES Cell Line"}, {"i": "NCIT:C20304", "l": "UCSF ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4551909", "l": "Bone Marrow Stromal Stem Cells"}, {"i": "SNOMEDCT:418460001"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000343", "l": "paneth cell of epithelium of small intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002150", "l": "epithelioid macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182625", "l": "Epithelial cell of buccal part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440424", "l": "Cells.XXX"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000468", "l": "myoepithelial cell of acinus of lactiferous gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257858", "l": "COS-7 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333846", "l": "Binucleated plasmablast"}, {"i": "SNOMEDCT:11908008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518075", "l": "Lymphokine-activated natural killer cell"}, {"i": "NCIT:C33041", "l": "Lymphokine-Activated Natural Killer Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001059", "l": "common myeloid progenitor, CD34-positive"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000307", "l": "tracheal epithelial cell"}]} +{"type": "biolink:Cell", "ic": "63.480897125401114", "identifiers": [{"i": "CL:0000075", "l": "columnar/cuboidal epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495620", "l": "A11 dopamine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4028002", "l": "alveolar capillary type 1 endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002423", "l": "DN2a thymocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002205", "l": "brush cell of lobular bronchiole"}]} +{"type": "biolink:Cell", "ic": "70.634878722804729", "identifiers": [{"i": "UMLS:C1517548", "l": "Glandular cell"}, {"i": "NCIT:C33923", "l": "Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001068", "l": "kidney venous system smooth muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0376351", "l": "Photoreceptor Cells, Vertebrate"}, {"i": "MESH:D020419", "l": "Photoreceptor Cells, Vertebrate"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180924", "l": "Non-nucleated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002103", "l": "IgG-positive double negative memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:3000000", "l": "ciliated epithelial cell of esophagus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696002", "l": "Cells.CD3+CD4+CD27+CD45RO+CD62L+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023080", "l": "stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157540", "l": "CD4+CD25-CD127+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267894", "l": "Lymphocyte positive for both CD22 antigen and CD19 antigen"}, {"i": "SNOMEDCT:117567000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517631", "l": "K-562"}, {"i": "NCIT:C19437", "l": "K-562"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000409", "l": "scolopidial sheath cell"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "UMLS:C1513943", "l": "Neoplastic Connective and Soft Tissue Spindle Cell"}, {"i": "NCIT:C36954", "l": "Neoplastic Connective and Soft Tissue Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000450", "l": "epithelial cell of glomerular capsule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518072", "l": "Lymphoid Blood-Forming Cell"}, {"i": "NCIT:C13012", "l": "Lymphoid Progenitor Cell"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "UMLS:C1513978", "l": "Neoplastic Glial Cell"}, {"i": "NCIT:C37126", "l": "Neoplastic Glial Cell"}]} +{"type": "biolink:Cell", "ic": "71.045893708194711", "identifiers": [{"i": "CL:0000839", "l": "myeloid lineage restricted progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175162", "l": "Nucleated erythrocytes | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:4023017", "l": "sst GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002566", "l": "dark melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157237", "l": "CD10 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1513982", "l": "Neoplastic Somatotroph Cell"}, {"i": "NCIT:C36919", "l": "Neoplastic Somatotroph Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000382", "l": "scolopale cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002269", "l": "vasoactive intestinal peptide secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519562", "l": "Totipotent neuroepithelial stem cell"}, {"i": "NCIT:C33796", "l": "Totipotent Neuroepithelial Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246841", "l": "Vagal neural crest cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2708698", "l": "Cells.HLA-B27"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518166", "l": "Population of all spermatozoa with duplicate head in portion of fluid"}, {"i": "SNOMEDCT:725247001"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002111", "l": "CD38-negative unswitched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267835", "l": "Lymphocyte positive for both CD3 antigen and HLA-DR antigen"}, {"i": "SNOMEDCT:117525009"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000381", "l": "neurosecretory neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0872076", "l": "Pluripotent Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440335", "l": "Cells.CD59 deficient"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157491", "l": "CD34 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002627", "l": "mature astrocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002038", "l": "T follicular helper cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002417", "l": "primitive erythroid lineage cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157282", "l": "CD123 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510910", "l": "Blast cell positive for CD30 antigen"}, {"i": "SNOMEDCT:725172005"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000398", "l": "endothelial cell of hepatic sinusoid"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002422", "l": "enucleated reticulocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000750", "l": "OFF-bipolar cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011015", "l": "amoeboid sperm cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0008003", "l": "somatic muscle myotube"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440399", "l": "Cells.t(11;14)(q13;q32)(CCND1,IGH)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177624", "l": "Platelets agranular | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157372", "l": "CD2 cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267820", "l": "Lymphocyte positive for both CD3 antigen and CD38 antigen"}, {"i": "SNOMEDCT:117521000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0011032", "l": "lysosome-rich enterocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000026", "l": "invertebrate nurse cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924220", "l": "Cells.CD11c+CD103+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0011030", "l": "dermal microvascular endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174104", "l": "Myelocytes/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955384", "l": "Spermatozoa.isolated tail"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0432613", "l": "Eosinophilic myeloblast"}, {"i": "SNOMEDCT:259719000"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1708887", "l": "Malignant Large Squamous Cell"}, {"i": "NCIT:C54235", "l": "Malignant Large Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514979", "l": "Strap-Like Skeletal Muscle Cell"}, {"i": "NCIT:C36948", "l": "Strap-Like Skeletal Muscle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440405", "l": "Cells.t(12;22)(q13;q12.2)(ATF1,EWSR1)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496262", "l": "Ats catecholamine cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000997", "l": "immature CD8_alpha-negative CD11b-positive dendritic cell"}]} +{"type": "biolink:Cell", "ic": "64.164273695218796", "identifiers": [{"i": "CL:0000187", "l": "muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157422", "l": "CD3 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175150", "l": "Nucleated cells | Dialysis fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172548", "l": "Metamyelocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0011104", "l": "interplexiform cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000849", "l": "kidney distal convoluted tubule epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267929", "l": "Lymphocyte positive for both CD45 antigen and CD14 antigen"}, {"i": "SNOMEDCT:117372008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267956", "l": "Lymphocyte positive for CD63 antigen"}, {"i": "SNOMEDCT:117397007"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1879717", "l": "Apocrine Carcinoma Cell"}, {"i": "NCIT:C36908", "l": "Apocrine Carcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1115672", "l": "Lymphocytes.kappa"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440276", "l": "Cells.CD27"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1254550", "l": "Toxicopathic Erythrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000960", "l": "T3 B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0024880", "l": "mast cell"}, {"i": "MESH:D008407", "l": "Mast Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4249177", "l": "Primitive endodermal cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157496", "l": "CD34 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171670", "l": "Lymphocytes | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C33261", "l": "C-Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1513933", "l": "Neoplastic Myeloblast with Basophilic Cytoplasm"}, {"i": "NCIT:C37066", "l": "Neoplastic Myeloblast with Basophilic Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "59.002815443861884", "identifiers": [{"i": "CL:0011115", "l": "precursor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0030280", "l": "Structure of alpha Cell of islet"}, {"i": "NCIT:C32052", "l": "Alpha Cell"}, {"i": "MESH:D050416", "l": "Glucagon-Secreting Cells"}, {"i": "SNOMEDCT:61028007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183931", "l": "Basal cell of prostatic acinus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172506", "l": "Mesothelial cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "CL:0000036", "l": "epithelial fate stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000487", "l": "smooth muscle cell of prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2698278", "l": "Autologous Anti-PSMA Gene-Modified T-Lymphocytes"}, {"i": "NCIT:C78197", "l": "Autologous Anti-PSMA Gene-Modified T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002549", "l": "fibroblast of choroid plexus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514809", "l": "Reed-Sternberg-Like Cell"}, {"i": "NCIT:C37024", "l": "Reed-Sternberg-Like Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002624", "l": "paneth cell of the appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333858", "l": "Small non-cleaved cell"}, {"i": "SNOMEDCT:33872006"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000428", "l": "stem cell of epidermis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517678", "l": "Koilocytotic Squamous Cell"}, {"i": "NCIT:C36808", "l": "Koilocytotic Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512134", "l": "ES05"}, {"i": "NCIT:C20253", "l": "ES05"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000379", "l": "sensory processing neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D015672", "l": "Erythroid Precursor Cells"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C1518178", "l": "Malignant Epithelial Small Cell"}, {"i": "NCIT:C36795", "l": "Malignant Epithelial Small Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513938", "l": "Neoplastic Chondroblast-Like Cell"}, {"i": "NCIT:C36986", "l": "Neoplastic Chondroblast-Like Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827836", "l": "TGFbDNRII-transduced Autologous Tumor Infiltrating Lymphocytes"}, {"i": "NCIT:C111992", "l": "TGFbDNRII-transduced Autologous Tumor Infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333350", "l": "Muscle Fibers, Intermediate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12618", "l": "Oligodendrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0227650", "l": "Juxtaglomerular cell"}, {"i": "NCIT:C13161", "l": "Juxtaglomerular Cell"}, {"i": "SNOMEDCT:56196004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157298", "l": "CD13 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0008039", "l": "lower motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000429", "l": "imaginal disc cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945921", "l": "Cells.CD2+CD26+"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:1000616", "l": "kidney outer medulla cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174656", "l": "Neutrophils.vacuolated+Segmented | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3896582", "l": "Ex Vivo-activated Autologous Lymph Node Lymphocytes"}, {"i": "NCIT:C114985", "l": "Ex Vivo-activated Autologous Lymph Node Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350052", "l": "Granulocyte Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000347", "l": "scleral cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322815", "l": "CD45RO+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157358", "l": "CD19+CD38+IgM+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000784", "l": "plasmacytoid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512901", "l": "Interstitial Cells of Cajal"}, {"i": "NCIT:C32871", "l": "Interstitial Cell of Cajal"}, {"i": "MESH:D056885", "l": "Interstitial Cells of Cajal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0227531", "l": "Ito Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163547", "l": "Epithelial cells.ciliated | Bronchoalveolar lavage | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518173", "l": "Malignant Eosinophilic Cell Oncocyte"}, {"i": "NCIT:C37167", "l": "Malignant Eosinophilic Cell Oncocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0178813", "l": "protoplast/spheroplast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0206511", "l": "Hair Cells, Vestibular"}, {"i": "NCIT:C12632", "l": "Vestibular Hair Cell"}, {"i": "MESH:D018069", "l": "Hair Cells, Vestibular"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002201", "l": "renal beta-intercalated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322731", "l": "CD22+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002553", "l": "fibroblast of lung"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709205", "l": "Neoplastic Spindle Stromal Cell"}, {"i": "NCIT:C54001", "l": "Neoplastic Spindle Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D006057", "l": "Golgi-Mazzoni Corpuscles"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002652", "l": "endothelial cell of high endothelial venule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882833", "l": "CD3+CD4+ cell"}, {"i": "SNOMEDCT:732279009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172364", "l": "Megaloblasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514053", "l": "Neoplastic Oligodendrocyte"}, {"i": "NCIT:C37141", "l": "Neoplastic Oligodendrocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001566", "l": "bronchioalveolar stem cells"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514029", "l": "Neoplastic Epithelial Cell with Intracytoplasmic Mucin"}, {"i": "NCIT:C37116", "l": "Neoplastic Epithelial Cell with Intracytoplasmic Mucin"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4323915", "l": "Set of trunk neural crest cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511468", "l": "CY82"}, {"i": "NCIT:C20242", "l": "CY82"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0008034", "l": "mural cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740202", "l": "Cells.CD14-FLAER-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517917", "l": "Hepatic stem cell"}, {"i": "NCIT:C12960", "l": "Liver Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1277066", "l": "Entire Sertoli cell"}, {"i": "SNOMEDCT:367716000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000900", "l": "naive thymus-derived CD8-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157344", "l": "CD19 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514098", "l": "Neoplastic Smooth Muscle Cell"}, {"i": "NCIT:C36937", "l": "Neoplastic Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1510929", "l": "Autologous Anti-MART-1 F5 T-Cell Receptor Gene-Engineered Peripheral Blood Lymphocytes"}, {"i": "NCIT:C38587", "l": "Autologous Anti-MART-1 F5 T-Cell Receptor Gene-Engineered Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333718", "l": "Anuclear cell"}, {"i": "SNOMEDCT:54656004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267859", "l": "Lymphocyte positive for both CD8 antigen and HLA-DR antigen"}, {"i": "SNOMEDCT:116815002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736935", "l": "Cells.CD56+CD138+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000050", "l": "lateral line nerve glial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333515", "l": "Adipocyte of epicardial fat of right ventricle"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314591", "l": "Colony-forming unit of lymphoid-myeloid lineage"}, {"i": "SNOMEDCT:444995008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267862", "l": "Lymphocyte positive for CD10 antigen"}, {"i": "SNOMEDCT:116848002"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002526", "l": "CD14-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184143", "l": "Luminal cell of acinus of lactiferous gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170938", "l": "Leukocytes | Semen | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000869", "l": "tonsillar macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333741", "l": "Touton giant cell"}, {"i": "NCIT:C36732", "l": "Touton Giant Cell"}, {"i": "SNOMEDCT:71203006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0677856", "l": "autologous lymphocytes"}, {"i": "NCIT:C12939", "l": "Autologous Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:0002489", "l": "double negative thymocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000448", "l": "epithelial cell of sweat gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515077", "l": "Olfactory Supporting Cell"}, {"i": "NCIT:C13152", "l": "Olfactory Supporting Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168982", "l": "Immature monocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5151403", "l": "Acanthocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182776", "l": "Lens cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267903", "l": "Lymphocyte positive for CD30 antigen"}, {"i": "SNOMEDCT:117574005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267830", "l": "T lymphocyte positive for CD16 antigen and CD57 antigen"}, {"i": "SNOMEDCT:115416000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267975", "l": "Lymphocyte positive for CD85 antigen"}, {"i": "SNOMEDCT:117415002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157445", "l": "CD3+CD45+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086555", "l": "M2 Macrophage"}, {"i": "NCIT:C123783", "l": "M2 Macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000805", "l": "immature single positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0010015", "l": "coronet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000247", "l": "Rohon-Beard neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725911", "l": "Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells"}, {"i": "NCIT:C150671", "l": "Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000361", "l": "transitional myocyte of interatrial septum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956386", "l": "Interstitial Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333856", "l": "Non-cleaved cell"}, {"i": "SNOMEDCT:63584005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268459", "l": "FMC-7+ cell"}, {"i": "SNOMEDCT:116831005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323361", "l": "Midget cone bipolar cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514081", "l": "Neoplastic Serous Epithelial Cell"}, {"i": "NCIT:C37114", "l": "Neoplastic Serous Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000478", "l": "oxytocin stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511470", "l": "CY92"}, {"i": "NCIT:C20244", "l": "CY92"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D015979", "l": "Killer Cells, Lymphokine-Activated"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899817", "l": "CD19CAR-CD3zeta-4-1BB-CD28-expressing Autologous T-Lymphocytes"}, {"i": "NCIT:C116069", "l": "CD19CAR-CD3zeta-4-1BB-CD28-expressing Autologous T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513066", "l": "Neoplastic Medium-Sized B-Lymphocyte with Eccentric Basophilic Cytoplasm"}, {"i": "NCIT:C37006", "l": "Neoplastic Medium-Sized B-Lymphocyte with Eccentric Basophilic Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177459", "l": "Plasma cells monotypic population | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000793", "l": "CD4-positive, alpha-beta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002621", "l": "gingival epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882768", "l": "Cell positive for CD1 antigen"}, {"i": "SNOMEDCT:725316009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178678", "l": "Pseudo Pelger Huet cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335115", "l": "Epicardial adipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4263663", "l": "B-cell CD27 & IgD subsets"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518157", "l": "Population of all normal spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:726441008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979162", "l": "Blasts.CD15"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229648", "l": "Nonsegmented basophil"}, {"i": "SNOMEDCT:3383001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055480", "l": "Allogeneic BK-specific Cytotoxic T-lymphocytes"}, {"i": "NCIT:C123277", "l": "Allogeneic BK-specific Cytotoxic T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955343", "l": "Other markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725929", "l": "Autologous EGFR-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies"}, {"i": "NCIT:C150695", "l": "Autologous EGFR-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000786", "l": "plasma cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163549", "l": "Epithelial cells.non-squamous | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338777", "l": "Midget ganglion cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333889", "l": "Cardiocyte - general anatomical term"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228088", "l": "Bergmann astrocyte"}, {"i": "SNOMEDCT:55306009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1253961", "l": "Colligocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1280428", "l": "Entire delta Cell of islet"}, {"i": "SNOMEDCT:247952004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180241", "l": "Endothelial cell of arteriole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173061", "l": "Microcytes | Urine | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253013", "l": "Set of type F cells of pancreatic islet"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163712", "l": "Erythrocytes | Bronchoalveolar lavage | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183898", "l": "Epithelial cell of prostatic duct"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000289", "l": "myocyte of atrial septal branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522193", "l": "PNS - Schwann Cell (MMHCC)"}, {"i": "NCIT:C22632", "l": "Mouse Schwann Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000324", "l": "metanephric mesenchyme stem cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0002222", "l": "vertebrate lens cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0947505", "l": "Cells.CD30"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267926", "l": "Lymphocyte positive for CD44 antigen"}, {"i": "SNOMEDCT:117370000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322670", "l": "CD3+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002194", "l": "monopoietic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518185", "l": "Malignant Langerhans Cell"}, {"i": "NCIT:C36890", "l": "Malignant Langerhans Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1522160", "l": "Leukocyte - Myelocyte (Granulocyte) (MMHCC)"}, {"i": "NCIT:C22590", "l": "Mouse Granulocyte"}]} +{"type": "biolink:Cell", "ic": "63.234144983841738", "identifiers": [{"i": "CL:0011026", "l": "progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267787", "l": "Cells.CD27-CD45RA-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157444", "l": "CD3+CD4+CD45RO+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956157", "l": "Suppressor T-Lymphocytes, CD8-Positive"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002046", "l": "early pro-B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267789", "l": "Cells.CD27+IgD-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267845", "l": "Lymphocyte positive for CD5 antigen"}, {"i": "SNOMEDCT:116854001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924223", "l": "Cells.CD13+CD34+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338142", "l": "Non-nucleated colligocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1977405", "l": "Granulocytes.CD59"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945923", "l": "Cells.CD21"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229892", "l": "Lymph lymphocyte"}, {"i": "SNOMEDCT:90385004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333800", "l": "Blister cell"}, {"i": "SNOMEDCT:81140002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362091", "l": "100 platelets"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173438", "l": "Monocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002323", "l": "amniocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000615", "l": "basidiospore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002599", "l": "smooth muscle cell of the esophagus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002277", "l": "type I enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511464", "l": "CY30"}, {"i": "NCIT:C20238", "l": "CY30"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000312", "l": "keratinocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495988", "l": "A2 noradrenaline cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5183793", "l": "Transitional cells | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510882", "l": "Blast cell positive for CD36 antigen"}, {"i": "SNOMEDCT:725109000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229424", "l": "Infantile diploetic mastoid cell"}, {"i": "SNOMEDCT:87056002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317187", "l": "Cells.CD10+HLA-DR+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684970", "l": "Anti-CD19-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes"}, {"i": "NCIT:C143156", "l": "Anti-CD19-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4505244", "l": "Suprachiasmatic Nucleus Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157543", "l": "CD4+CD45+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4287777", "l": "PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701"}, {"i": "NCIT:C128029", "l": "PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276860", "l": "Entire granular polyhedral cells of breast"}, {"i": "SNOMEDCT:205384000"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1522529", "l": "Islet Cell"}, {"i": "NCIT:C32885", "l": "Islet Cell"}, {"i": "SNOMEDCT:360555004"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1001016", "l": "kidney loop of Henle ascending limb epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163550", "l": "Epithelial cells.non-squamous | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000684", "l": "littoral cell of liver"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001033", "l": "hippocampal granule cell"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0000079", "l": "stratified epithelial cell"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C1514103", "l": "Neoplastic Striated Muscle Cell"}, {"i": "NCIT:C36947", "l": "Neoplastic Striated Muscle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335437", "l": "Type K enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687632", "l": "Allogeneic Umbilical Cord Blood-derived HSPCs NLA101"}, {"i": "NCIT:C146992", "l": "Dilanubicel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440339", "l": "Cells.CD62L"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000681", "l": "kidney cortex interstitial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011114", "l": "segmented neutrophil of bone marrow"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682697", "l": "Golgi type II neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0023172", "l": "Lupus erythematosus cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441339", "l": "100 blasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072759", "l": "Cells.MYB gene"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023095", "l": "untufted pyramidal neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340121", "l": "Fusiform cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1317543", "l": "Immature monocytes"}, {"i": "NCIT:C13120", "l": "Immature Monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000977", "l": "IgG short lived plasma cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733590", "l": "high efficiency killing T cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1707913", "l": "Endometrioid Stromal Cell"}, {"i": "NCIT:C53995", "l": "Endometrioid Stromal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229645", "l": "Basophilic promyelocyte"}, {"i": "SNOMEDCT:71170001"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C43423", "l": "Mesenchymal Stem Cell"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0002543", "l": "vein endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708869", "l": "Malignant Cuboidal Mucous Cell"}, {"i": "NCIT:C47811", "l": "Malignant Cuboidal Mucous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267920", "l": "Lymphocyte positive for CD42 antigen"}, {"i": "SNOMEDCT:117588009"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000097", "l": "midbrain dopaminergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4697029", "l": "Cells.CD3+CD8+CD27-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0043036", "l": "Warthin-Finkeldey giant cell"}, {"i": "SNOMEDCT:54943009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229646", "l": "Basophilic myelocyte"}, {"i": "SNOMEDCT:17295002"}]} +{"type": "biolink:Cell", "ic": "69.997272734060871", "identifiers": [{"i": "CL:0000006", "l": "neuronal receptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0684135", "l": "short neurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510886", "l": "Blast cell positive for CD127 antigen"}, {"i": "SNOMEDCT:724302005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182634", "l": "Pancreatic Polypeptide-Secreting Cells"}, {"i": "MESH:D050418", "l": "Pancreatic Polypeptide-Secreting Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3274464", "l": "Filgrastim-primed Peripheral Blood Progenitor Cells"}, {"i": "NCIT:C98836", "l": "Filgrastim-primed Peripheral Blood Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4288083", "l": "Type-1 Polarized Dendritic Cell-induced Antigen-specific Autologous Cytotoxic T Lymphocytes"}, {"i": "NCIT:C128892", "l": "Type-1 Polarized Dendritic Cell-induced Antigen-specific Autologous Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157434", "l": "CD3+CD26+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514295", "l": "Pre-Thymocyte"}, {"i": "NCIT:C33399", "l": "Pre-Thymocyte"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000442", "l": "follicular dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002495", "l": "fetal cardiomyocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0227525", "l": "Hepatocyte"}, {"i": "NCIT:C12588", "l": "Hepatocyte"}, {"i": "MESH:D022781", "l": "Hepatocytes"}, {"i": "SNOMEDCT:30396005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511638", "l": "Cytotrophoblastic Cell"}, {"i": "NCIT:C38575", "l": "Cytotrophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002330", "l": "undifferentiated cell of bronchus epithelium"}]} +{"type": "biolink:Cell", "ic": "76.412572999466406", "identifiers": [{"i": "CL:0002491", "l": "auditory epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545462", "l": "Cells.CD19+CD103+"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000179", "l": "progesterone secreting cell"}]} +{"type": "biolink:Cell", "ic": "76.412572999466406", "identifiers": [{"i": "UMLS:C0879593", "l": "therapeutic autologous dendritic cells"}, {"i": "NCIT:C2594", "l": "Therapeutic Autologous Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0596030", "l": "Acinar Cell"}, {"i": "NCIT:C13077", "l": "Acinar Cell"}, {"i": "MESH:D061354", "l": "Acinar Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733647", "l": "Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells"}, {"i": "NCIT:C155897", "l": "Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507329", "l": "Cells.t(6;9)(p22;q34)(DEK,NUP214)"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1708909", "l": "Malignant Smooth Muscle Cell"}, {"i": "NCIT:C49124", "l": "Malignant Smooth Muscle Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002654", "l": "epithelial cell of stratum corneum of esophageal epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D015744", "l": "Giant Cells, Langhans"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177455", "l": "Plasma cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2924226", "l": "Cells.CD5+CD23+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000091", "l": "endometrial microvascular endothelial cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440402", "l": "Cells.t(11;22)(p13;q12.2)(WT1,EWSR1)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0682695", "l": "Renshaw Cells"}, {"i": "NCIT:C33463", "l": "Renshaw Cell"}, {"i": "MESH:D066293", "l": "Renshaw Cells"}]} +{"type": "biolink:Cell", "ic": "73.740524343052556", "identifiers": [{"i": "CL:0000159", "l": "seromucus secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000070", "l": "optic choroid fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2337923", "l": "Purkinje myocyte of atrioventricular node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001577", "l": "tonsil squamous cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0872372", "l": "Totipotent Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338668", "l": "Microfold cell of epithelium of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0005955", "l": "Bone Marrow Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000895", "l": "naive thymus-derived CD4-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440327", "l": "Cells.CD5+CD2-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229215", "l": "Horizontal cells of retina"}, {"i": "SNOMEDCT:29729006"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1709179", "l": "Neoplastic Histiocytic and Dendritic Cell"}, {"i": "NCIT:C43253", "l": "Neoplastic Histiocytic and Dendritic Cell"}]} +{"type": "biolink:Cell", "ic": "66.945115279808661", "identifiers": [{"i": "UMLS:C1513997", "l": "Neoplastic Large Cell"}, {"i": "NCIT:C37162", "l": "Neoplastic Large Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338609", "l": "Type P enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002427", "l": "resting double-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163541", "l": "Epithelial cells | Stool | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513990", "l": "Neoplastic Immunoblast-Like B-Lymphocyte"}, {"i": "NCIT:C38657", "l": "Neoplastic Immunoblast-Like B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2936409", "l": "Palisade Parenchyma Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000913", "l": "effector memory CD8-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740731", "l": "Erythroblasts mid"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001571", "l": "hippocampal pyramidal neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154002", "l": "B lymphocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1510730", "l": "Abnormal Mesothelial Cell"}, {"i": "NCIT:C36829", "l": "Abnormal Mesothelial Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "NCIT:C12866", "l": "Transitional Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4330672", "l": "Membrane-bound Interleukin-21-Expanded Haploidentical Natural Killer Cells"}, {"i": "NCIT:C131901", "l": "Membrane-bound Interleukin-21-Expanded Haploidentical Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516091", "l": "Atypical Ductal Epithelial Cell"}, {"i": "NCIT:C36883", "l": "Atypical Ductal Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440337", "l": "CD62 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267987", "l": "Lymphocyte positive for CD100 antigen"}, {"i": "SNOMEDCT:117427004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157459", "l": "CD3+CD8+CD27+CD62L+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000962", "l": "Bm2 B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002593", "l": "smooth muscle cell of the internal thoracic artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727117", "l": "Hematopoietic Immune Cell"}, {"i": "NCIT:C153245", "l": "Hematopoietic Immune Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009074", "l": "medullary thymic epithelial cell type 4"}]} +{"type": "biolink:Cell", "ic": "62.237471741347221", "identifiers": [{"i": "CL:0000325", "l": "stuff accumulating cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332040", "l": "Goblet cell of epithelium of principal gastric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157493", "l": "CD34 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882934", "l": "Cells.CD8+CD38+"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002028", "l": "basophil mast progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174098", "l": "Myelocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513947", "l": "Neoplastic Cytotrophoblastic Cell"}, {"i": "NCIT:C37140", "l": "Neoplastic Cytotrophoblastic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179113", "l": "Supporting cell of olfactory epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000879", "l": "meningeal macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001573", "l": "nasopharyngeal epithelial cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000333", "l": "migratory neural crest cell"}]} +{"type": "biolink:Cell", "ic": "74.378130331796413", "identifiers": [{"i": "UMLS:C0027882", "l": "Neurons"}, {"i": "NCIT:C12623", "l": "Neuron"}, {"i": "MESH:D009474", "l": "Neurons"}, {"i": "SNOMEDCT:47220008"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000189", "l": "slow muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163721", "l": "Erythrocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827013", "l": "AdGMCAIX-transduced Autologous Dendritic Cells"}, {"i": "NCIT:C105809", "l": "AdGMCAIX-transduced Autologous Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514050", "l": "Neoplastic Neutrophilic Precursor"}, {"i": "NCIT:C37076", "l": "Neoplastic Neutrophilic Precursor"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725931", "l": "Autologous Tumor-specific Antigen-loaded Dendritic Cells"}, {"i": "NCIT:C150697", "l": "Autologous Tumor-specific Antigen-loaded Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177472", "l": "Plasma cells/100 leukocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2697994", "l": "Allogeneic Multipotent Adult Progenitor Cells"}, {"i": "NCIT:C77874", "l": "Allogeneic Multipotent Adult Progenitor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228009", "l": "Secondary spermatocyte"}, {"i": "SNOMEDCT:3374006"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000384", "l": "ligament cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001221", "l": "arcuate vein smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518019", "l": "Low Grade Malignant Transitional Cell"}, {"i": "NCIT:C36839", "l": "Low Grade Malignant Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267812", "l": "Lymphoblast positive for CD2 antigen"}, {"i": "SNOMEDCT:117515004"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0001022", "l": "CD115-positive monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000880", "l": "choroid-plexus macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171964", "l": "Malignant cells | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002592", "l": "smooth muscle cell of the coronary artery"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170947", "l": "Leukocytes | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C13143", "l": "Club Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518858", "l": "Pale Brown Fat Cell"}, {"i": "NCIT:C36970", "l": "Pale Brown Fat Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1880478", "l": "Eccrine Adenocarcinoma Cell"}, {"i": "NCIT:C62497", "l": "Eccrine Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180575", "l": "Segmented neutrophils | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009057", "l": "anorectum goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157613", "l": "CD55 RBC | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000749", "l": "ON-bipolar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182624", "l": "Basal cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322816", "l": "CD79A+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000525", "l": "syncytiotrophoblast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4028004", "l": "alveolar type 1 fibroblast cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011014", "l": "non-motile sperm cell"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0000212", "l": "absorptive cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517816", "l": "Leukocyte - Lymphocyte - Immature B-Lymphocyte (MMHCC)"}, {"i": "NCIT:C22573", "l": "Mouse Immature B-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225356", "l": "Myoepithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267934", "l": "Lymphocyte positive for CD47 antigen"}, {"i": "SNOMEDCT:117377002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440279", "l": "Cells.CD3+CD16+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831169", "l": "CD19CAR-CD28zeta-4-1BB-expressing Allogeneic T Lymphocytes"}, {"i": "NCIT:C107242", "l": "CD19CAR-CD28zeta-4-1BB-expressing Allogeneic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011019", "l": "mesothelial cell of epicardium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000473", "l": "myoepithelial cell of quarternary lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440422", "l": "Cells.TCR gamma delta"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C159218", "l": "Renomedullary Interstitial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157615", "l": "CD55+CD59 deficient RBC+Granulocytes | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4764048", "l": "Anti-FL(FITC-E2) CAR T Cells"}, {"i": "NCIT:C158099", "l": "Anti-FL(FITC-E2) CAR T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1135919", "l": "Myoblasts, Smooth Muscle"}, {"i": "MESH:D032390", "l": "Myoblasts, Smooth Muscle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518242", "l": "Malignant Small Hyperchromatic Cell"}, {"i": "NCIT:C36861", "l": "Malignant Small Hyperchromatic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687729", "l": "Anti-NY-ESO-1 TCR LV-transduced Autologous T-Cells TAEST16001"}, {"i": "NCIT:C147135", "l": "Anti-NY-ESO-1 TCR LV-transduced Autologous T-Cells TAEST16001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267936", "l": "Lymphocyte positive for CD49A antigen"}, {"i": "SNOMEDCT:117379004"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000210", "l": "photoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1541584", "l": "Autologous Expanded Mesenchymal Stem Cells OTI-010"}, {"i": "NCIT:C2534", "l": "Autologous Expanded Mesenchymal Stem Cells OTI-010"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517641", "l": "KA41 cell line"}, {"i": "NCIT:C20271", "l": "KA41"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C176756", "l": "Tumor-Infiltrating Follicular Helper T Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0023517", "l": "Nongranular leukocyte"}, {"i": "NCIT:C12534", "l": "Non-Granular Leukocyte"}, {"i": "MESH:D007963", "l": "Leukocytes, Mononuclear"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000673", "l": "Kenyon cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002667", "l": "type 5 otic fibrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2963402", "l": "Cells.CD4+CD26-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725789", "l": "Autologous BCMA/TACI-targeted CAR T Cells AUTO2"}, {"i": "NCIT:C150509", "l": "Autologous BCMA/TACI-targeted CAR T Cells AUTO2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339119", "l": "Basal cell of epithelium of lobular bronchiole"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "NCIT:C48762", "l": "Bone Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002547", "l": "fibroblast of the aortic adventitia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513954", "l": "Neoplastic Adrenal Cortical Compact Cell"}, {"i": "NCIT:C36931", "l": "Neoplastic Adrenal Cortical Compact Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304489", "l": "Population of all macrophages in portion of fluid"}, {"i": "SNOMEDCT:719699000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687728", "l": "Allogeneic Double Negative T Cells"}, {"i": "NCIT:C147134", "l": "Allogeneic Double Negative T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733604", "l": "Genetically-modified Anti-HER2-CAR-CD28zeta-expressing Allogeneic NK-92/5.28.z Cells"}, {"i": "NCIT:C154568", "l": "Genetically-modified Anti-HER2-CAR-CD28zeta-expressing Allogeneic NK-92/5.28.z Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324195", "l": "Cone bipolar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335260", "l": "Fibroblast of tunica adventitia of artery"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171671", "l": "Lymphocytes | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157304", "l": "CD138 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000432", "l": "conjunctival epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002373", "l": "growth hormone releasing hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002290", "l": "Y chromosome-bearing sperm cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514273", "l": "Postgerminal Center Marginal Zone B-Lymphocyte"}, {"i": "NCIT:C38334", "l": "Postgerminal Center Marginal Zone B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002498", "l": "secondary trophoblast giant cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002476", "l": "bone marrow macrophage"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0000669", "l": "pericyte cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333098", "l": "Set of cholinergic cells of diagonal gyrus [Ch2]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002514", "l": "Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2930253", "l": "Carticel"}, {"i": "UMLS:C2930257", "l": "AUTOLOGOUS CULTURED CHONDROCYTES"}, {"i": "NCIT:C87436", "l": "Autologous Cultured Chondrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001202", "l": "CD86-positive plasmablast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000028", "l": "cerebellum glutamatergic neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180272", "l": "Myoepithelial cell of lactiferous duct"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000548", "l": "kidney outer medulla collecting duct epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881561", "l": "Malignant Intermediate Type Trophoblastic Cell"}, {"i": "NCIT:C61405", "l": "Malignant Intermediate Type Trophoblastic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519712", "l": "Type III Epithelial Receptor Cell"}, {"i": "NCIT:C13149", "l": "Type III Epithelial Receptor Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440283", "l": "Cells.CD3+CD4+CD45RO-CD45RA-"}]} +{"type": "biolink:Cell", "ic": "73.740524343052556", "identifiers": [{"i": "CL:0012001", "l": "neuron of the forebrain"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4240451", "l": "Smooth muscle fiber of intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4324222", "l": "CD16+CD57+NK lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4072755", "l": "Cells.TRA+TRD gene rearrangements"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519600", "l": "Transformed Peripheral B-Lymphocyte"}, {"i": "NCIT:C38658", "l": "Transformed Peripheral B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1257909", "l": "Diploid Cell"}, {"i": "NCIT:C12949", "l": "Somatic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000966", "l": "Bm4 B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157284", "l": "CD123 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3898837", "l": "Hsp70-peptide TKD/IL-2-activated Autologous Natural Killer Cells"}, {"i": "NCIT:C115969", "l": "Hsp70-peptide TKD/IL-2-activated Autologous Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517771", "l": "Lepra Cell"}, {"i": "NCIT:C36737", "l": "Lepra Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440249", "l": "Cells.CD12"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000418", "l": "arcade cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:4023004", "l": "nuclear bag fiber"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "UMLS:C1513956", "l": "Neoplastic Endothelial Cell"}, {"i": "NCIT:C37088", "l": "Neoplastic Endothelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179115", "l": "Basal proper cell of olfactory epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174099", "l": "Myelocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267707", "l": "100 cells.CD3+TCR alpha beta+"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1518629", "l": "Osteoclast-Like Giant Cell"}, {"i": "NCIT:C36827", "l": "Osteoclast-Like Giant Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171976", "l": "Malignant cells/100 cells | Urine | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0085080", "l": "Chinese Hamster Ovary Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157289", "l": "CD127 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000309", "l": "copper accumulating cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002447", "l": "CD94-negative natural killer cell, mouse"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3830403", "l": "Donor Regulatory T-lymphocytes"}, {"i": "NCIT:C111894", "l": "Donor Regulatory T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267954", "l": "Lymphocyte positive for CD62L antigen"}, {"i": "SNOMEDCT:117395004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163751", "l": "Erythrocytes.ghost cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4028006", "l": "alveolar type 2 fibroblast cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000819", "l": "B-1 B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1328049", "l": "LMP2A-Specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C62784", "l": "LMP2A-Specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000052", "l": "umbilical artery endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157435", "l": "CD3+CD4+ (T4 helper) cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682547", "l": "Eosinophilic cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000127", "l": "astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171668", "l": "Lymphocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0019032", "l": "intestinal tuft cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002484", "l": "epithelial melanocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174655", "l": "Neutrophils.vacuolated | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0000056", "l": "myoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002206", "l": "brush cell of terminal bronchiole"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013077", "l": "Sperm Head"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023087", "l": "fan Martinotti neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155308", "l": "Blister cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3275034", "l": "CNDO-109-activated Allogeneic Natural Killer Cells"}, {"i": "NCIT:C99898", "l": "CNDO-109-activated Allogeneic Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002134", "l": "stromal cell of ovarian medulla"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002462", "l": "adipose dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709162", "l": "Neoplastic Adrenal Cortical Clear Cell"}, {"i": "NCIT:C48362", "l": "Neoplastic Adrenal Cortical Clear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336924", "l": "Myocardial endocrine cell of atrium"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001078", "l": "group 3 innate lymphoid cell, human"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709676", "l": "Primitive Skeletal Spindle Cell"}, {"i": "NCIT:C49171", "l": "Primitive Skeletal Spindle Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267943", "l": "Lymphocyte positive for CD51 antigen"}, {"i": "SNOMEDCT:117386007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1978802", "l": "Cytokeratin cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4708585", "l": "Technetium (99m-Tc) labeled granulocytes"}, {"i": "SNOMEDCT:768885006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000322", "l": "pancreatic goblet cell"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:1000612", "l": "kidney corpuscule cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330901", "l": "Set of granulocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C13116", "l": "Metamyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229536", "l": "Acidophil cell of pars distalis of adenohypophysis"}, {"i": "SNOMEDCT:54913007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328107", "l": "Nephrocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002068", "l": "Purkinje myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339961", "l": "Nonkeratinized cell of stratum corneum of esophageal epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184139", "l": "Myoepithelial cell of secondary lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157252", "l": "CD11+CD18+ cells | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519602", "l": "Activated Skin-Homing T-Lymphocyte"}, {"i": "NCIT:C39686", "l": "Activated Skin-Homing T-Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545464", "l": "Cells.t(2;13)(q36.1;q14.4)(PAX3,FOXO1)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000335", "l": "mesenchyme condensation cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171663", "l": "Lymphocytes | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002394", "l": "CD141-positive myeloid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002537", "l": "amnion mesenchymal stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516866", "l": "Endosteal cell"}, {"i": "NCIT:C32521", "l": "Endosteal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331946", "l": "Microfold cell of epithelium proper of duodenum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333944", "l": "Type PP enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171963", "l": "Malignant cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "67.798152434899578", "identifiers": [{"i": "UMLS:C1512140", "l": "ES Cell Line"}, {"i": "NCIT:C20232", "l": "ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D018418", "l": "Th2 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0026610", "l": "Motor Neurons, Gamma"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515626", "l": "gp100-Reactive Autologous Peripheral Blood Lymphocyte"}, {"i": "NCIT:C38124", "l": "gp100-Reactive Autologous Peripheral Blood Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002317", "l": "external limiting cell of vestibular epithelium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0872357", "l": "oval cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157485", "l": "CD33 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157337", "l": "CD179a blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440311", "l": "Cells.CD42d"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4740248", "l": "100 cells.CD15"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514051", "l": "Neoplastic Non-Cutaneous Basaloid Cell"}, {"i": "NCIT:C36782", "l": "Neoplastic Non-Cutaneous Basaloid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000008", "l": "migratory cranial neural crest cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002161", "l": "superficial external epithelial cell of tympanic membrane"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000339", "l": "glioblast (sensu Vertebrata)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507170", "l": "Cells.CD3+CD62L+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000759", "l": "type 7 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510906", "l": "Blast cell positive for CD15 antigen"}, {"i": "SNOMEDCT:724251005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1524102", "l": "Leukocyte - Myelocyte (Granulocyte) - Neutrophil (MMHCC)"}, {"i": "NCIT:C22593", "l": "Mouse Neutrophil"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157355", "l": "CD19+CD27+IgD-IgM+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C115217", "l": "Mucosal-Associated Invariant T-Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682693", "l": "Autonomic ganglion neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002125", "l": "CD27-negative gamma-delta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511163", "l": "Blast cell positive for cytoplasmic CD3 antigen"}, {"i": "SNOMEDCT:725483008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001057", "l": "myeloid dendritic cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322817", "l": "CD79B+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000718", "l": "compound eye cone cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727012", "l": "Autologous CD8+ SLC45A2-specific T Lymphocytes"}, {"i": "NCIT:C153083", "l": "Autologous CD8+ SLC45A2-specific T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727180", "l": "Cytokine-treated Veto Cells"}, {"i": "NCIT:C153337", "l": "Cytokine-treated Veto Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512548", "l": "Hyperchromatic Endothelial Cell"}, {"i": "NCIT:C37089", "l": "Hyperchromatic Endothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517057", "l": "Extraglomerular Mesangial Cells"}, {"i": "NCIT:C32572", "l": "Extraglomerular Mesangial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229473", "l": "Cell of Claudius"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512099", "l": "Dyskeratotic Keratinocyte"}, {"i": "NCIT:C36746", "l": "Dyskeratotic Keratinocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709164", "l": "Neoplastic Blast Coexpressing Myeloid and Lymphoid Lineage Antigens"}, {"i": "NCIT:C42875", "l": "Neoplastic Blast Coexpressing Myeloid and Lymphoid Lineage Antigens"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289937", "l": "Baltaleucel-T"}, {"i": "NCIT:C129374", "l": "Baltaleucel-T"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514007", "l": "Neoplastic Large Pleomorphic Germ Cell"}, {"i": "NCIT:C36905", "l": "Neoplastic Large Pleomorphic Germ Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000796", "l": "CD8-alpha-beta-positive, alpha-beta intraepithelial T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733635", "l": "Autologous CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes"}, {"i": "NCIT:C155294", "l": "Autologous CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "82.428592223071533", "identifiers": [{"i": "CL:0001082", "l": "immature innate lymphoid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267871", "l": "Lymphoblast positive for CD13 antigen"}, {"i": "SNOMEDCT:117550007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002121", "l": "CD24-negative CD38-negative IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179518", "l": "Reticulocytes | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000084582", "l": "Tumor-Associated Macrophages"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0314587", "l": "Colony-forming unit of granulocytic lineage (cell)"}, {"i": "SNOMEDCT:445400007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333766", "l": "Moth-eaten fibers"}, {"i": "SNOMEDCT:53408006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3870602", "l": "B cells+monocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1301169", "l": "Pyknocyte"}, {"i": "SNOMEDCT:397049008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333824", "l": "Pancake cell"}, {"i": "SNOMEDCT:28789003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1563925", "l": "Tr1 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441349", "l": "Abnormal blood cells.total"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D009476", "l": "Neurons, Efferent"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12634", "l": "Photoreceptor Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333765", "l": "Target fibers"}, {"i": "SNOMEDCT:39037003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727433", "l": "Allogeneic CD34-positive E-rosetted T-cell Depleted Peripheral Blood Stem Cells"}, {"i": "NCIT:C153885", "l": "Allogeneic CD34-positive E-rosetted T-cell Depleted Peripheral Blood Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519515", "l": "Tingible Body Macrophage"}, {"i": "NCIT:C36834", "l": "Tingible Body Macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182647", "l": "Non-pigmented ciliary epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000048", "l": "anterior horn motor neuron"}]} +{"type": "biolink:Cell", "ic": "66.108910517769971", "identifiers": [{"i": "CL:0000473", "l": "defensive cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2985181", "l": "PSA-PAP/KLH-pulsed Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C92573", "l": "PSA-PAP/KLH-pulsed Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000331", "l": "serous cell of epithelium of bronchus"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "UMLS:C1518245", "l": "Malignant Squamous Cell"}, {"i": "NCIT:C36771", "l": "Malignant Squamous Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000565", "l": "fat body cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512103", "l": "Dysplastic Ganglion Cell"}, {"i": "NCIT:C42085", "l": "Dysplastic Ganglion Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440274", "l": "Cells.CD19+CD25+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157555", "l": "CD4+CD45RO+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001033", "l": "peritubular capillary endothelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4723770", "l": "Autologous Natural Killer Cell-like CTLs"}, {"i": "NCIT:C156168", "l": "Autologous Natural Killer Cell-like CTLs"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4527256", "l": "Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100"}, {"i": "NCIT:C137863", "l": "Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4517379", "l": "Population of all large unstained cells in portion of fluid"}, {"i": "SNOMEDCT:732290004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000656", "l": "primary spermatocyte"}]} +{"type": "biolink:Cell", "ic": "66.181106630879313", "identifiers": [{"i": "CL:0002518", "l": "kidney epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157683", "l": "CD8-CD57+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001044", "l": "effector CD4-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157283", "l": "CD123 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3897094", "l": "IL13Ralpha2-specific Hinge-optimized 41BB-co-stimulatory CAR Truncated CD19-expressing Autologous T-Lymphocytes"}, {"i": "NCIT:C117233", "l": "IL13Ralpha2-specific Hinge-optimized 41BB-co-stimulatory CAR Truncated CD19-expressing Autologous T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157327", "l": "CD16+CD56+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000327", "l": "extracellular matrix secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3179111", "l": "Feeder Layer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724406", "l": "Anti-minor Histocompatibility Complex Donor T-Lymphocytes"}, {"i": "NCIT:C148500", "l": "Anti-minor Histocompatibility Complex Donor T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515314", "l": "Mouse Leydig Cell"}, {"i": "NCIT:C22181", "l": "Mouse Leydig Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002617", "l": "adipocyte of breast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2349140", "l": "WT1-Sensitized Allogeneic T-Lymphocytes"}, {"i": "NCIT:C74091", "l": "WT1-Sensitized Allogeneic T-Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163557", "l": "Epithelial cells.squamous | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000854", "l": "interneuromast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229617", "l": "Medium sized lymphocyte"}, {"i": "SNOMEDCT:52180000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002515", "l": "interrenal norepinephrine type cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175603", "l": "Other cells | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000969", "l": "regulatory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519378", "l": "Small Meningothelial Cell"}, {"i": "NCIT:C37161", "l": "Small Meningothelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002616", "l": "perirenal adipocyte cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322821", "l": "CD13+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177800", "l": "Polymorphonuclear cells/leukocytes | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3489668", "l": "Neoplastic Colony-Forming Units"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000354", "l": "blastemal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002346", "l": "Dx5-negative, NK1.1-positive immature natural killer cell, mouse"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267989", "l": "Lymphocyte positive for CD103 antigen"}, {"i": "SNOMEDCT:117429001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009002", "l": "inflammatory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3166860", "l": "Cytoplasmic CD2"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000428", "l": "yolk cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181368", "l": "Spermatozoa Progressive | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000515", "l": "skeletal muscle myoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4484160", "l": "Cells.FMRP"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229568", "l": "Adrenal medulllary cell"}, {"i": "SNOMEDCT:35284004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177620", "l": "Platelets | Dialysis fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171962", "l": "Malignant cells | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157558", "l": "CD4+HLA-DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000191", "l": "pillar cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710442", "l": "Totipotent Primordial Germ Cell"}, {"i": "NCIT:C45734", "l": "Totipotent Primordial Germ Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511463", "l": "CY12"}, {"i": "NCIT:C20237", "l": "CY12"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023023", "l": "L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267978", "l": "Lymphocyte positive for CD88 antigen"}, {"i": "SNOMEDCT:117418000"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513528", "l": "Mouse Cell Line"}, {"i": "NCIT:C20220", "l": "Mouse Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002338", "l": "CD56-positive, CD161-positive immature natural killer cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4511892", "l": "Population of all schistocytes in portion of fluid"}, {"i": "SNOMEDCT:726510009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257751", "l": "Erythroid Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157343", "l": "CD19 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440284", "l": "Cells.CD3+CD4+CD45RO-CD45RA+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000063", "l": "ovarian fibroblast"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1513939", "l": "Neoplastic Chondrocyte"}, {"i": "NCIT:C36983", "l": "Neoplastic Chondrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267944", "l": "Lymphocyte positive for CD52 antigen"}, {"i": "SNOMEDCT:117387003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183980", "l": "Chromaffin cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148303", "l": "Basophils+Eosinophils+Monocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163450", "l": "Eosinophils | Vitreous fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000045", "l": "foreskin melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002234", "l": "basal cell of prostatic acinus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335688", "l": "Transitional myocyte of posterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1882052", "l": "Neoplastic Epithelial Small Polygonal Cell"}, {"i": "NCIT:C60993", "l": "Neoplastic Epithelial Small Polygonal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546503", "l": "P.B. hemocytoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4683836", "l": "IL13Ralpha2-specific Hinge-optimized 4-1BB-co-stimulatory CAR/Truncated CD19-expressing Autologous TN/MEM Cells"}, {"i": "NCIT:C141460", "l": "IL13Ralpha2-specific Hinge-optimized 4-1BB-co-stimulatory CAR/Truncated CD19-expressing Autologous TN/MEM Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440372", "l": "Cells.CD96"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881550", "l": "Malignant Epithelial Medium-Sized Polygonal Cell"}, {"i": "NCIT:C61002", "l": "Malignant Epithelial Medium-Sized Polygonal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333720", "l": "Glycogenic cell"}, {"i": "SNOMEDCT:58726005"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C33401", "l": "Primordial Germ Cell"}]} +{"type": "biolink:Cell", "ic": "77.690207805941611", "identifiers": [{"i": "CL:0000082", "l": "epithelial cell of lung"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322668", "l": "CD3-CD16+CD56+ NK lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000541", "l": "melanoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882804", "l": "Cells.CD16c+CD56+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0205869", "l": "Perivascular Oligodendroglia"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001005", "l": "mature CD8_alpha-positive CD11b-negative dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157366", "l": "CD2 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "ic": "70.373142106726959", "identifiers": [{"i": "UMLS:C1515139", "l": "T-Lymphocyte and Natural Killer Cell"}, {"i": "NCIT:C39567", "l": "T-Lymphocyte and Natural Killer Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009070", "l": "corticomedullary thymic epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157539", "l": "CD4+CD25+CD45RO+CD127Low+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157666", "l": "CD8+CD11b+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "61.906213253040292", "identifiers": [{"i": "UMLS:C1512385", "l": "Hematopoietic and Lymphoid Cell"}, {"i": "NCIT:C32725", "l": "Hematopoietic and Lymphoid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979132", "l": "Blasts.CD127"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277737", "l": "Grid Cells"}, {"i": "MESH:D000071038", "l": "Grid Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002614", "l": "neuron of the substantia nigra"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709180", "l": "Neoplastic Immunoblast-Like T-Lymphocyte"}, {"i": "NCIT:C45331", "l": "Neoplastic Immunoblast-Like T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002005", "l": "CD34-positive, CD38-positive megakaryocyte erythroid progenitor cell"}]} +{"type": "biolink:Cell", "ic": "63.282835170992691", "identifiers": [{"i": "UMLS:C0682523", "l": "Human Cell Line"}, {"i": "NCIT:C20218", "l": "Human Cell Line"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000817", "l": "precursor B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711264", "l": "Polyhedral Melanocyte"}, {"i": "NCIT:C54079", "l": "Polyhedral Melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000492", "l": "mesothelial cell of parietal pleura"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350831", "l": "Retinal Photoreceptor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157309", "l": "CD14 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519793", "l": "Unipolar neuron"}, {"i": "NCIT:C33834", "l": "Unipolar Neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4527227", "l": "Allogeneic CD19-specific Universal CAR19-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4055426", "l": "autologous anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322812", "l": "CD43+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "46.847684576614832", "identifiers": [{"i": "CL:0001034", "l": "cell in vitro"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0228089", "l": "Protoplasmic astrocyte"}, {"i": "NCIT:C33415", "l": "Protoplasmic Astrocyte"}, {"i": "SNOMEDCT:4328003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:3000001", "l": "Hofbauer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513747", "l": "Multinucleated Reed-Sternberg Cell"}, {"i": "NCIT:C36813", "l": "Multinucleated Reed-Sternberg Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1525455", "l": "Cells.CD33+CD34+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157499", "l": "CD34+CD117+ blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511006", "l": "BG01"}, {"i": "NCIT:C20233", "l": "BG01"}]} +{"type": "biolink:Cell", "ic": "64.618859499199615", "identifiers": [{"i": "UMLS:C1518174", "l": "Malignant Epithelial Cell"}, {"i": "NCIT:C36779", "l": "Malignant Epithelial Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5156213", "l": "Burr cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510884", "l": "Blast cell positive for CD11c antigen"}, {"i": "SNOMEDCT:724308009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322828", "l": "Set of corpuscles of colostrum"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002506", "l": "liver CD103-positive dendritic cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1883265", "l": "Tall Columnar Adenocarcinoma Cell"}, {"i": "NCIT:C60531", "l": "Tall Columnar Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276853", "l": "Entire parathyroid oxyphil cell"}, {"i": "SNOMEDCT:177826000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002619", "l": "adult endothelial progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168977", "l": "Immature cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000595", "l": "enucleate erythrocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002198", "l": "oncocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331959", "l": "Set of cholinergic cells of amygdaloid body [Ch4]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000687", "l": "R1 photoreceptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182628", "l": "Epithelial cell of anterior palatal part of viscerocranial mucosa"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1518272", "l": "Neuroectodermal Cell"}, {"i": "NCIT:C42050", "l": "Neuroectodermal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000420", "l": "myoepithelial cell of terminal lactiferous duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322824", "l": "CD40+ B lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002099", "l": "type I cell of adrenal cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881539", "l": "Malignant Blastemal Cell"}, {"i": "NCIT:C61293", "l": "Malignant Blastemal Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339371", "l": "Regular ventricular cardiac myocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000901", "l": "Tr1 cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3661481", "l": "Radial Glial Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724730", "l": "Autologous Mesothelin-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies"}, {"i": "NCIT:C150682", "l": "Autologous Mesothelin-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229649", "l": "Heterophil"}, {"i": "SNOMEDCT:76335007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009078", "l": "thymic fibroblast type 1"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000362", "l": "transitional myocyte of interventricular septum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300406", "l": "Cells.chromosome region 11q22.3"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176805", "l": "Blasts.cytoplasmic CD22"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524977", "l": "Intestinal L Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0178708", "l": "immortalized cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019020", "l": "extrahepatic cholangiocyte"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "UMLS:C1514831", "l": "Reliance ES Cell Line"}, {"i": "NCIT:C20287", "l": "Reliance ES Cell Line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1265917", "l": "Hand-Schüller-Christian histiocyte"}, {"i": "SNOMEDCT:123635008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1272578", "l": "Skin fibroblast"}, {"i": "SNOMEDCT:386121006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267814", "l": "Lymphocyte positive for CD2 antigen and CD20 antigen"}, {"i": "SNOMEDCT:117517007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002486", "l": "strial intermediate cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157599", "l": "CD5+CD20+ cells | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008048", "l": "upper motor neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440387", "l": "Cells.FMC7"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5179530", "l": "Reticulocytes.mature | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440254", "l": "Cells.CD128"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1880955", "l": "Giant Melanoma Cell"}, {"i": "NCIT:C62346", "l": "Giant Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "NCIT:C12615", "l": "Glial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329367", "l": "Autologous Anti-MG7-CAR T-Lymphocytes"}, {"i": "NCIT:C131493", "l": "Autologous Anti-MG7-CAR T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "71.786710504642102", "identifiers": [{"i": "CL:0000746", "l": "cardiac muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709182", "l": "Neoplastic Large Striated Muscle Cell with Clear Cytoplasm"}, {"i": "NCIT:C49169", "l": "Neoplastic Large Striated Muscle Cell with Clear Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229214", "l": "Cone cells of inner nuclear layer"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4687977", "l": "Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing CD4+/CD8+ T-lymphocytes JCARH125"}, {"i": "NCIT:C147523", "l": "Orvacabtagene Autoleucel"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0000015", "l": "male germ cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4038496", "l": "Cells.aneuploid.G2 phase population 2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4543340", "l": "Spermatozoa component of semen"}, {"i": "SNOMEDCT:734848001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0933801", "l": "Glandular columnar cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171673", "l": "Lymphocytes clefted | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009087", "l": "fused extravillous trophoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4484161", "l": "Cells.Ki-67 nuclear"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1510732", "l": "Abnormal Myoepithelial Cell"}, {"i": "NCIT:C36769", "l": "Abnormal Myoepithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518751", "l": "Mouse Ovarian Germ Cell"}, {"i": "NCIT:C22659", "l": "Mouse Ovarian Germ Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1001609", "l": "muscle fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008012", "l": "quiescent skeletal muscle satellite cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3852949", "l": "V1-Derived Interneurons"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1513957", "l": "Neoplastic Eosinophilic Cell Oncocyte"}, {"i": "NCIT:C37166", "l": "Neoplastic Eosinophilic Cell Oncocyte"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0011108", "l": "colon epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945930", "l": "Cells.CD4+CD45RA+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161798", "l": "Cytoplasmic CD22 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441346", "l": "1000 erythrocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519464", "l": "Spindle Cell Myoblast"}, {"i": "NCIT:C36952", "l": "Spindle Cell Myoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182637", "l": "Secondary follicular cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0949753", "l": "Nitrergic Neurons"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002622", "l": "prostate stromal cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000954", "l": "small pre-B-II cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180577", "l": "Segmented neutrophils | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268007", "l": "Myeloid precursor cell"}, {"i": "SNOMEDCT:127914007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4253023", "l": "Set of enteroendocrine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340500", "l": "Microfold cell of epithelium of intestinal villus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D058628", "l": "Myofibroblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157274", "l": "CD11c+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483191", "l": "cd4 and cd8+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009008", "l": "gastrointestinal tract (lamina propria) macrophage of large intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184876", "l": "Internal pillar cell of cochlea"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023048", "l": "L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176884", "l": "Blasts.cytoplasmic CD117"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174626", "l": "Neutrophils | Urine | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267841", "l": "Lymphocyte positive for both CD4 antigen and 2H4 antigen"}, {"i": "SNOMEDCT:117528006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023089", "l": "nest basket cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D008534", "l": "Megaloblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4324118", "l": "CD28+ T lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D053595", "l": "Embryonic Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157497", "l": "CD34+CD117+ blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513937", "l": "Neoplastic Chondroblast"}, {"i": "NCIT:C36985", "l": "Neoplastic Chondroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0444641", "l": "Synovial fluid cells"}, {"i": "SNOMEDCT:264380007"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1516943", "l": "Epithelial Receptor Cell"}, {"i": "NCIT:C13145", "l": "Epithelial Receptor Cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000172", "l": "somatostatin secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4524846", "l": "Anti-CD19-CD28-zeta modified CAR CD3+ T Lymphocytes JCAR015"}, {"i": "NCIT:C133718", "l": "Vadacabtagene Leraleucel"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515628", "l": "gp100-Pulsed Peripheral Blood Mononuclear Cell"}, {"i": "NCIT:C2762", "l": "gp100-Pulsed Peripheral Blood Mononuclear Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522099", "l": "Leukocyte - Lymphoblast (MMHCC)"}, {"i": "NCIT:C22571", "l": "Mouse Lymphoblast"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000207", "l": "olfactory receptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427529", "l": "Smear cell"}, {"i": "SNOMEDCT:250288005"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000456", "l": "mineralocorticoid secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519718", "l": "Intercalated cell of collecting duct of renal tubule"}, {"i": "NCIT:C13146", "l": "Intercalated Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157574", "l": "CD45 (Lymphs) cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0002327", "l": "mammary gland epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1268008", "l": "Eosinophilic granulocytic cell"}, {"i": "SNOMEDCT:127916009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0227599", "l": "Transitional epithelial cell of urinary bladder"}]} +{"type": "biolink:Cell", "ic": "69.52434437680833", "identifiers": [{"i": "CL:0002494", "l": "cardiocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180925", "l": "Corneocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2332713", "l": "Type I enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0008030", "l": "excitatory neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0018873", "l": "HeLa Cells"}, {"i": "NCIT:C20226", "l": "HeLa"}, {"i": "MESH:D006367", "l": "HeLa Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427534", "l": "Agranular white blood cell"}, {"i": "SNOMEDCT:250293008"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1522406", "l": "interstitial cell"}, {"i": "NCIT:C32870", "l": "Interstitial Cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C1180350", "l": "Taste bud cell"}, {"i": "NCIT:C13147", "l": "Taste Bud Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328087", "l": "Paravertebral ganglion neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304486", "l": "Population of all nonhematic cells in portion of fluid"}, {"i": "SNOMEDCT:719702007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517812", "l": "Leukemic Small Lymphocyte with Clumped Chromatin"}, {"i": "NCIT:C41066", "l": "Leukemic Small Lymphocyte with Clumped Chromatin"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000284", "l": "smooth muscle fiber of descending colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267855", "l": "Lymphocyte positive for both CD8 antigen and CD28 antigen"}, {"i": "SNOMEDCT:117540006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4745256", "l": "Adenocarcinoma Cell with Abundant Pale Cytoplasm"}, {"i": "NCIT:C54724", "l": "Adenocarcinoma Cell with Abundant Pale Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522060", "l": "Epithelioid Melanoma Cell"}, {"i": "NCIT:C36872", "l": "Epithelioid Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000639", "l": "basophil cell of pars distalis of adenohypophysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000288", "l": "myocyte of atrial branch of anterior internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177621", "l": "Platelets | Fetus | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007003", "l": "preodontoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000660", "l": "glycocalyx secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514167", "l": "Pleomorphic B-Lymphocyte"}, {"i": "NCIT:C36996", "l": "Pleomorphic B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2986886", "l": "Rapamycin-Polarized Th1/Tc1 Autologous T Lymphocytes"}, {"i": "NCIT:C95080", "l": "Rapamycin-Polarized Th1/Tc1 Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4290030", "l": "4SCAR-GD2-modified T-lymphocytes"}, {"i": "NCIT:C128896", "l": "4SCAR-GD2-modified T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725691", "l": "Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T Lymphocytes BinD19"}, {"i": "NCIT:C150378", "l": "Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T Lymphocytes BinD19"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599229", "l": "cell wall defective microbial form"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000007", "l": "early embryonic cell (metazoa)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000173", "l": "pancreatic D cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882846", "l": "Cell positive for CD33 antigen"}, {"i": "SNOMEDCT:116825007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D009413", "l": "Nerve Fibers, Myelinated"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000054", "l": "bone matrix secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173444", "l": "Monocytes/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4277577", "l": "A549 Cells"}, {"i": "MESH:D000072283", "l": "A549 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0037863", "l": "Spermatocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2953664", "l": "Type D enteroendocrine cell of epithelium proper of ileum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682694", "l": "Inhibitory interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002214", "l": "type IIa muscle cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1001601", "l": "adrenal gland glandular cell"}]} +{"type": "biolink:Cell", "ic": "74.603620314006946", "identifiers": [{"i": "UMLS:C1514110", "l": "Neoplastic T-Lymphocyte and Neoplastic Natural Killer Cell"}, {"i": "NCIT:C39566", "l": "Neoplastic T-Lymphocyte and Neoplastic Natural Killer Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157291", "l": "CD127 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440417", "l": "Cells.t(9;22)(q34.1;q11)(ABL1,BCR)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4745321", "l": "Young Autologous Tumor-infiltrating Lymphocytes"}, {"i": "NCIT:C156481", "l": "Young Autologous Tumor-infiltrating Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "67.444934845976888", "identifiers": [{"i": "CL:0002563", "l": "intestinal epithelial cell"}]} +{"type": "biolink:Cell", "ic": "64.000820534647843", "identifiers": [{"i": "CL:0000150", "l": "glandular epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267869", "l": "Lymphocyte positive for both CD11C antigen and CD20 antigen"}, {"i": "SNOMEDCT:116847007"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000981", "l": "double negative memory B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157239", "l": "CD10+CD20+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3831436", "l": "Autologous iC9-GD2-CAR-expressing VZV-specific T Lymphocytes"}, {"i": "NCIT:C111989", "l": "Autologous iC9-GD2-CAR-expressing VZV-specific T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5184272", "l": "Tubular cells | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708912", "l": "Malignant Spindle-Shaped Fibrohistiocytic Cell"}, {"i": "NCIT:C49072", "l": "Malignant Spindle-Shaped Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652665", "l": "chromium (51Cr) chromate labelled cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518421", "l": "Nose - Nasal Cavity - Olfactory Cell (MMHCC)"}, {"i": "NCIT:C22726", "l": "Mouse Olfactory Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267963", "l": "Lymphocyte positive for CD68 antigen"}, {"i": "SNOMEDCT:117404007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000449", "l": "brown fat cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000075942", "l": "Intraepithelial Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3179110", "l": "Feeder Cells"}, {"i": "MESH:D061252", "l": "Feeder Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882795", "l": "Cells.CD15"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0945927", "l": "Cells.CD3+HLA-DR+"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000341", "l": "pigment cell (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157432", "l": "CD3+CD25+ cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000441", "l": "follicle stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4761323", "l": "TCR alpha/beta/CD19-depleted Allogeneic Hematopoietic Progenitor Cells"}, {"i": "NCIT:C157370", "l": "TCR alpha/beta/CD19-depleted Allogeneic Hematopoietic Progenitor Cells"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0000126", "l": "macroglial cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002212", "l": "type II muscle cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0001071", "l": "group 3 innate lymphoid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427566", "l": "Macrothrombocyte"}, {"i": "SNOMEDCT:134203001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2362047", "l": "Macroblasts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2698131", "l": "Anti-CEA TCR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes"}, {"i": "NCIT:C79842", "l": "Anti-CEA TCR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440273", "l": "Cells.CD22+CD19+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519778", "l": "Undifferentiated Carcinoma Cell"}, {"i": "NCIT:C37085", "l": "Undifferentiated Carcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329370", "l": "Autologous ICASP9-CD19-expressing T-Lymphocytes"}, {"i": "NCIT:C131214", "l": "Autologous iCasp9-deltaNGFR-CD19CAR-expressing T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0086574", "l": "Lymphoid Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267919", "l": "Lymphocyte positive for CD41A antigen"}, {"i": "SNOMEDCT:117587004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229662", "l": "Marrow fibrocyte"}, {"i": "SNOMEDCT:42901005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000406", "l": "CNS short range interneuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000169", "l": "type B pancreatic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000253", "l": "eurydendroid cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1514072", "l": "Neoplastic Lactotroph Cell"}, {"i": "NCIT:C36918", "l": "Neoplastic Lactotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1171346", "l": "Human Embryonic Stem Cells"}, {"i": "MESH:D000066449", "l": "Human Embryonic Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002322", "l": "embryonic stem cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002053", "l": "CD22-positive, CD38-low small pre-B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333767", "l": "Lobulated fibers"}, {"i": "SNOMEDCT:62655004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000457", "l": "mesothelial cell of visceral peritoneum"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514114", "l": "Neoplastic Thyrotroph Cell"}, {"i": "NCIT:C36922", "l": "Neoplastic Thyrotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0225467", "l": "Structure of middle cells of ethmoid sinus"}, {"i": "SNOMEDCT:57232001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640942", "l": "Recombinant Human MUC1-Oxidized Polymannose-pulsed Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C102782", "l": "Recombinant Human MUC1-Oxidized Polymannose-pulsed Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323094", "l": "Melanocyte of skin"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000465", "l": "chromaffin cell of ovary"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000563", "l": "endospore"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0017471", "l": "Germ Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333805", "l": "Macrocytic erythrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5180436", "l": "Schistocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257740", "l": "Swiss 3T3 Cells"}, {"i": "MESH:D041701", "l": "Swiss 3T3 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483188", "l": "CD22+CD19+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515968", "l": "Anaplastic Melanocyte"}, {"i": "NCIT:C37110", "l": "Anaplastic Melanocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000286", "l": "smooth muscle cell of rectum"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000856", "l": "neuromast hair cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517532", "l": "Germinal Center B-Lymphocyte"}, {"i": "NCIT:C38335", "l": "Germinal Center B-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002119", "l": "CD38-positive IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000417", "l": "endopolyploid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3686472", "l": "Biliary epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163714", "l": "Erythrocytes | Dialysis fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000415", "l": "diploid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154474", "l": "Basophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0043291", "l": "X-Chromosome-Bearing Sperm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002459", "l": "langerin-negative dermal dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1317561", "l": "Neutrophils.vacuolated+Segmented"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5176526", "l": "Pelger Huet cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4068503", "l": "FISH probe target locus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0282639", "l": "HT29 Cells"}, {"i": "NCIT:C17896", "l": "HT29"}, {"i": "MESH:D019073", "l": "HT29 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181542", "l": "Type II cell of paraganglion"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:0002073", "l": "transitional myocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000490", "l": "mesothelial cell of peritoneum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495991", "l": "C2 adrenaline cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440370", "l": "Cells.CD94"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333738", "l": "Fat-laden macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979646", "l": "Blasts.CD36+CD235a+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154515", "l": "Basophils+Eosinophils+Monocytes/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3828741", "l": "NY-ESO-1(157-165) Peptide-pulsed Autologous Dendritic Cell Vaccine"}, {"i": "NCIT:C114380", "l": "NY-ESO-1(157-165) Peptide-pulsed Autologous Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2936239", "l": "HEK293 Cells"}, {"i": "MESH:D057809", "l": "HEK293 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002615", "l": "adipocyte of omentum tissue"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513979", "l": "Neoplastic Glomerulosa Cell"}, {"i": "NCIT:C36927", "l": "Neoplastic Glomerulosa Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507178", "l": "Cells.CD8+CD95+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1527294", "l": "GE07 cell line"}, {"i": "NCIT:C20257", "l": "GE07"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157668", "l": "CD8+CD28+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2919569", "l": "Colony-forming unit of granulocytic-macrophagocytic lineage (cell)"}, {"i": "SNOMEDCT:444994007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979669", "l": "Cells.CD19+IgG+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002473", "l": "MHC-II-high non-classical monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000481", "l": "cholecystokin stimulating hormone secreting cell"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:1000481", "l": "transitional myocyte of atrioventricular bundle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511007", "l": "BG02"}, {"i": "NCIT:C20234", "l": "BG02"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1511178", "l": "Bipolar neuron"}, {"i": "NCIT:C13154", "l": "Bipolar Neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979696", "l": "Ependymal+Choroid plexus cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001568", "l": "pulmonary artery endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157522", "l": "CD3-CD16+CD56+ (Natural killer) cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881595", "l": "Malignant Small Round Cell with Scant Amount of Dark Granular Cytoplasm"}, {"i": "NCIT:C60805", "l": "Malignant Small Round Cell with Scant Amount of Dark Granular Cytoplasm"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4699465", "l": "Monotypic lambda plasma cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5173494", "l": "Mononuclear cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001009", "l": "immature dermal dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2599885", "l": "Immature neutrophils"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171658", "l": "Lymphocytes | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1135969", "l": "Large Luteal Cells"}, {"i": "NCIT:C32693", "l": "Granulosa Lutein Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009073", "l": "medullary thymic epithelial cell type 3"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157361", "l": "CD19+Lambda+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177475", "l": "Plasma cells/100 leukocytes | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267953", "l": "Lymphocyte positive for CD62E antigen"}, {"i": "SNOMEDCT:117394000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0035286", "l": "Reticulocytes"}, {"i": "NCIT:C12528", "l": "Reticulocyte"}, {"i": "MESH:D012156", "l": "Reticulocytes"}, {"i": "SNOMEDCT:52802009"}]} +{"type": "biolink:Cell", "ic": "56.887918357411529", "identifiers": [{"i": "UMLS:C0334227", "l": "Tumor cells, malignant"}, {"i": "NCIT:C12917", "l": "Malignant Cell"}, {"i": "SNOMEDCT:88400008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2708700", "l": "Immature cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517639", "l": "KA09"}, {"i": "NCIT:C20269", "l": "KA09"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000090", "l": "dentate gyrus of hippocampal formation stellate cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179476", "l": "Mucous cell of gastric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D016175", "l": "B-Lymphocyte Subsets"}]} +{"type": "biolink:Cell", "ic": "73.740524343052556", "identifiers": [{"i": "CL:0000068", "l": "duct epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000054", "l": "hepatic pit cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2919236", "l": "Colony-forming unit of granulocytic-monocytic lineage (cell)"}, {"i": "SNOMEDCT:445259001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640055", "l": "IGF-1R Antisense Oligodeoxynucleotide-treated Autologous Glioma Cells"}, {"i": "NCIT:C101257", "l": "IGF-1R Antisense Oligodeoxynucleotide-treated Autologous Glioma Cells IGV-001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0014762", "l": "Erythroblasts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002135", "l": "nonkeratinized cell of epidermis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440832", "l": "Islet cell 512"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157318", "l": "CD15 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257857", "l": "COS-1 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002280", "l": "type N enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979645", "l": "Blasts.CD33+CD34+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12935", "l": "Embryonic Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D002856", "l": "Chromatophores"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3658291", "l": "Adult Germline Stem Cells"}, {"i": "MESH:D000072956", "l": "Adult Germline Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325536", "l": "H III cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599415", "l": "Spodoptera frugiperda cell line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513376", "l": "Moderately Differentiated Adenocarcinoma Cell"}, {"i": "NCIT:C36797", "l": "Moderately Differentiated Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4304495", "l": "Population of all spherocytes in portion of fluid"}, {"i": "SNOMEDCT:719693004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1257774", "l": "Granulocyte Precursor Cells"}, {"i": "MESH:D042381", "l": "Granulocyte Precursor Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157923", "l": "Cells | Peritoneal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545529", "l": "Invasive trophoblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001127", "l": "outer renal medulla vasa recta cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4331902", "l": "Immuncell-LC"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518624", "l": "Mouse Osteoblast"}, {"i": "NCIT:C22680", "l": "Mouse Osteoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0242598", "l": "LLC-PK1 Cells"}, {"i": "MESH:D018374", "l": "LLC-PK1 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0599757", "l": "Microfold cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440351", "l": "Cells.CD72"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276265", "l": "Bite cell (cell)"}, {"i": "SNOMEDCT:111013009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D059630", "l": "Mesenchymal Stem Cells"}]} +{"type": "biolink:Cell", "ic": "74.836269892493803", "identifiers": [{"i": "CL:0002368", "l": "respiratory epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002604", "l": "astrocyte of the hippocampus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4527157", "l": "LMP1-specific Chimeric Antigen Receptor-expressing T Lymphocytes"}, {"i": "NCIT:C136986", "l": "LMP1-specific Chimeric Antigen Receptor-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000587", "l": "cold sensing thermoreceptor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4684850", "l": "Autologous CD19/CD22 Chimeric Antigen Receptor T-cells"}, {"i": "NCIT:C142834", "l": "Autologous CD19/CD22 Chimeric Antigen Receptor T-cells CT120"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000061", "l": "cementoblast"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0000502", "l": "type D enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163546", "l": "Epithelial cells.ciliated | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009043", "l": "intestinal crypt stem cell of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328068", "l": "Type TG enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000714", "l": "kidney cortex collecting duct principal cell"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "CL:0000021", "l": "female germ cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331996", "l": "Gastric goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009032", "l": "B cell of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339990", "l": "Motor Neurons, Alpha"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726059", "l": "Autologous CD19-CD8-CD28-CD3zeta-CAR-mbIL15-HER1t T Cells"}, {"i": "NCIT:C150906", "l": "Autologous CD19-CD8-CD28-CD3zeta-CAR-mbIL15-HER1t T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696681", "l": "Cells.CD19+CD38+IgM-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708868", "l": "Malignant Corticotroph Cell"}, {"i": "NCIT:C45944", "l": "Malignant Corticotroph Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002116", "l": "B220-low CD38-positive unswitched memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008016", "l": "activated skeletal muscle satellite cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1135918", "l": "Myocytes, Smooth Muscle"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000934", "l": "CD4-positive, alpha-beta cytotoxic T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178307", "l": "Promyelocytes | Body fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009018", "l": "lymphocyte of large intestine lamina propria"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000409", "l": "myocyte of sinoatrial node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2334601", "l": "Intermediate cell of urothelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641004", "l": "Apoptotic Autologous Tumor Cells-pulsed Alpha-type-1 Polarized Dendritic Cells"}, {"i": "NCIT:C102978", "l": "Apoptotic Autologous Tumor Cells-pulsed Alpha-type-1 Polarized Dendritic Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002019", "l": "Ly-76 high reticulocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2325931", "l": "Epithelial cell of small intestine"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000460", "l": "glucocorticoid secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000418", "l": "myoepithelial cell of lactiferous alveolus"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000484", "l": "connective tissue type mast cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1507328", "l": "Cells.G0+G1 phase"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883048", "l": "Small Melanoma Cell"}, {"i": "NCIT:C62401", "l": "Small Melanoma Cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000731", "l": "urothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181725", "l": "Type II cell of adrenal cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000832", "l": "eosinophilic myeloblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518219", "l": "Malignant Neuroendocrine Fusiform Small Cell"}, {"i": "NCIT:C36720", "l": "Malignant Neuroendocrine Fusiform Small Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3178845", "l": "Wharton Jelly Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167928", "l": "HLA-DR+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000874", "l": "splenic red pulp macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157367", "l": "CD2 blasts | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427889", "l": "Vaginal epithelial cell"}, {"i": "SNOMEDCT:91766007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514742", "l": "Reactive Transitional Cell"}, {"i": "NCIT:C36915", "l": "Reactive Transitional Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0034083", "l": "Pulmonary Stretch Receptors"}, {"i": "MESH:D011661", "l": "Pulmonary Stretch Receptors"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002461", "l": "CD103-positive dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333735", "l": "Gemistocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706981", "l": "Bone Marrow Stem Cell with Potential to Differentiate to Granulocytic Lineage"}, {"i": "NCIT:C42716", "l": "Bone Marrow Stem Cell with Potential to Differentiate to Granulocytic Lineage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157490", "l": "CD34 blasts | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229425", "l": "Primary sclerotic mastoid cell"}, {"i": "SNOMEDCT:57003005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002284", "l": "type X enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744691", "l": "Partially HLA-matched AdV/CMV/EBV-specific Allogeneic T-Lymphocytes"}, {"i": "NCIT:C156256", "l": "Partially HLA-matched AdV/CMV/EBV-specific Allogeneic T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0000814", "l": "mature NK T cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0887811", "l": "Radiation Hybrids"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174120", "l": "Myeloperoxidase cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724803", "l": "NY-ESO-1/MAGE-A4/PRAME/Survivin/SSX2-specific Autologous Cytotoxic T Lymphocytes"}, {"i": "NCIT:C118367", "l": "NY-ESO-1/MAGE-A4/PRAME/Survivin/SSX2-specific Autologous Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "79.682896251205548", "identifiers": [{"i": "CL:0002658", "l": "glandular cell of the large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002528", "l": "mature CD14-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2709116", "l": "Cells.CD5+CD19+CD38+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001517", "l": "stomach enteroendocrine cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335910", "l": "Set of cholinergic cells of dorsal tegmental area [Ch6]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5142689", "l": "Plasma cells.polyclonal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009046", "l": "T cell of medullary sinus of lymph node"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517810", "l": "Leukemic Natural Killer Cell"}, {"i": "NCIT:C41070", "l": "Leukemic Natural Killer Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2599784", "l": "Granulocytes.CD55 deficient"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267842", "l": "Lymphocyte positive for both CD4 antigen and CD69 antigen"}, {"i": "SNOMEDCT:117529003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009072", "l": "medullary thymic epithelial cell type 2"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0029045", "l": "Oocytes"}, {"i": "MESH:D009865", "l": "Oocytes"}, {"i": "SNOMEDCT:86082002"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517714", "l": "Lactotrophs"}, {"i": "NCIT:C32911", "l": "Lactotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174645", "l": "Neutrophils.segmented/100 cells | Bone marrow | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733685", "l": "Autologous HER2-specific/EGFRt-expressing CD4/CD8-positive CAR T-cells"}, {"i": "NCIT:C156156", "l": "Autologous HER2-specific/EGFRt-expressing CD4/CD8-positive CAR T-cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0009022", "l": "stromal cell of lamina propria of small intestine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267952", "l": "Lymphocyte positive for CD61 antigen"}, {"i": "SNOMEDCT:117393006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002576", "l": "perineural cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000708", "l": "ureter adventitial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882849", "l": "Cell positive for CD34 antigen"}, {"i": "SNOMEDCT:116826008"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1001432", "l": "kidney collecting duct intercalated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000283", "l": "smooth muscle fiber of transverse colon"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516687", "l": "Coactivated T Cell"}, {"i": "NCIT:C12941", "l": "Coactivated T Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267709", "l": "100 Cells.CD3+CD4+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177617", "l": "Platelets | Blood cord | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4695998", "l": "Cells.CD3+CD8+CD27-CD45RO+CD62L-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4522887", "l": "Cells, Cultured, Autologous, Genetically-modified"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0002496", "l": "intraepithelial lymphocyte"}]} +{"type": "biolink:Cell", "ic": "51.025358850885794", "identifiers": [{"i": "UMLS:C0333717", "l": "Abnormal cell"}, {"i": "NCIT:C12913", "l": "Abnormal Cell"}, {"i": "SNOMEDCT:39266006"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000113", "l": "mononuclear phagocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1515214", "l": "Tara ES Cell Line"}, {"i": "NCIT:C20280", "l": "Tara ES Cell Line"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000658", "l": "cuticle secreting cell"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0002329", "l": "basal epithelial cell of tracheobronchial tree"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339863", "l": "Transitional myocyte of atrioventricular node"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000681", "l": "radial glial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0949431", "l": "TC1 Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483192", "l": "CD5+CD2-"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0427526", "l": "Large granular lymphocyte"}, {"i": "NCIT:C12921", "l": "Large Granular Lymphocyte"}, {"i": "SNOMEDCT:250285008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0814997", "l": "Intestinal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008006", "l": "muscle founder cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267901", "l": "Lymphocyte positive for CD28 antigen"}, {"i": "SNOMEDCT:117572009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182777", "l": "TCR gamma delta cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512133", "l": "ES04"}, {"i": "NCIT:C20252", "l": "ES04"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328623", "l": "Fibrocyte of adventitia of ureter"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000597", "l": "papillary tips cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157521", "l": "CD3-CD16+CD56+ (Natural killer) cells | Tissue and Smears | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518151", "l": "Population of all spermatozoa with angled midpiece in portion of fluid"}, {"i": "SNOMEDCT:725236008"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007007", "l": "notochordal sheath cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002145", "l": "ciliated columnar cell of tracheobronchial tree"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512549", "l": "Hyperchromatic Megakaryocyte"}, {"i": "NCIT:C37049", "l": "Hyperchromatic Megakaryocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323619", "l": "Set of astrocytes"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000619", "l": "supporting cell (sensu Nematoda)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519262", "l": "Serous Adenocarcinoma Cell"}, {"i": "NCIT:C37115", "l": "Serous Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183406", "l": "Epithelial cell of gut"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440296", "l": "Cells.CD33+CD44+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D016131", "l": "Lymphocyte Subsets"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182779", "l": "Acinar cell of sebaceous gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002182", "l": "surface mucosal cell of stomach"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512477", "l": "Hodgkin-Like Cell"}, {"i": "NCIT:C37026", "l": "Hodgkin-Like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4300409", "l": "Cells.CD3+CD8+CD45RO+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5172360", "l": "Megakaryocytes/100 leukocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1545485", "l": "Parabasal epithelial cell"}, {"i": "SNOMEDCT:725265002"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0009066", "l": "stratified squamous epithelial cell of anal canal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157349", "l": "CD19+21- cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440050", "l": "Abnormal blood cells.CD14"}]} +{"type": "biolink:Cell", "ic": "81.20444558259193", "identifiers": [{"i": "UMLS:C1514038", "l": "Neoplastic Myeloid Blast"}, {"i": "NCIT:C37067", "l": "Neoplastic Myeloid Blast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510911", "l": "Blast cell positive for CD33 antigen"}, {"i": "SNOMEDCT:725171003"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322822", "l": "CD16+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "CL:0000667", "l": "collagen secreting cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002529", "l": "CD1a-positive dermal dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023019", "l": "L5/6 cck, vip cortical GABAergic interneuron (Mus musculus)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013090", "l": "Spermatocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4528182", "l": "Derived Synovial Fluid Cell"}, {"i": "NCIT:C138971", "l": "Derived Synovial Fluid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5148040", "l": "Monocytes.CD14"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000928", "l": "activated CD4-negative, CD8-negative type I NK T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000383", "l": "type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2333238", "l": "Microfold cell of epithelium proper of jejunum"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000414", "l": "endothelial cell of venule"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000825", "l": "pro-NK cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2329330", "l": "H I cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0205867", "l": "Interfascicular Oligodendroglia"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002376", "l": "non-myelinating Schwann cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518153", "l": "Population of all spermatozoa with acrosome defects in portion of fluid"}, {"i": "SNOMEDCT:725234006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322829", "l": "Primitive neuroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3900029", "l": "Anti-CD22-CAR m971-BBz Lentiviral Vector-transduced Autologous T Lymphocytes"}, {"i": "NCIT:C120035", "l": "Anti-CD22-CAR m971-BBz Lentiviral Vector-transduced Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1513924", "l": "Neoplastic Acinar Cell"}, {"i": "NCIT:C36943", "l": "Neoplastic Acinar Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180254", "l": "Epithelial cell of gallbladder"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511062", "l": "Basaloid cell"}, {"i": "NCIT:C32190", "l": "Basaloid Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000137", "l": "osteocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179830", "l": "Epithelial cell of prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000327", "l": "appendix goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4744827", "l": "Derived Cell Line"}, {"i": "NCIT:C156445", "l": "Derived Cell Line"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000985", "l": "IgG plasma cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002641", "l": "epithelial cell of esophageal gland proper"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0933799", "l": "Ciliated columnar cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002399", "l": "CD1c-positive myeloid dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725105", "l": "CD33-specific CAR Lentiviral Vector-transduced Autologous T-lymphocytes"}, {"i": "NCIT:C148530", "l": "CD33-specific CAR Lentiviral Vector-transduced Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002651", "l": "endothelial cell of venous sinus of spleen"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12609", "l": "Leydig Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0440740", "l": "Granulocyte-specific"}, {"i": "SNOMEDCT:256910006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157312", "l": "CD14+CD16+CD59+ cells | Serum | Cell markers"}]} +{"type": "biolink:Cell", "ic": "71.481339394433462", "identifiers": [{"i": "UMLS:C0009781", "l": "Connective Tissue Cells"}, {"i": "NCIT:C12555", "l": "Connective and Soft Tissue Cell"}, {"i": "MESH:D003239", "l": "Connective Tissue Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440388", "l": "Cells.G2+M phase"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326979", "l": "Diffuse amacrine cell of retina"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979640", "l": "Blast cell positive for CD23 antigen"}, {"i": "SNOMEDCT:724265007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2936184", "l": "Fibroblast-Derived Induced Pluripotent Stem Cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1000309", "l": "epicardial adipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267831", "l": "Lymphocyte positive for both CD3 antigen and CD56 antigen"}, {"i": "SNOMEDCT:117522007"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "UMLS:C1709184", "l": "Neoplastic Lipocyte"}, {"i": "NCIT:C48683", "l": "Neoplastic Lipocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340471", "l": "Late promyelocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518984", "l": "Neoplastic Perineurial-Like Cell"}, {"i": "NCIT:C37152", "l": "Neoplastic Perineurial-Like Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546491", "l": "P.B. myeloblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340517", "l": "Type 2 vestibular sensory cell of stato-acoustic epithelium"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0000185", "l": "myoepithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440419", "l": "Cells.t(X;18)(q11.2;p11.23)(SS18,SSX1)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000132", "l": "corneal endothelial cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002569", "l": "mesenchymal stem cell of umbilical cord"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267805", "l": "HLE+ lymphocyte"}, {"i": "SNOMEDCT:117509004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3273000", "l": "Allogeneic CD56-positive CD3-negative Natural Killer Cells"}, {"i": "NCIT:C96741", "l": "Allogeneic CD56-positive CD3-negative Natural Killer Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5167383", "l": "Histiocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495544", "l": "A10 dopamine cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C12610", "l": "Lutein Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4322813", "l": "CD44+ T lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4287655", "l": "Autologous MAGE-A10-specific HLA-A2-restricted TCR c796 Gene-engineered Lymphocytes"}, {"i": "NCIT:C126686", "l": "Autologous MAGE-A10-specific HLA-A2-restricted TCR c796 Gene-engineered Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002407", "l": "mature Vgamma2-positive thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518149", "l": "Population of all spermatozoa with broken tail in portion of fluid"}, {"i": "SNOMEDCT:725253001"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000317", "l": "intestinal villus goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4055475", "l": "Alzheimer Type II Astrocyte"}, {"i": "NCIT:C120911", "l": "Alzheimer Type II Astrocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440235", "l": "Cell positive for CD103 antigen"}, {"i": "SNOMEDCT:725327006"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0005012", "l": "multi-ciliated epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267810", "l": "Lymphocyte positive for CD1 antigen"}, {"i": "SNOMEDCT:116850005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441142", "l": "Reticulocytes.mature"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163444", "l": "Eosinophils | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000720", "l": "kidney papillary duct intercalated cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1706984", "l": "Bone Marrow Stem Cell Committed to the Megakaryocytic Lineage"}, {"i": "NCIT:C43221", "l": "Bone Marrow Stem Cell Committed to the Megakaryocytic Lineage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4694618", "l": "Kymriah (Ped ALL)"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1956121", "l": "Skin Dendritic Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2331019", "l": "Set of cholinergic cells of dorsal tegmental area [Ch8]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763774", "l": "Autologous Anti-CD19CAR-CD28tm/4-1BB/CD3zeta-HER2tG-expressing CD4+/CD8+ T-lymphocytes SCRI-huCAR19v1"}, {"i": "NCIT:C157655", "l": "Autologous Anti-CD19CAR-CD28tm/4-1BB/CD3zeta-HER2tG-expressing CD4+/CD8+ T-lymphocytes SCRI-huCAR19v1"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3897252", "l": "Umbilical Cord Blood-derived Natural Killer Cells"}, {"i": "NCIT:C118949", "l": "Umbilical Cord Blood-derived Natural Killer Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229655", "l": "monoblast"}, {"i": "NCIT:C13014", "l": "Monoblast"}, {"i": "SNOMEDCT:53945006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000078722", "l": "PC-3 Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333854", "l": "Large cleaved cell"}, {"i": "NCIT:C32923", "l": "Large Cleaved Cell"}, {"i": "SNOMEDCT:72549000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001025", "l": "Kit-positive, Sca1-positive common lymphoid progenitor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183358", "l": "Type-2 epithelial cell of thymus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5174619", "l": "Neutrophils | Nose | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682541", "l": "polyhedral cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001107", "l": "kidney loop of Henle thin ascending limb epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0221266", "l": "Dacryocyte (cell)"}, {"i": "SNOMEDCT:47787007"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0524456", "l": "Structure of endocervical glandular cell"}, {"i": "SNOMEDCT:91767003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516094", "l": "Atypical Epithelioid Cell"}, {"i": "NCIT:C37118", "l": "Atypical Epithelioid Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002235", "l": "luminal cell of prostatic acinus"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157437", "l": "CD3+CD4+ (T4 helper) cells | Cerebral spinal fluid | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157619", "l": "CD56 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000621", "l": "fusion competent myoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1180242", "l": "Endothelial cell of artery"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0432611", "l": "Stab form"}, {"i": "NCIT:C13117", "l": "Band Cell"}, {"i": "SNOMEDCT:259712009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000511", "l": "androgen binding protein secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267818", "l": "Lymphocyte positive for both CD3 antigen and CD25 antigen"}, {"i": "SNOMEDCT:116856004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518171", "l": "Population of all squamous epithelial cells in portion of fluid"}, {"i": "SNOMEDCT:726505005"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0019019", "l": "tracheobronchial smooth muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1711304", "l": "Malignant Somatotroph Cell"}, {"i": "NCIT:C45941", "l": "Malignant Somatotroph Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002179", "l": "foveolar cell of stomach"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596108", "l": "antibody dependent killer cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640949", "l": "Inducible CD4+CD25+ Regulatory T Cells"}, {"i": "NCIT:C102789", "l": "Inducible CD4+CD25+ Regulatory T Cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0012000", "l": "astrocyte of the forebrain"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009005", "l": "salivary gland cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155288", "l": "Blasts/100 cells | Lymph node | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002040", "l": "immature NK T cell stage II"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011027", "l": "skeletal muscle fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336257", "l": "Pleural macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427568", "l": "Platelet satellite"}, {"i": "SNOMEDCT:250317006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D010011", "l": "Osteocytes"}]} +{"type": "biolink:Cell", "ic": "72.96845868813736", "identifiers": [{"i": "CL:0000864", "l": "tissue-resident macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000629", "l": "storage cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0946057", "l": "Erythrocytes.CD55"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000385", "l": "prohemocyte (sensu Nematoda and Protostomia)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009063", "l": "enteroendocrine cell of anorectum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4266481", "l": "Tc-99m tagged RBC"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3652916", "l": "chondrocytes, autologous"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157402", "l": "CD23 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000303", "l": "fibroblast of areolar connective tissue"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329802", "l": "Ex Vivo-expanded Autologous T Cells IMA101"}, {"i": "UMLS:C4722695", "l": "ACTolog IMA101"}, {"i": "NCIT:C131305", "l": "Ex Vivo-expanded Autologous T Cells IMA101"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4053532", "l": "Circulating Epithelial Cell"}, {"i": "NCIT:C122733", "l": "Circulating Epithelial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329669", "l": "Circulating Myeloid Cell"}, {"i": "NCIT:C129907", "l": "Circulating Myeloid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0205832", "l": "Merkel Cells"}, {"i": "MESH:D018862", "l": "Merkel Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440360", "l": "Cells.CD82"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1516696", "l": "Collecting Cell"}, {"i": "NCIT:C32343", "l": "Collecting Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333833", "l": "Ragocyte"}, {"i": "SNOMEDCT:45417004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4688337", "l": "Autologous Anti-CD19 T-cell Receptor T cells ET190L1"}, {"i": "NCIT:C148030", "l": "Autologous Anti-CD19 T-cell Receptor T cells ET190L1"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001050", "l": "effector CD8-positive, alpha-beta T cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001204", "l": "CD4-positive, alpha-beta memory T cell, CD45RO-positive"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340197", "l": "Luminal cell of lactiferous terminal ductal lobular unit"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1881594", "l": "Malignant Small Germ Cell"}, {"i": "NCIT:C61386", "l": "Malignant Small Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496569", "l": "A12 dopamine cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085964", "l": "Anti-CD3 OKT3/Anti-EGFR Bispecific Antibody Armed Activated T Lymphocytes"}, {"i": "NCIT:C124232", "l": "Anti-CD3 OKT3/Anti-EGFR Bispecific Antibody Armed Activated T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002291", "l": "X chromosome-bearing sperm cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175004", "l": "Normoblasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C1514068", "l": "Neoplastic Polygonal Cell"}, {"i": "NCIT:C36851", "l": "Neoplastic Polygonal Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1511467", "l": "CY81"}, {"i": "NCIT:C20241", "l": "CY81"}]} +{"type": "biolink:Cell", "ic": "71.333297062267803", "identifiers": [{"i": "UMLS:C1708867", "l": "Malignant Connective and Soft Tissue Cell"}, {"i": "NCIT:C48787", "l": "Malignant Connective and Soft Tissue Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2348928", "l": "HLA-Matched Donor Mononuclear Cell-Enriched Leukocytes Apocell"}, {"i": "NCIT:C71162", "l": "HLA-Matched Donor Mononuclear Cell-Enriched Leukocytes Apocell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1292100", "l": "IgG B lymphocyte"}, {"i": "SNOMEDCT:115606002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440396", "l": "Cells.SmIg-CD79"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001578", "l": "vagina squamous cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2985406", "l": "DU 145"}, {"i": "NCIT:C93036", "l": "DU 145"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011024", "l": "double negative T regulatory cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2981826", "l": "Allogeneic CMV/AdV-Specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C88310", "l": "Allogeneic CMV/AdV-Specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011017", "l": "vagal neural crest cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002403", "l": "mature Vgamma2-positive fetal thymocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002532", "l": "CD16-positive myeloid dendritic cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2336229", "l": "Transitional myocyte of anterior internodal tract"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002045", "l": "Fraction A pre-pro B cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518163", "l": "Population of all abnormal spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:725221005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0023602", "l": "Structure of interstitial cell of Leydig"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000489", "l": "reticular cell of splenic cord"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709181", "l": "Neoplastic Lactotroph Cell with Small Secretory Granules"}, {"i": "NCIT:C45953", "l": "Neoplastic Lactotroph Cell with Small Secretory Granules"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229656", "l": "Promonocyte"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002385", "l": "blastoconidium"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166079", "l": "Granulocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4023120", "l": "cochlea auditory hair cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4239859", "l": "Vascular smooth muscle cell of arch of aorta"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002540", "l": "mesenchymal stem cell of the bone marrow"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000747", "l": "cyanophore"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000477", "l": "cardiac pacemaker cell of sinoatrial node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267898", "l": "Lymphocyte positive for both CD25 antigen and CD19 antigen"}, {"i": "SNOMEDCT:116731001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1883178", "l": "Subclone"}, {"i": "NCIT:C62037", "l": "Subclone"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002075", "l": "brush cell of trachebronchial tree"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3842281", "l": "Dacrocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440411", "l": "Cells.t(4;11)(q21.3;q23)(AFF1,MLL)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4733637", "l": "Autologous HPV-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C155880", "l": "Autologous HPV-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C3899623", "l": "Circulating Stem Cell"}, {"i": "NCIT:C115116", "l": "Circulating Stem Cell"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "UMLS:C1513095", "l": "Melanoma Cell"}, {"i": "NCIT:C36873", "l": "Melanoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1953455", "l": "Spherocytes.micro"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2736926", "l": "Cells.CD10+FMC7+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000603", "l": "dikaryon"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763554", "l": "Allogeneic HAdV Antigen-specific T-lymphocytes"}, {"i": "NCIT:C157341", "l": "Allogeneic HAdV Antigen-specific T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0041362", "l": "Tumor Cells, Cultured"}, {"i": "MESH:D014407", "l": "Tumor Cells, Cultured"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000096", "l": "fibroblast of the reticular layer of dermis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1515137", "l": "T-Immunoblast"}, {"i": "NCIT:C34034", "l": "T-Immunoblast"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "CL:0000677", "l": "gut absorptive cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154299", "l": "Band form neutrophils | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000301", "l": "pole cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171675", "l": "Lymphocytes Immunoblastic | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163553", "l": "Epithelial cells.renal | Urine sediment | Urinalysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0206152", "l": "Cell Transplants"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4727163", "l": "Autologous Tumor Infiltrating Lymphocytes MDA-TIL"}, {"i": "NCIT:C153312", "l": "Autologous Tumor Infiltrating Lymphocytes MDA-TIL"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4284002", "l": "Type 1 Regulatory T-Cell"}, {"i": "NCIT:C126755", "l": "Type 1 Regulatory T-Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1517919", "l": "Lobular Carcinoma Cell"}, {"i": "NCIT:C36879", "l": "Lobular Carcinoma Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171674", "l": "Lymphocytes clefted | Blood or Tissue | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002236", "l": "basal epithelial cell of prostatic duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D013171", "l": "Spores, Bacterial"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0369715", "l": "Myelocytes"}, {"i": "NCIT:C13115", "l": "Myelocyte"}, {"i": "SNOMEDCT:127915008"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001285", "l": "vasa recta descending limb cell"}]} +{"type": "biolink:Cell", "ic": "66.629890497735275", "identifiers": [{"i": "CL:2000029", "l": "central nervous system neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882819", "l": "CD22+ cell"}, {"i": "SNOMEDCT:732269007"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C0014603", "l": "Epithelioid Cells"}, {"i": "NCIT:C12559", "l": "Epithelioid Cell"}, {"i": "MESH:D015622", "l": "Epithelioid Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682527", "l": "hybrid cell line"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:4023018", "l": "pvalb GABAergic cortical interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175605", "l": "Other cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1514009", "l": "Neoplastic Leydig Cell"}, {"i": "NCIT:C36896", "l": "Neoplastic Leydig Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0427527", "l": "Cleft lymphocyte"}, {"i": "SNOMEDCT:134202006"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000767", "l": "basophil"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000887", "l": "lymph node subcapsular sinus macrophage"}]} +{"type": "biolink:Cell", "ic": "84.762172188404165", "identifiers": [{"i": "CL:0000323", "l": "lysozyme secreting cell"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:4023054", "l": "mesothelial fibroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518995", "l": "Peripheral B-Lymphocyte of Inner Mantle Zone"}, {"i": "NCIT:C38332", "l": "Peripheral B-Lymphocyte of Inner Mantle Zone"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001066", "l": "erythroid progenitor cell, mammalian"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182608", "l": "Epithelial cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157486", "l": "CD33 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0002559", "l": "hair follicle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011111", "l": "gonadotropin releasing neuron"}]} +{"type": "biolink:Cell", "ic": "65.690062451777465", "identifiers": [{"i": "CL:0000215", "l": "barrier cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000204", "l": "acceleration receptive cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "NCIT:C12563", "l": "Histiocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002432", "l": "CD24-positive, CD4 single-positive thymocyte"}]} +{"type": "biolink:Cell", "ic": "73.153983691316824", "identifiers": [{"i": "NCIT:C32506", "l": "Endocrine Cell"}]} +{"type": "biolink:Cell", "ic": "67.444934845976888", "identifiers": [{"i": "CL:0000526", "l": "afferent neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3640056", "l": "CD19CAR-CD3zeta-4-1BB-expressing Allogeneic T-lymphocyte Cells"}, {"i": "NCIT:C101258", "l": "CD19CAR-CD3zeta-4-1BB-expressing Allogeneic T-lymphocyte Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5175149", "l": "Nucleated cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001070", "l": "beige adipocyte"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "UMLS:C0225338", "l": "Columnar epithelial cell"}, {"i": "NCIT:C13158", "l": "Columnar Cell"}, {"i": "SNOMEDCT:6032003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002451", "l": "mammary stem cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000553", "l": "megakaryocyte progenitor cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2826156", "l": "CD34/TK75 Retroviral Vector-Transduced Donor Lymphocytes"}, {"i": "NCIT:C82409", "l": "CD34/TK75 Retroviral Vector-Transduced Donor Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323993", "l": "Epithelial cell of bile duct"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496268", "l": "B5 serotonin cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733231", "l": "MFE23 scFv-expressing autologous anti-CEA MFEz T lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0019029", "l": "centrilobular region hepatocyte"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000618", "l": "juxtaglomerular complex cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170950", "l": "Leukocytes other | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "79.238648346243679", "identifiers": [{"i": "CL:0000103", "l": "bipolar neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4241121", "l": "Rhombencephalic neural crest cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002509", "l": "CD103-positive, langerin-positive lymph node dendritic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002131", "l": "regular ventricular cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496267", "l": "B4 serotonin cells"}]} +{"type": "biolink:Cell", "ic": "70.502841885620896", "identifiers": [{"i": "CL:0008000", "l": "non-striated muscle cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440325", "l": "Cells.CD49e"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1136335", "l": "Multipotent Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0031760", "l": "Photoreceptors"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0683198", "l": "spermatosome"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267996", "l": "Lymphocyte positive for CD117 antigen"}, {"i": "SNOMEDCT:117436000"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1444183", "l": "Cleidoic ovum"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157516", "l": "CD3-CD16+ cells | Body fluid | Cell markers"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1707937", "l": "Epithelial Stem Cell"}, {"i": "NCIT:C43422", "l": "Epithelial Stem Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5154003", "l": "B lymphocytes | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267967", "l": "Lymphocyte positive for CD73 antigen"}, {"i": "SNOMEDCT:117407000"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513032", "l": "Mature Thymocyte"}, {"i": "NCIT:C33062", "l": "Mature Thymocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979124", "l": "Blasts.CD126"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1709187", "l": "Neoplastic Osteoclast-Like Giant Cell"}, {"i": "NCIT:C47815", "l": "Neoplastic Osteoclast-Like Giant Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0002097", "l": "cortical cell of adrenal gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000337", "l": "enterocyte of epithelium of duodenal gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179136", "l": "Type II taste bud cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001505", "l": "parvocellular neurosecretory cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882904", "l": "Cells.CD57"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005004", "l": "pigment erythroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171660", "l": "Lymphocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157390", "l": "CD21 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:0002167", "l": "olfactory epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000416", "l": "polytene cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3166859", "l": "Cytoplasmic CD179a"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "UMLS:C1514015", "l": "Neoplastic Medium-Sized Lymphocyte"}, {"i": "NCIT:C37004", "l": "Neoplastic Medium-Sized Lymphocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0221280", "l": "Elliptocyte (cell)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000291", "l": "myocyte of posterior internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5181331", "l": "Spermatids | Semen | Fertility testing"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267790", "l": "Cells.CD27+CD45RA+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002525", "l": "metanephric glomerular visceral epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171657", "l": "Lymphocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5197771", "l": "Cerebellar Golgi Cells"}, {"i": "MESH:D000080906", "l": "Cerebellar Golgi Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002608", "l": "hippocampal neuron"}]} +{"type": "biolink:Cell", "ic": "88.206286499733196", "identifiers": [{"i": "CL:1000416", "l": "obsolete myoepithelial cell of lactiferous gland"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708886", "l": "Malignant Large Germ Cell with Abundant Cytoplasm"}, {"i": "NCIT:C54127", "l": "Malignant Large Germ Cell with Abundant Cytoplasm"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011000", "l": "dorsal horn interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338315", "l": "Epithelial cell of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000575", "l": "corneal epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0004112", "l": "Astrocytes"}, {"i": "SNOMEDCT:78399007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002289", "l": "type I taste bud cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440364", "l": "Cells.CD87"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002012", "l": "Kit-low proerythroblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2698130", "l": "Anti-CEA IgCD28TCR-Transduced Autologous T Cells"}, {"i": "NCIT:C77865", "l": "Anti-CEA IgCD28TCR-Transduced Autologous T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1955256", "l": "Erythrocytes.fetal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5161804", "l": "Cytoplasmic Ig mu cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2328553", "l": "Transitional myocyte of sinuatrial node"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0596508", "l": "Embryonic Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186017", "l": "Blasts | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496152", "l": "A8 dopamine cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0883475", "l": "Cells.CD5+CD25+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177780", "l": "Polymorphonuclear cells | Pericardial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C2985405", "l": "Nonspecific Immune Cell"}, {"i": "NCIT:C93035", "l": "Nonspecific Immune Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000318", "l": "sweat secreting cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C129906", "l": "Natural Killer T-Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002453", "l": "oligodendrocyte precursor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979674", "l": "Cells.CD4+CD7-CD49d-"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002676", "l": "neural crest derived neuroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:4028001", "l": "pulmonary capillary endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4267791", "l": "Cells.CD27+CD45RA-"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2338897", "l": "Paneth cell of epithelium of large intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000012", "l": "fibroblast of pedal digit skin"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002655", "l": "epithelial cell of stratum spinosum of esophageal epithelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3827754", "l": "Tumor Infiltrating Macrophages"}, {"i": "NCIT:C111027", "l": "Tumor Infiltrating Macrophages"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246843", "l": "Cranial neural crest cell"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1514023", "l": "Neoplastic Meningothelial Cell"}, {"i": "NCIT:C37155", "l": "Neoplastic Meningothelial Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C0018207", "l": "granulosa cell"}, {"i": "NCIT:C12587", "l": "Granulosa Cell"}, {"i": "NCIT:C41607", "l": "Ovarian Granulosa Cell"}, {"i": "MESH:D006107", "l": "Granulosa Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4034569", "l": "Erythrocytes.ghost cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000701", "l": "paraganglia type 2 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000476", "l": "thyrotroph"}]} +{"type": "biolink:Cell", "ic": "80.155824608458104", "identifiers": [{"i": "UMLS:C1706683", "l": "Abnormal Germ Cell"}, {"i": "NCIT:C54103", "l": "Abnormal Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440271", "l": "Cells.CD2+CD20+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2717913", "l": "Telocytes"}, {"i": "MESH:D000067170", "l": "Telocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000665", "l": "permanently open valve cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5166082", "l": "Granulocytes | Dialysis fluid peritoneal | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002469", "l": "MHC-II-negative classical monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546494", "l": "P.B. eosinophilic metamyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979675", "l": "Cells.CD56+CD57+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186734", "l": "Leukocytes | Blood Product unit.platelet pheresis | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "NCIT:C12606", "l": "Spermatogonium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000717", "l": "kidney outer medulla collecting duct intercalated cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733516", "l": "Cytorex EBV"}]} +{"type": "biolink:Cell", "ic": "69.63974591466652", "identifiers": [{"i": "CL:0000785", "l": "mature B cell"}]} +{"type": "biolink:Cell", "ic": "70.502841885620896", "identifiers": [{"i": "UMLS:C1519221", "l": "Secretory cell"}, {"i": "NCIT:C13055", "l": "Secretory Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513301", "l": "Mikulicz Cell"}, {"i": "NCIT:C36738", "l": "Mikulicz Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0312738", "l": "Pre-B Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000209", "l": "taste receptor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3850145", "l": "Commissural Interneurons"}, {"i": "MESH:D066294", "l": "Commissural Interneurons"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440145", "l": "Blasts.CD20"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D019858", "l": "Enteroendocrine Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518368", "l": "Non-Keratinizing Malignant Small Squamous Cell"}, {"i": "NCIT:C36790", "l": "Non-Keratinizing Malignant Small Squamous Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333794", "l": "Abnormal cellular component of blood"}, {"i": "SNOMEDCT:89615005"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:1000415", "l": "epithelial cell of gall bladder"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002088", "l": "interstitial cell of Cajal"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0806036", "l": "Renal epithelial cell"}, {"i": "SNOMEDCT:115593006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157397", "l": "CD22+CD19+ | White blood cells | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882784", "l": "Cell positive for CD11C antigen"}, {"i": "SNOMEDCT:116750001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0483189", "l": "CD3+DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1184144", "l": "Luminal cell of alveolus of lactiferous gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440389", "l": "Cells.HLA-DR+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546504", "l": "P.B. hematohistioblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333822", "l": "Microlymphoblast"}, {"i": "SNOMEDCT:2014001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157667", "l": "CD8+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1710397", "l": "Thymic Epithelial Cell Capable of Differentiating Towards Both Cortical and Medullary Cell Type"}, {"i": "NCIT:C45704", "l": "Thymic Epithelial Cell Capable of Differentiating Towards Both Cortical and Medullary Cell Type"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000307", "l": "fibroblast of dense regular elastic tissue"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "CL:0009076", "l": "neuro-medullary thymic epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000513", "l": "cardiac muscle myoblast"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0001056", "l": "dendritic cell, human"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5187678", "l": "HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 25 mL INTRAVENOUS INJECTION"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5170472", "l": "Large unstained cells | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177476", "l": "Plasma cells/100 leukocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "CL:0008046", "l": "extrafusal muscle fiber"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "UMLS:C1513931", "l": "Neoplastic Basaloid Cell"}, {"i": "NCIT:C36759", "l": "Neoplastic Basaloid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177799", "l": "Polymorphonuclear cells/leukocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1266875", "l": "Epidermal Langerhans cell"}, {"i": "SNOMEDCT:127854005"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4266557", "l": "Hematopoietic progenitor cells^BPU"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001135", "l": "arcuate artery cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000638", "l": "acidophil cell of pars distalis of adenohypophysis"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000529", "l": "pigmented epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000758", "l": "type 6 cone bipolar cell (sensu Mus)"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0206190", "l": "Macrophages, Peritoneal"}, {"i": "NCIT:C12566", "l": "Peritoneal Macrophage"}, {"i": "MESH:D017737", "l": "Macrophages, Peritoneal"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001018", "l": "immature CD8_alpha-low Langerhans cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000346", "l": "hair follicle dermal papilla cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157926", "l": "Cells | Synovial fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002474", "l": "lymphoid MHC-II-negative classical monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000106", "l": "unipolar neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168976", "l": "Immature basophils | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000214", "l": "synovial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2326796", "l": "Chromophil cell of pars distalis of adenohypophysis"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518159", "l": "Population of all progressive spermatozoa in portion of fluid"}, {"i": "SNOMEDCT:726585007"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522260", "l": "Connective Tissue - Fibroblasts (MMHCC)"}, {"i": "NCIT:C22700", "l": "Mouse Fibroblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171700", "l": "Lymphocytes.immature/100 leukocytes | Amniotic fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0333862", "l": "Giant megakaryocyte"}, {"i": "NCIT:C37045", "l": "Giant Megakaryocyte"}, {"i": "SNOMEDCT:60191001"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002147", "l": "clear chief cell of parathyroid gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882791", "l": "Cell positive for CD13 antigen"}, {"i": "SNOMEDCT:116751002"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440393", "l": "Cells.myeloperoxidase"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0000030", "l": "glioblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000315", "l": "principal gastric gland goblet cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3272725", "l": "Mini-Gemistocyte"}, {"i": "NCIT:C96345", "l": "Mini-Gemistocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512859", "l": "Intermediate-Sized Neoplastic Germ Cell"}, {"i": "NCIT:C37133", "l": "Intermediate-Sized Neoplastic Germ Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157241", "l": "CD10+CD25+ cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D005347", "l": "Fibroblasts"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0000683", "l": "ependymoglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229472", "l": "Cell of Hensen"}, {"i": "SNOMEDCT:57870006"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1518999", "l": "Peripheral Blood Stem Cells"}, {"i": "NCIT:C12946", "l": "Peripheral Blood Stem Cell"}, {"i": "MESH:D000072916", "l": "Peripheral Blood Stem Cells"}, {"i": "SNOMEDCT:419583006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183981", "l": "Chromaffin cell of right ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682551", "l": "Argyrophilic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000356", "l": "hair matrix stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5182775", "l": "TCR alpha beta cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3826976", "l": "IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051"}, {"i": "NCIT:C114385", "l": "IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085965", "l": "Anti-CD3/Anti-EGFR-bispecific Monoclonal Antibody-armed Activated Autologous T-lymphocytes"}, {"i": "NCIT:C125185", "l": "Anti-CD3/Anti-EGFR-bispecific Monoclonal Antibody-armed Activated Autologous T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1181541", "l": "Type I cell of paraganglion"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0946500", "l": "Cells.CD4+CD45+"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882894", "l": "Cells.CD5+CD20+"}]} +{"type": "biolink:Cell", "ic": "52.142733154451577", "identifiers": [{"i": "CL:0000066", "l": "epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327656", "l": "Basal cell of epithelium of terminal bronchiole"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4726578", "l": "Autologous Anti-Muc1/CD33/CD38/CD56/CD123 Gene-engineered CAR-T Cells"}, {"i": "NCIT:C151954", "l": "Autologous Anti-Muc1/CD33/CD38/CD56/CD123 Gene-engineered CAR-T Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001016", "l": "Aortic Bodies"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2324839", "l": "Set of cholinergic cells of diagonal gyrus [Ch3]"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157665", "l": "CD8 cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440295", "l": "Cells.CD33+CD11b+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0393073", "l": "autologous Epstein-Barr virus-specific cytotoxic T lymphocytes (cell)"}, {"i": "NCIT:C12920", "l": "EBV-Specific Cytotoxic T-Lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000326", "l": "ileal goblet cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5155165", "l": "Blasts | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510922", "l": "Blast cell positive for CD1a antigen"}, {"i": "SNOMEDCT:725176008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0545587", "l": "Blood large lymphocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513955", "l": "Neoplastic Endocrine Null Cell"}, {"i": "NCIT:C36923", "l": "Neoplastic Endocrine Null Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182789", "l": "Epithelial cell of visceral layer of glomerular capsule"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4704951", "l": "Multipotent Mesenchymal Stromal Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0521183", "l": "Buhot cell"}, {"i": "SNOMEDCT:30469008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1637798", "l": "Leukocyte component of blood"}, {"i": "SNOMEDCT:419030006"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "NCIT:C13013", "l": "Lymphoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1520106", "l": "Wisconsin H14 stem cell line"}, {"i": "NCIT:C20312", "l": "WA14"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2340574", "l": "Horizontal cell of cerebral cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002036", "l": "Slamf1-positive multipotent progenitor cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440293", "l": "Cells.CD31"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011101", "l": "chorionic trophoblast cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023002", "l": "dynamic beta motor neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002285", "l": "type III taste bud cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001209", "l": "inner medulla vasa recta ascending limb cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:0008004", "l": "somatic muscle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0033416", "l": "Promyelocytes"}, {"i": "NCIT:C13114", "l": "Promyelocyte"}, {"i": "SNOMEDCT:43446009"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000851", "l": "neuromast mantle cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1001509", "l": "glycinergic neuron"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1519372", "l": "Glandular cell of small intestine"}, {"i": "NCIT:C33566", "l": "Small Intestinal Glandular Cell"}]} +{"type": "biolink:Cell", "ic": "78.819800280251172", "identifiers": [{"i": "CL:1000893", "l": "kidney venous blood vessel cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1514738", "l": "Reactive Glandular Cell"}, {"i": "NCIT:C36811", "l": "Reactive Glandular Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335330", "l": "Set of cholinergic cells of accumbens nucleus [Ch2]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011016", "l": "flagellated sperm cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002175", "l": "primary follicular cell of ovary"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D000072336", "l": "Mucosal-Associated Invariant T Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002546", "l": "embryonic blood vessel endothelial progenitor cell"}]} +{"type": "biolink:Cell", "ic": "70.634878722804729", "identifiers": [{"i": "CL:0000235", "l": "macrophage"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002629", "l": "mature microglial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2323406", "l": "Mononuclear cytotrophoblast cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002256", "l": "supporting cell of carotid body"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518147", "l": "Population of all spermatozoa with cytoplasmic droplet in portion of fluid"}, {"i": "SNOMEDCT:725252006"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1979779", "l": "Other cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0546505", "l": "P.B. hemohistioblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002475", "l": "lymphoid MHC-II-negative non-classical monocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4246480", "l": "Non-ectomesenchymal cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002538", "l": "intrahepatic cholangiocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440368", "l": "Cells.CD91"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267893", "l": "Lymphocyte positive for both CD22 antigen and CD11C antigen"}, {"i": "SNOMEDCT:117566009"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1512098", "l": "Dyskeratotic Cell"}, {"i": "NCIT:C39667", "l": "Dyskeratotic Cell"}]} +{"type": "biolink:Cell", "ic": "83.127010562534593", "identifiers": [{"i": "UMLS:C4330475", "l": "Immune Cell"}, {"i": "NCIT:C132890", "l": "Immune Cell"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "CL:1000352", "l": "basal cell of epithelium of lobular bronchiole"}]} +{"type": "biolink:Cell", "ic": "73.344328060803463", "identifiers": [{"i": "CL:0000402", "l": "CNS interneuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3495561", "l": "A7 noradrenaline cells"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:1001591", "l": "oviduct glandular cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763629", "l": "Valproic Acid-Expanded Umbilical Cord Blood-derived CD34-positive Cells"}, {"i": "NCIT:C157453", "l": "Valproic Acid-Expanded Umbilical Cord Blood-derived CD34-positive Cells"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:2000030", "l": "hypothalamus cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229537", "l": "Pituitary beta cell"}, {"i": "SNOMEDCT:37514005"}]} +{"type": "biolink:Cell", "ic": "85.740669697216731", "identifiers": [{"i": "CL:0000955", "l": "pre-B-II cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4725933", "l": "Autologous PSMA-4SCAR-expressing T-cells 4SCAR-PSMA"}, {"i": "NCIT:C150699", "l": "Autologous PSMA-4SCAR-expressing T-cells 4SCAR-PSMA"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4510900", "l": "Blast cell positive for CD1 antigen"}, {"i": "SNOMEDCT:724246004"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D008214", "l": "Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5186810", "l": "Metamyelocytes | Fetus | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008017", "l": "adult skeletal muscle myoblast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4733599", "l": "autologous anti-CD19/CD22-CAR-T cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4696640", "l": "Cells.CD4+CD25-CD127+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0524987", "l": "Chief Cells, Gastric"}, {"i": "NCIT:C32305", "l": "Chief Cell of the Stomach"}, {"i": "MESH:D019872", "l": "Chief Cells, Gastric"}, {"i": "SNOMEDCT:70935009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5178308", "l": "Promyelocytes | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512131", "l": "ES02"}, {"i": "NCIT:C20250", "l": "ES02"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1564995", "l": "Retinal Bipolar Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5171665", "l": "Lymphocytes | Pleural fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4289974", "l": "Anti-CD22 CAR-expressing T Lymphocytes"}, {"i": "NCIT:C128556", "l": "Anti-CD22 CAR-expressing T Lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0002449", "l": "Ameloblasts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2734107", "l": "Erythrocytes+Granulocytes.CD55+CD59 deficient"}]} +{"type": "biolink:Cell", "ic": "83.899076217449789", "identifiers": [{"i": "UMLS:C1513963", "l": "Neoplastic Epithelioid Cell"}, {"i": "NCIT:C37104", "l": "Neoplastic Epithelioid Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5177779", "l": "Polymorphonuclear cells | Cerebral spinal fluid | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335952", "l": "Type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0000157", "l": "surfactant secreting cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0228074", "l": "Medium sized neuron"}, {"i": "SNOMEDCT:5802004"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000965", "l": "Bm3 B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002181", "l": "mucous neck cell of gastric gland"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179829", "l": "Epithelial cell of tracheobronchial tree"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1997486", "l": "Autologous chondrocyte cell product"}, {"i": "SNOMEDCT:428086001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1276865", "l": "Entire hilar cell of ovary"}, {"i": "SNOMEDCT:259185009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3832086", "l": "Human Cord Blood Hematopoietic Progenitor Cell 500000000 in 35 mL INTRAVENOUS INJECTION, SOLUTION [ALLOCORD]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708892", "l": "Malignant Neuroectodermal Round Cell"}, {"i": "NCIT:C54042", "l": "Malignant Neuroectodermal Round Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1709203", "l": "Neoplastic Spindle-Shaped Fibrohistiocytic Cell"}, {"i": "NCIT:C49075", "l": "Neoplastic Spindle-Shaped Fibrohistiocytic Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002680", "l": "PP cell of intestine"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3828708", "l": "Oncolytic Adenovirus ICOVIR5-infected Autologous Mesenchymal Stem Cells"}, {"i": "NCIT:C107160", "l": "Oncolytic Adenovirus ICOVIR5-infected Autologous Mesenchymal Stem Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682521", "l": "primate cell line"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5163451", "l": "Eosinophils | XXX | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229644", "l": "Nonsegmented eosinophil"}, {"i": "SNOMEDCT:81209003"}]} +{"type": "biolink:Cell", "ic": "80.661393760018115", "identifiers": [{"i": "CL:0000599", "l": "conidium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512199", "l": "Glomerular Mesangial Cells"}, {"i": "NCIT:C32685", "l": "Glomerular Mesangial Cell"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "UMLS:C1511762", "l": "Mouse Dendritic Cell"}, {"i": "NCIT:C22596", "l": "Mouse Dendritic Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157560", "l": "CD40 cells | Blood | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4722715", "l": "S68587"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:1000280", "l": "smooth muscle cell of colon"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D008264", "l": "Macrophages"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0024156", "l": "Luteal Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1179471", "l": "Surface mucous cell of stomach"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C0229589", "l": "Structure of parathyroid oxyphil cell"}, {"i": "NCIT:C33269", "l": "Parathyroid Gland Oxyphil Cell"}, {"i": "SNOMEDCT:12701006"}]} +{"type": "biolink:Cell", "ic": "86.870262171526278", "identifiers": [{"i": "CL:0000120", "l": "granule cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1708891", "l": "Malignant Neuroectodermal Large Cell"}, {"i": "NCIT:C54043", "l": "Malignant Neuroectodermal Large Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3176906", "l": "Cells.cytoplasmic CD3"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002548", "l": "fibroblast of cardiac tissue"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518125", "l": "MI01"}, {"i": "NCIT:C20279", "l": "MI01"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000483", "l": "Purkinje myocyte of internodal tract"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "MESH:D001854", "l": "Bone Marrow Cells"}]} +{"type": "biolink:Cell", "ic": "74.159372409045062", "identifiers": [{"i": "CL:0000081", "l": "blood cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3898205", "l": "NGFR-transduced Autologous T Lymphocytes"}, {"i": "NCIT:C118576", "l": "NGFR-transduced Autologous T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4085937", "l": "Adipose-derived Stromal Vascular Fraction Cells"}, {"i": "NCIT:C124992", "l": "Adipose-derived Stromal Vascular Fraction Cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0947287", "l": "Cells.CD16"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157394", "l": "CD22 blasts | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267995", "l": "Lymphocyte positive for CD115 antigen"}, {"i": "SNOMEDCT:117435001"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0882793", "l": "Cells.CD14+CD16+CD59+"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4724740", "l": "CMV/EBV/ADV/BKV-specific Cytotoxic T Lymphocytes"}, {"i": "NCIT:C150381", "l": "CMV/EBV/ADV/BKV-specific Cytotoxic T Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002123", "l": "B220-low CD38-positive IgG-negative class switched memory B cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1518846", "l": "Paget Cell"}, {"i": "NCIT:C36754", "l": "Paget Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3166858", "l": "Cytoplasmic CD13"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3641120", "l": "Plasmacytoid Dendritic Cell Vaccine"}, {"i": "NCIT:C103192", "l": "Plasmacytoid Dendritic Cell Vaccine"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1441345", "l": "100 spermatozoa"}]} +{"type": "biolink:Cell", "ic": "89.841448125602781", "identifiers": [{"i": "UMLS:C1513944", "l": "Neoplastic Corticotroph Cell"}, {"i": "NCIT:C36920", "l": "Neoplastic Corticotroph Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5168980", "l": "Immature granulocytes | Blood | Hematology and Cell counts"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:2000016", "l": "lung microvascular endothelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333799", "l": "Basket cell erythrocyte"}, {"i": "SNOMEDCT:54244009"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157549", "l": "CD4+CD45RA+CD45RB+CD45RC+ cells | XXX | Cell markers"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002193", "l": "myelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1183498", "l": "Primitive node cell"}]} +{"type": "biolink:Cell", "ic": "78.423603998002051", "identifiers": [{"i": "UMLS:C1709161", "l": "Neoplastic Adenohypophysial Cell"}, {"i": "NCIT:C45963", "l": "Neoplastic Adenohypophysial Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000777", "l": "mesangial phagocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000982", "l": "IgG plasmablast"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1440344", "l": "Cells.CD66b"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0007001", "l": "skeletogenic cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1831954", "l": "Allogeneic Epstein-Barr Virus-Specific Cytotoxic T-Lymphocytes"}, {"i": "NCIT:C62769", "l": "Allogeneic Epstein-Barr Virus-Specific Cytotoxic T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "94.920724062801384", "identifiers": [{"i": "CL:0002224", "l": "lens epithelial cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0001042", "l": "T-helper 22 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0005005", "l": "cyanoblast"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0009034", "l": "dendritic cell of appendix"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2339111", "l": "Type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "UMLS:C1709191", "l": "Neoplastic Parathyroid Gland Clear Cell"}, {"i": "NCIT:C48279", "l": "Neoplastic Parathyroid Gland Clear Cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4329671", "l": "Circulating Tumor-Reactive T-Cell"}, {"i": "NCIT:C131128", "l": "Circulating Tumor-Reactive T-Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2335706", "l": "Interleukin 2-activated natural killer cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2350623", "l": "Retinal Rod Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002577", "l": "placental epithelial cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C5157455", "l": "CD3+CD8+ (T8 suppressor cells) cells | Bone marrow | Cell markers"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3258047", "l": "Pincer cell"}, {"i": "SNOMEDCT:725267005"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002130", "l": "regular interatrial cardiac myocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2330928", "l": "Basal cell of urothelium"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000304", "l": "fibroblast of connective tissue of nonglandular part of prostate"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000302", "l": "fibroblast of papillary layer of dermis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:1000274", "l": "trophectodermal cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "UMLS:C1514054", "l": "Neoplastic Oncocyte"}, {"i": "NCIT:C36941", "l": "Neoplastic Oncocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000216", "l": "Sertoli cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3899816", "l": "CD28CAR/CD137CAR-expressing T-Lymphocytes"}, {"i": "NCIT:C117232", "l": "CD28CAR/CD137CAR-expressing T-Lymphocytes"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000899", "l": "T-helper 17 cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512564", "l": "Hypogranular Promyelocyte"}, {"i": "NCIT:C37074", "l": "Hypogranular Promyelocyte"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496151", "l": "A6 noradrenaline cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0000567", "l": "polymodal nocireceptor"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0333633", "l": "Hemosiderin-laden macrophage"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0682701", "l": "Central neuron"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C3496353", "l": "C1 adrenaline cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1522050", "l": "Granular Adenocarcinoma Cell"}, {"i": "NCIT:C36840", "l": "Granular Adenocarcinoma Cell"}]} +{"type": "biolink:Cell", "ic": "91.94953810872488", "identifiers": [{"i": "CL:0002138", "l": "endothelial cell of lymphatic vessel"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1266873", "l": "Bladder epithelial cell"}, {"i": "SNOMEDCT:115596003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0008011", "l": "skeletal muscle satellite stem cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267959", "l": "Lymphocyte positive for CD66B antigen"}, {"i": "SNOMEDCT:117400003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0002378", "l": "immature Vgamma2-positive fetal thymocyte"}]} +{"type": "biolink:Cell", "ic": "72.270040348674314", "identifiers": [{"i": "UMLS:C1510731", "l": "Abnormal Myeloid Cell"}, {"i": "NCIT:C37042", "l": "Abnormal Myeloid Cell"}]} +{"type": "biolink:Cell", "ic": "81.790986234327661", "identifiers": [{"i": "CL:0001060", "l": "hematopoietic oligopotent progenitor cell, lineage-negative"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1148326", "l": "Cells.CD25"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:0011025", "l": "exhausted T cell"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "CL:4023055", "l": "corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4086923", "l": "Unselected Mononuclear Cell"}, {"i": "NCIT:C124140", "l": "Unselected Mononuclear Cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2327166", "l": "Type D enteroendocrine cell"}]} +{"type": "biolink:Cell", "ic": "71.944304668973928", "identifiers": [{"i": "CL:0001065", "l": "innate lymphoid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1182606", "l": "Granular cell of epidermis"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4763825", "l": "Autologous Anti-PSCA-CAR-4-1BB/TCRzeta-CD19t-expressing T-lymphocytes"}, {"i": "NCIT:C157746", "l": "Autologous Anti-PSCA-CAR-4-1BB/TCRzeta-CD19t-expressing T-lymphocytes"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0229635", "l": "Metamyelocytes"}]} +{"type": "biolink:Cell", "ic": "58.277206549246216", "identifiers": [{"i": "UMLS:C4527316", "l": "Chimeric Antigen Receptor T-cells"}, {"i": "NCIT:C137999", "l": "Chimeric Antigen Receptor T-cells"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C0553712", "l": "Marrow monocytoid cell"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C4518145", "l": "Population of all spermatozoa with duplicate tail in portion of fluid"}, {"i": "SNOMEDCT:725244008"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C1267911", "l": "Lymphocyte positive for both CD34 antigen and HLA-DR antigen"}, {"i": "SNOMEDCT:117581003"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C3829297", "l": "Lenti-D/ABCD1-transduced Autologous Hematopoietic Stem Cells"}, {"i": "NCIT:C111902", "l": "Lenti-D/ABCD1-transduced Autologous Hematopoietic Stem Cells"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1512550", "l": "Hyperchromatic Spindle Cell"}, {"i": "NCIT:C37084", "l": "Hyperchromatic Spindle Cell"}]} +{"type": "biolink:Cell", "ic": "78.047734625335977", "identifiers": [{"i": "CL:0000576", "l": "monocyte"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C4287750", "l": "Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014"}, {"i": "NCIT:C126639", "l": "Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014"}]} +{"type": "biolink:Cell", "identifiers": [{"i": "UMLS:C2322638", "l": "Set of cholinergic cells of globus pallidus [Ch3]"}]} +{"type": "biolink:Cell", "ic": "100", "identifiers": [{"i": "UMLS:C1513976", "l": "Neoplastic Glandular Cell with Enlarged Nucleus and Prominent Nucleolus"}, {"i": "NCIT:C37128", "l": "Neoplastic Glandular Cell with Enlarged Nucleus and Prominent Nucleolus"}]} diff --git a/tests/resources/Cell.sssom.tsv b/tests/resources/Cell.sssom.tsv new file mode 100644 index 0000000..2c3f930 --- /dev/null +++ b/tests/resources/Cell.sssom.tsv @@ -0,0 +1,8501 @@ +subject_id subject_label subject_category predicate_id object_id object_label object_category match_type other +UMLS:C0023516 Leukocytes biolink:Cell skos:exactMatch NCIT:C12529 Leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#0","subject_information_content":82.42859222307153,"identifierIndex":0} +UMLS:C0230522 Mitotic cell in telophase biolink:Cell skos:exactMatch SNOMEDCT:31443005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1","identifierIndex":0} +CL:0002260 epithelial cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002260 epithelial cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2","subject_information_content":83.89907621744979} +UMLS:C0368761 Blast Cell biolink:Cell skos:exactMatch NCIT:C12918 Hematopoietic Blast Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3","subject_information_content":82.42859222307153,"identifierIndex":0} +UMLS:C0368761 Blast Cell biolink:Cell skos:exactMatch SNOMEDCT:312256009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3","subject_information_content":82.42859222307153,"identifierIndex":1} +UMLS:C0225667 Dense-core granulated cell biolink:Cell skos:exactMatch SNOMEDCT:85615000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4","identifierIndex":0} +UMLS:C2339159 Nonkeratinized cell of epithelium of anal column biolink:Cell skos:exactMatch UMLS:C2339159 Nonkeratinized cell of epithelium of anal column biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5"} +CL:1000617 kidney inner medulla cell biolink:Cell skos:exactMatch CL:1000617 kidney inner medulla cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6","subject_information_content":83.1270105625346} +UMLS:C1512902 Interstitial cell of pineal gland biolink:Cell skos:exactMatch NCIT:C32872 Interstitial Cell of the Pineal Gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4727561 Autologous NY-ESO-1-redirected CRISPR-edited T Cells biolink:Cell skos:exactMatch NCIT:C154288 Autologous NY-ESO-1-redirected CRISPR-edited T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8","subject_information_content":100.0,"identifierIndex":0} +CL:0002617 adipocyte of breast biolink:Cell skos:exactMatch CL:0002617 adipocyte of breast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#9","subject_information_content":100.0} +CL:0002454 Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell biolink:Cell skos:exactMatch CL:0002454 Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#10","subject_information_content":85.74066969721673} +CL:0000963 Bm3-delta B cell biolink:Cell skos:exactMatch CL:0000963 Bm3-delta B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#11","subject_information_content":100.0} +UMLS:C1524008 Leukocyte - Natural Killer Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22595 Mouse Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#12","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0005712 Structure of blastomere biolink:Cell skos:exactMatch NCIT:C12518 Blastomere biolink:Cell HumanCurated {"cliqueId":"Cell.txt#13","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0005712 Structure of blastomere biolink:Cell skos:exactMatch MESH:D001757 Blastomeres biolink:Cell HumanCurated {"cliqueId":"Cell.txt#13","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0005712 Structure of blastomere biolink:Cell skos:exactMatch SNOMEDCT:296383004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#13","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0005712 Structure of blastomere biolink:Cell skos:exactMatch SNOMEDCT:367618007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#13","subject_information_content":100.0,"identifierIndex":3} +UMLS:C5180818 Sezary cells | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180818 Sezary cells | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#14"} +UMLS:C1511246 Bone marrow stem cell biolink:Cell skos:exactMatch NCIT:C13456 Bone Marrow Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#15","subject_information_content":80.1558246084581,"identifierIndex":0} +CL:0000447 carbohydrate secreting cell biolink:Cell skos:exactMatch CL:0000447 carbohydrate secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#16","subject_information_content":81.20444558259193} +UMLS:C0677856 autologous lymphocytes biolink:Cell skos:exactMatch NCIT:C12939 Autologous Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#17","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157458 CD3+CD8+ (T8 suppressor cells) cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157458 CD3+CD8+ (T8 suppressor cells) cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#18"} +CL:1001209 inner medulla vasa recta ascending limb cell biolink:Cell skos:exactMatch CL:1001209 inner medulla vasa recta ascending limb cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#19","subject_information_content":100.0} +UMLS:C0369738 Neutrophils.band form biolink:Cell skos:exactMatch UMLS:C0369738 Neutrophils.band form biolink:Cell HumanCurated {"cliqueId":"Cell.txt#20"} +UMLS:C0333841 Hunter-Hurler cell biolink:Cell skos:exactMatch SNOMEDCT:84702007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#21","identifierIndex":0} +UMLS:C1640380 Bone Marrow Stromal Cells biolink:Cell skos:exactMatch UMLS:C1640380 Bone Marrow Stromal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#22"} +CL:0000130 neuron associated cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000130 neuron associated cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#23","subject_information_content":91.94953810872488} +UMLS:C1267942 Lymphocyte positive for CD50 antigen biolink:Cell skos:exactMatch SNOMEDCT:117385006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#24","identifierIndex":0} +CL:0000058 chondroblast biolink:Cell skos:exactMatch CL:0000058 chondroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#25","subject_information_content":100.0} +CL:0000068 duct epithelial cell biolink:Cell skos:exactMatch CL:0000068 duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#26","subject_information_content":73.74052434305256} +UMLS:C0677646 crypt cell biolink:Cell skos:exactMatch UMLS:C0677646 crypt cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#27"} +CL:0019019 tracheobronchial smooth muscle cell biolink:Cell skos:exactMatch CL:0019019 tracheobronchial smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#28","subject_information_content":91.94953810872488} +CL:0000868 lymph node macrophage biolink:Cell skos:exactMatch CL:0000868 lymph node macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#29","subject_information_content":91.94953810872488} +UMLS:C3896758 MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201 biolink:Cell skos:exactMatch NCIT:C114978 MAGE-A4-specific TCR Gene-transduced Autologous T Lymphocytes TBI-1201 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#30","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0596698 heterokaryon biolink:Cell skos:exactMatch UMLS:C0596698 heterokaryon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#31"} +CL:0001024 CD34-positive, CD38-negative hematopoietic stem cell biolink:Cell skos:exactMatch CL:0001024 CD34-positive, CD38-negative hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#32","subject_information_content":100.0} +UMLS:C1522406 interstitial cell biolink:Cell skos:exactMatch NCIT:C32870 Interstitial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#33","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0000327 extracellular matrix secreting cell biolink:Cell skos:exactMatch CL:0000327 extracellular matrix secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#34","subject_information_content":77.69020780594161} +UMLS:C4086900 Therapeutic Dendritic Cells/Cytokine-induced Killer Cells biolink:Cell skos:exactMatch NCIT:C123819 Therapeutic Dendritic Cells/Cytokine-induced Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#35","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216282 Mononuclear cells|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216282 Mononuclear cells|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#36"} +CL:0002494 cardiocyte biolink:Cell skos:exactMatch CL:0002494 cardiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#37","subject_information_content":69.52434437680833} +CL:4023080 stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mus musculus) biolink:Cell skos:exactMatch CL:4023080 stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#38","subject_information_content":100.0} +UMLS:C1183406 Epithelial cell of gut biolink:Cell skos:exactMatch UMLS:C1183406 Epithelial cell of gut biolink:Cell HumanCurated {"cliqueId":"Cell.txt#39"} +UMLS:C0229951 Thymic epithelial cell biolink:Cell skos:exactMatch UMLS:C0229951 Thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#40"} +UMLS:C1267925 Lymphocyte positive for CD43 antigen biolink:Cell skos:exactMatch SNOMEDCT:117369001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#41","identifierIndex":0} +UMLS:C5168976 Immature basophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168976 Immature basophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#42"} +UMLS:C5419454 Autologous CD34+-enriched HSPCs Transduced with VSV-G Encoding IFN-a2 biolink:Cell skos:exactMatch UMLS:C5419454 Autologous CD34+-enriched HSPCs Transduced with VSV-G Encoding IFN-a2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#43"} +CL:1000147 heart valve cell biolink:Cell skos:exactMatch CL:1000147 heart valve cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#44","subject_information_content":100.0} +UMLS:C4725078 Hepatitis B Virus Antigen Peptides/Hepatitis G2 Cell Protein Lysate-activated Dendritic Cells biolink:Cell skos:exactMatch NCIT:C148495 Hepatitis B Virus Antigen Peptides/Hepatitis G2 Cell Protein Lysate-activated Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#45","subject_information_content":100.0,"identifierIndex":0} +CL:0002635 nonkeratinized epithelial cell of anal column biolink:Cell skos:exactMatch CL:0002635 nonkeratinized epithelial cell of anal column biolink:Cell HumanCurated {"cliqueId":"Cell.txt#46","subject_information_content":94.92072406280138} +NCIT:C12555 Connective and Soft Tissue Cell biolink:Cell skos:exactMatch NCIT:C12555 Connective and Soft Tissue Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#47","subject_information_content":71.48133939443346} +UMLS:C1257857 COS-1 Cells biolink:Cell skos:exactMatch UMLS:C1257857 COS-1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#48"} +UMLS:C1710442 Totipotent Primordial Germ Cell biolink:Cell skos:exactMatch NCIT:C45734 Totipotent Primordial Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#49","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517881 Light Cell biolink:Cell skos:exactMatch NCIT:C13148 Light Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#50","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4527256 Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100 biolink:Cell skos:exactMatch NCIT:C137863 Allogeneic CD3- CD19- CD57+ NKG2C+ NK Cells FATE-NK100 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#51","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181293 Ecto-epithelial cell biolink:Cell skos:exactMatch UMLS:C1181293 Ecto-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#52"} +UMLS:C1518176 Malignant Epithelial Giant Cell biolink:Cell skos:exactMatch NCIT:C36824 Malignant Epithelial Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#53","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1708904 Malignant Rhabdomyoblast biolink:Cell skos:exactMatch NCIT:C49198 Malignant Rhabdomyoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#54","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C5170956 Leukocytes other | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170956 Leukocytes other | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#55"} +UMLS:C1517543 Giant Cell with Myoblastic Differentiation biolink:Cell skos:exactMatch NCIT:C36828 Giant Cell with Myoblastic Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#56","subject_information_content":100.0,"identifierIndex":0} +CL:0000738 leukocyte biolink:Cell skos:exactMatch CL:0000738 leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#57","subject_information_content":54.4603076248024} +UMLS:C0206441 Pyramidal Cells biolink:Cell skos:exactMatch UMLS:C0206441 Pyramidal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#58"} +CL:1000618 juxtaglomerular complex cell biolink:Cell skos:exactMatch CL:1000618 juxtaglomerular complex cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#59","subject_information_content":89.84144812560278} +UMLS:C1267935 Lymphocyte positive for CD48 antigen biolink:Cell skos:exactMatch SNOMEDCT:117378007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#60","identifierIndex":0} +CL:0000937 pre-natural killer cell biolink:Cell skos:exactMatch CL:0000937 pre-natural killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#61","subject_information_content":100.0} +UMLS:C1709171 Neoplastic Eosinophilic Precursor biolink:Cell skos:exactMatch NCIT:C43232 Neoplastic Eosinophilic Precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#62","subject_information_content":100.0,"identifierIndex":0} +CL:0000256 uric acid accumulating cell biolink:Cell skos:exactMatch CL:0000256 uric acid accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#63","subject_information_content":100.0} +UMLS:C1518751 Mouse Ovarian Germ Cell biolink:Cell skos:exactMatch NCIT:C22659 Mouse Ovarian Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#64","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12620 Schwann Cell biolink:Cell skos:exactMatch NCIT:C12620 Schwann Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#65","subject_information_content":100.0} +CL:0002252 epithelial cell of esophagus biolink:Cell skos:exactMatch CL:0002252 epithelial cell of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#66","subject_information_content":83.89907621744979} +CL:0002418 hemangioblast biolink:Cell skos:exactMatch CL:0002418 hemangioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#67","subject_information_content":100.0} +UMLS:C1183900 Basal cell of prostatic duct biolink:Cell skos:exactMatch UMLS:C1183900 Basal cell of prostatic duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#68"} +CL:0002130 regular interatrial cardiac myocyte biolink:Cell skos:exactMatch CL:0002130 regular interatrial cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#69","subject_information_content":100.0} +CL:0000318 sweat secreting cell biolink:Cell skos:exactMatch CL:0000318 sweat secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#70","subject_information_content":91.94953810872488} +UMLS:C4241121 Rhombencephalic neural crest cell biolink:Cell skos:exactMatch UMLS:C4241121 Rhombencephalic neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#71"} +UMLS:C0333817 Hyposegmented leukocyte biolink:Cell skos:exactMatch SNOMEDCT:42997003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#72","identifierIndex":0} +UMLS:C1955257 Erythrocytes.fresh biolink:Cell skos:exactMatch UMLS:C1955257 Erythrocytes.fresh biolink:Cell HumanCurated {"cliqueId":"Cell.txt#73"} +UMLS:C1522260 Connective Tissue - Fibroblasts (MMHCC) biolink:Cell skos:exactMatch NCIT:C22700 Mouse Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#74","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4322559 Set of antigen-presenting cells biolink:Cell skos:exactMatch UMLS:C4322559 Set of antigen-presenting cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#75"} +UMLS:C1518307 Neutrophil with Cytoplasmic Hypogranularity biolink:Cell skos:exactMatch NCIT:C37174 Neutrophil with Cytoplasmic Hypogranularity biolink:Cell HumanCurated {"cliqueId":"Cell.txt#76","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5178309 Promyelocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178309 Promyelocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#77"} +CL:0000523 mononuclear cytotrophoblast cell biolink:Cell skos:exactMatch CL:0000523 mononuclear cytotrophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#78","subject_information_content":100.0} +UMLS:C4300401 Cells.chromosome region 7q31 biolink:Cell skos:exactMatch UMLS:C4300401 Cells.chromosome region 7q31 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#79"} +UMLS:C0228076 Primitive neuroblastic cell biolink:Cell skos:exactMatch SNOMEDCT:20367003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#80","identifierIndex":0} +UMLS:C0229952 Thymic reticulum cell biolink:Cell skos:exactMatch SNOMEDCT:50482005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#81","identifierIndex":0} +UMLS:C5167384 Histiocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5167384 Histiocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#82"} +UMLS:C1706983 Bone Marrow Stem Cell with Some Commitment to Monocytic Differentiation biolink:Cell skos:exactMatch NCIT:C42780 Bone Marrow Stem Cell with Some Commitment to Monocytic Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#83","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4511593 Population of all immature reticulocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725998003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#84","identifierIndex":0} +UMLS:C1882059 Neoplastic Sex Cord-Stromal Cell Resembling Steroid Hormone-Secreting Cell biolink:Cell skos:exactMatch NCIT:C61450 Neoplastic Sex Cord-Stromal Cell Resembling Steroid Hormone-Secreting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#85","subject_information_content":100.0,"identifierIndex":0} +CL:0001010 mature dermal dendritic cell biolink:Cell skos:exactMatch CL:0001010 mature dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#86","subject_information_content":91.94953810872488} +UMLS:C2936598 Pancreatic Stellate Cells biolink:Cell skos:exactMatch NCIT:C107531 Pancreatic Stellate Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#87","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5155101 Bizarre platelets | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155101 Bizarre platelets | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#88"} +UMLS:C2936598 Pancreatic Stellate Cells biolink:Cell skos:exactMatch MESH:D058954 Pancreatic Stellate Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#87","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5177621 Platelets | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177621 Platelets | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#89"} +CL:0002505 liver CD103-negative dendritic cell biolink:Cell skos:exactMatch CL:0002505 liver CD103-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#90","subject_information_content":100.0} +UMLS:C1709541 Piloid Astrocyte biolink:Cell skos:exactMatch NCIT:C45857 Piloid Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#91","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5178284 Prolymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178284 Prolymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#93"} +UMLS:C2326632 Fibroblast of connective tissue of prostate biolink:Cell skos:exactMatch UMLS:C2326632 Fibroblast of connective tissue of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#94"} +UMLS:C1514033 Neoplastic Muscle Cell biolink:Cell skos:exactMatch NCIT:C36936 Neoplastic Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#95","subject_information_content":75.5821178228195,"identifierIndex":0} +UMLS:C1267951 Lymphocyte positive for CD59 antigen biolink:Cell skos:exactMatch SNOMEDCT:117392001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#96","identifierIndex":0} +CL:0000172 somatostatin secreting cell biolink:Cell skos:exactMatch CL:0000172 somatostatin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#97","subject_information_content":86.87026217152628} +CL:1000721 kidney papillary duct principal cell biolink:Cell skos:exactMatch CL:1000721 kidney papillary duct principal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#98","subject_information_content":100.0} +UMLS:C1182803 Epithelial cell of exocrine pancreas biolink:Cell skos:exactMatch UMLS:C1182803 Epithelial cell of exocrine pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#99"} +UMLS:C2717959 Induced Pluripotent Stem Cells biolink:Cell skos:exactMatch NCIT:C124144 Induced Pluripotent Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#100","subject_information_content":100.0,"identifierIndex":0} +CL:0019002 tracheobronchial chondrocyte biolink:Cell skos:exactMatch CL:0019002 tracheobronchial chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#101","subject_information_content":100.0} +CL:0000383 nephrogenic mesenchyme stem cell biolink:Cell skos:exactMatch CL:0000383 nephrogenic mesenchyme stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#102","subject_information_content":100.0} +UMLS:C1507176 Cells.CD4+CD95+ biolink:Cell skos:exactMatch UMLS:C1507176 Cells.CD4+CD95+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#103"} +CL:0000922 type II NK T cell biolink:Cell skos:exactMatch CL:0000922 type II NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#92","subject_information_content":89.84144812560278} +UMLS:C5157301 CD135 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157301 CD135 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#104"} +UMLS:C5173468 Monocytes+Macrophages | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173468 Monocytes+Macrophages | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#105"} +UMLS:C5163552 Epithelial cells.renal | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163552 Epithelial cells.renal | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#106"} +UMLS:C5157393 CD22 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157393 CD22 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#107"} +UMLS:C2717959 Induced Pluripotent Stem Cells biolink:Cell skos:exactMatch MESH:D057026 Induced Pluripotent Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#100","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1513973 Neoplastic Glandular Cell biolink:Cell skos:exactMatch NCIT:C36763 Neoplastic Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#108","subject_information_content":65.48928698272745,"identifierIndex":0} +CL:1000891 kidney arterial blood vessel cell biolink:Cell skos:exactMatch CL:1000891 kidney arterial blood vessel cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#109","subject_information_content":79.68289625120555} +UMLS:C1514010 Neoplastic Lobular Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36878 Neoplastic Lobular Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#110","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2331996 Gastric goblet cell biolink:Cell skos:exactMatch UMLS:C2331996 Gastric goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#111"} +UMLS:C5157529 CD3-CD57+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157529 CD3-CD57+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#112"} +CL:0001075 KLRG1-positive innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001075 KLRG1-positive innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#113","subject_information_content":100.0} +UMLS:C5174861 Nonhematic cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174861 Nonhematic cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#114"} +UMLS:C5447544 Autologous Gene-modified Gamma Delta T-cells biolink:Cell skos:exactMatch NCIT:C176993 Autologous Gene-modified Gamma Delta T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#115","subject_information_content":100.0,"identifierIndex":0} +CL:0002124 CD27-positive gamma-delta T cell biolink:Cell skos:exactMatch CL:0002124 CD27-positive gamma-delta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#117","subject_information_content":100.0} +UMLS:C0229543 Pituitary hypertrophic amphophil cell biolink:Cell skos:exactMatch SNOMEDCT:63926000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#118","identifierIndex":0} +UMLS:C4727694 Autologous Anti-Claudin18.2-transduced T Lymphocytes CT041 biolink:Cell skos:exactMatch NCIT:C150382 Autologous Anti-Claudin18.2-transduced T Lymphocytes CT041 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#116","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513964 Neoplastic Fasciculata Cell biolink:Cell skos:exactMatch NCIT:C36926 Neoplastic Fasciculata Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#119","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2349679 Atypical cervical glandular cells NOS biolink:Cell skos:exactMatch UMLS:C2349679 Atypical cervical glandular cells NOS biolink:Cell HumanCurated {"cliqueId":"Cell.txt#120"} +UMLS:C1708859 Malignant Acantholytic Squamous Cell biolink:Cell skos:exactMatch NCIT:C54236 Malignant Acantholytic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#121","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177620 Platelets | Dialysis fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177620 Platelets | Dialysis fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#122"} +CL:0000050 megakaryocyte-erythroid progenitor cell biolink:Cell skos:exactMatch CL:0000050 megakaryocyte-erythroid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#123","subject_information_content":91.94953810872488} +CL:0000395 procrystal cell biolink:Cell skos:exactMatch CL:0000395 procrystal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#124","subject_information_content":100.0} +UMLS:C2325383 Border cell of cochlea biolink:Cell skos:exactMatch UMLS:C2325383 Border cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#125"} +CL:0007011 enteric neuron biolink:Cell skos:exactMatch CL:0007011 enteric neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#126","subject_information_content":100.0} +UMLS:C4288083 Type-1 Polarized Dendritic Cell-induced Antigen-specific Autologous Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C128892 Type-1 Polarized Dendritic Cell-induced Antigen-specific Autologous Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#127","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4289001 HPV-16 E7 TCR Expressing T-cells biolink:Cell skos:exactMatch NCIT:C128485 HPV-16 E7 TCR Expressing T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#128","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440280 Cells.CD3+CD38+ biolink:Cell skos:exactMatch UMLS:C1440280 Cells.CD3+CD38+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#129"} +CL:1000452 parietal epithelial cell biolink:Cell skos:exactMatch CL:1000452 parietal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#130","subject_information_content":100.0} +UMLS:C0682517 animal cell line biolink:Cell skos:exactMatch UMLS:C0682517 animal cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#131"} +UMLS:C1514273 Postgerminal Center Marginal Zone B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38334 Postgerminal Center Marginal Zone B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#132","subject_information_content":100.0,"identifierIndex":0} +CL:0002108 CD38-negative IgG memory B cell biolink:Cell skos:exactMatch CL:0002108 CD38-negative IgG memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#133","subject_information_content":100.0} +UMLS:C1515151 TE33 biolink:Cell skos:exactMatch NCIT:C20298 TE33 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#134","subject_information_content":100.0,"identifierIndex":0} +CL:0000752 cone retinal bipolar cell biolink:Cell skos:exactMatch CL:0000752 cone retinal bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#135","subject_information_content":83.1270105625346} +MESH:D004847 Epithelial Cells biolink:Cell skos:exactMatch MESH:D004847 Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#136"} +CL:0000380 thecogen cell biolink:Cell skos:exactMatch CL:0000380 thecogen cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#137","subject_information_content":100.0} +UMLS:C1267869 Lymphocyte positive for both CD11C antigen and CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:116847007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#138","identifierIndex":0} +CL:0000586 germ cell biolink:Cell skos:exactMatch CL:0000586 germ cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#139","subject_information_content":74.37813033179641} +CL:0002536 epithelial cell of amnion biolink:Cell skos:exactMatch CL:0002536 epithelial cell of amnion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#140","subject_information_content":100.0} +UMLS:C1525455 Cells.CD33+CD34+ biolink:Cell skos:exactMatch UMLS:C1525455 Cells.CD33+CD34+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#141"} +UMLS:C1515078 Supporting Cell of the Nervous System biolink:Cell skos:exactMatch NCIT:C33704 Supporting Cell of the Nervous System biolink:Cell HumanCurated {"cliqueId":"Cell.txt#143","subject_information_content":80.1558246084581,"identifierIndex":0} +UMLS:C5421208 Allogeneic CD8+ Memory T-cells biolink:Cell skos:exactMatch NCIT:C175211 Allogeneic CD8+ Memory T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#144","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0883475 Cells.CD5+CD25+ biolink:Cell skos:exactMatch UMLS:C0883475 Cells.CD5+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#145"} +UMLS:C2340284 Differentiated hemal cell biolink:Cell skos:exactMatch UMLS:C2340284 Differentiated hemal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#146"} +UMLS:C1183500 Endodermal cell biolink:Cell skos:exactMatch NCIT:C33932 Endoderm Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#142","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0027884 Neurons, Efferent biolink:Cell skos:exactMatch NCIT:C12643 Efferent Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#147","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C0027884 Neurons, Efferent biolink:Cell skos:exactMatch NCIT:C12644 Motor Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#147","subject_information_content":88.2062864997332,"identifierIndex":1} +UMLS:C0027884 Neurons, Efferent biolink:Cell skos:exactMatch MESH:D009476 Neurons, Efferent biolink:Cell HumanCurated {"cliqueId":"Cell.txt#147","subject_information_content":88.2062864997332,"identifierIndex":2} +UMLS:C1513985 Neoplastic Histiocyte-Like Cell biolink:Cell skos:exactMatch NCIT:C36961 Neoplastic Histiocyte-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#148","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1882049 Neoplastic Epithelial Large Polygonal Cell biolink:Cell skos:exactMatch NCIT:C61000 Neoplastic Epithelial Large Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#149","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5418966 Anti-CD37-CAR-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C171034 Anti-CD37-CAR-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#150","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3897252 Umbilical Cord Blood-derived Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C118949 Umbilical Cord Blood-derived Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#151","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0085080 Chinese Hamster Ovary Cell biolink:Cell skos:exactMatch NCIT:C17421 CHO Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#152","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0085080 Chinese Hamster Ovary Cell biolink:Cell skos:exactMatch MESH:D016466 CHO Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#152","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4740202 Cells.CD14-FLAER- biolink:Cell skos:exactMatch UMLS:C4740202 Cells.CD14-FLAER- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#153"} +UMLS:C1517530 Mouse Germ Cell biolink:Cell skos:exactMatch NCIT:C24193 Mouse Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#154","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0483191 cd4 and cd8+ biolink:Cell skos:exactMatch UMLS:C0483191 cd4 and cd8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#155"} +UMLS:C1979672 Cells.CD4+CD7- biolink:Cell skos:exactMatch UMLS:C1979672 Cells.CD4+CD7- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#156"} +UMLS:C1440268 CD19+Lambda+ cell biolink:Cell skos:exactMatch SNOMEDCT:732278001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#157","identifierIndex":0} +UMLS:C5163454 Eosinophils/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163454 Eosinophils/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#158"} +UMLS:C2334670 Tracheal goblet cell biolink:Cell skos:exactMatch UMLS:C2334670 Tracheal goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#159"} +UMLS:C3273000 Allogeneic CD56-positive CD3-negative Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C96741 Allogeneic CD56-positive CD3-negative Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#160","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440235 Cell positive for CD103 antigen biolink:Cell skos:exactMatch SNOMEDCT:725327006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#161","identifierIndex":0} +CL:2000065 ovarian microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000065 ovarian microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#162","subject_information_content":100.0} +UMLS:C0427527 Cleft lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:134202006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#163","identifierIndex":0} +CL:1001100 kidney efferent arteriole smooth muscle cell biolink:Cell skos:exactMatch CL:1001100 kidney efferent arteriole smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#164","subject_information_content":100.0} +UMLS:C1179876 Myocardial endocrine cell biolink:Cell skos:exactMatch UMLS:C1179876 Myocardial endocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#165"} +CL:0002083 type I cell of adrenal medulla biolink:Cell skos:exactMatch CL:0002083 type I cell of adrenal medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#166","subject_information_content":100.0} +CL:1001502 mitral cell biolink:Cell skos:exactMatch CL:1001502 mitral cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#167","subject_information_content":100.0} +CL:4023114 calyx vestibular afferent neuron biolink:Cell skos:exactMatch CL:4023114 calyx vestibular afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#168"} +CL:0000474 pericardial nephrocyte biolink:Cell skos:exactMatch CL:0000474 pericardial nephrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#169","subject_information_content":100.0} +UMLS:C1267992 Lymphocyte positive for CD106 antigen biolink:Cell skos:exactMatch SNOMEDCT:117432003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#170","identifierIndex":0} +UMLS:C2337923 Purkinje myocyte of atrioventricular node biolink:Cell skos:exactMatch UMLS:C2337923 Purkinje myocyte of atrioventricular node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#171"} +UMLS:C2323406 Mononuclear cytotrophoblast cell biolink:Cell skos:exactMatch UMLS:C2323406 Mononuclear cytotrophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#172"} +UMLS:C5173430 Monocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173430 Monocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#173"} +UMLS:C5173437 Monocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173437 Monocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#175"} +UMLS:C1522151 Leukocyte - Lymphocyte - Thymocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22583 Mouse Thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#176","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333767 Lobulated fibers biolink:Cell skos:exactMatch SNOMEDCT:62655004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#174","identifierIndex":0} +UMLS:C1709210 Neoplastic Vacuolated Stromal Cell biolink:Cell skos:exactMatch NCIT:C54090 Neoplastic Vacuolated Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#177","subject_information_content":100.0,"identifierIndex":0} +CL:0000200 touch receptor cell biolink:Cell skos:exactMatch CL:0000200 touch receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#178","subject_information_content":100.0} +UMLS:C5163741 Erythrocytes.dysmorphic | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163741 Erythrocytes.dysmorphic | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#179"} +UMLS:C5157374 CD2+CD26+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157374 CD2+CD26+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#180"} +UMLS:C1267815 Lymphocyte positive for both CD2 antigen and CD26 antigen biolink:Cell skos:exactMatch SNOMEDCT:117518002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#181","identifierIndex":0} +UMLS:C4484158 Cells.chromosome 3 monosomy biolink:Cell skos:exactMatch UMLS:C4484158 Cells.chromosome 3 monosomy biolink:Cell HumanCurated {"cliqueId":"Cell.txt#182"} +UMLS:C1519377 Neoplastic Small Lymphocyte with Clumped Chromatin biolink:Cell skos:exactMatch NCIT:C36999 Neoplastic Small Lymphocyte with Clumped Chromatin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#183","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:2000067 cardiac atrium fibroblast biolink:Cell skos:exactMatch CL:2000067 cardiac atrium fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#184","subject_information_content":100.0} +CL:0008010 cranial somatomotor neuron biolink:Cell skos:exactMatch CL:0008010 cranial somatomotor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#185","subject_information_content":100.0} +MESH:D050199 Podocytes biolink:Cell skos:exactMatch MESH:D050199 Podocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#186"} +UMLS:C4524846 Vadacabtagene Leraleucel biolink:Cell skos:exactMatch NCIT:C133718 Vadacabtagene Leraleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#187","subject_information_content":100.0,"identifierIndex":0} +CL:0000449 brown fat cell biolink:Cell skos:exactMatch CL:0000449 brown fat cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#188","subject_information_content":100.0} +NCIT:C32210 Bladder Urothelial Cell biolink:Cell skos:exactMatch NCIT:C32210 Bladder Urothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#189","subject_information_content":100.0} +CL:0002216 intermediate muscle cell biolink:Cell skos:exactMatch CL:0002216 intermediate muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#190","subject_information_content":100.0} +UMLS:C0206116 Microglia biolink:Cell skos:exactMatch NCIT:C12616 Microglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#191","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0206116 Microglia biolink:Cell skos:exactMatch MESH:D017628 Microglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#191","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C0206116 Microglia biolink:Cell skos:exactMatch SNOMEDCT:63483002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#191","subject_information_content":94.92072406280138,"identifierIndex":2} +CL:4023083 chandelier cell biolink:Cell skos:exactMatch CL:4023083 chandelier cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#192","subject_information_content":94.92072406280138} +UMLS:C2936498 Embryoid Bodies biolink:Cell skos:exactMatch MESH:D058732 Embryoid Bodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#193","identifierIndex":0} +CL:4023116 type 2 spiral ganglion neuron biolink:Cell skos:exactMatch CL:4023116 type 2 spiral ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#194"} +UMLS:C1268007 Myeloid precursor cell biolink:Cell skos:exactMatch SNOMEDCT:127914007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#195","identifierIndex":0} +CL:1000290 myocyte of middle internodal tract biolink:Cell skos:exactMatch CL:1000290 myocyte of middle internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#196","subject_information_content":100.0} +MESH:D008264 Macrophages biolink:Cell skos:exactMatch MESH:D008264 Macrophages biolink:Cell HumanCurated {"cliqueId":"Cell.txt#197"} +CL:0000211 electrically active cell biolink:Cell skos:exactMatch CL:0000211 electrically active cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#198","subject_information_content":54.63832073987564} +UMLS:C0029418 Osteoblasts biolink:Cell skos:exactMatch NCIT:C12568 Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#199","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0029418 Osteoblasts biolink:Cell skos:exactMatch MESH:D010006 Osteoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#199","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C0029418 Osteoblasts biolink:Cell skos:exactMatch SNOMEDCT:48156001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#199","subject_information_content":94.92072406280138,"identifierIndex":2} +UMLS:C0427567 Microthrombocyte biolink:Cell skos:exactMatch SNOMEDCT:250316002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#200","identifierIndex":0} +UMLS:C1440240 Cells.CD107b biolink:Cell skos:exactMatch UMLS:C1440240 Cells.CD107b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#201"} +CL:0000849 crypt olfactory receptor neuron biolink:Cell skos:exactMatch CL:0000849 crypt olfactory receptor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#202","subject_information_content":100.0} +CL:0000619 supporting cell (sensu Nematoda) biolink:Cell skos:exactMatch CL:0000619 supporting cell (sensu Nematoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#203","subject_information_content":91.94953810872488} +UMLS:C1179124 Type I taste bud cell biolink:Cell skos:exactMatch UMLS:C1179124 Type I taste bud cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#204"} +UMLS:C2332462 Basket cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2332462 Basket cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#205"} +UMLS:C5157549 CD4+CD45RA+CD45RB+CD45RC+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157549 CD4+CD45RA+CD45RB+CD45RC+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#206"} +UMLS:C4745321 Young Autologous Tumor-infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C156481 Young Autologous Tumor-infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#207","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5186857 Nucleated erythrocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186857 Nucleated erythrocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#208"} +UMLS:C5236007 FT516 biolink:Cell skos:exactMatch NCIT:C164140 iPSC-derived CD16-expressing Natural Killer Cells FT516 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#209","subject_information_content":100.0,"identifierIndex":0} +CL:0002319 neural cell biolink:Cell skos:exactMatch CL:0002319 neural cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#210","subject_information_content":55.950358643372745} +UMLS:C1257743 3T3-L1 Cells biolink:Cell skos:exactMatch MESH:D041721 3T3-L1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#211","identifierIndex":0} +UMLS:C5177616 Platelets | Blood capillary | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177616 Platelets | Blood capillary | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#212"} +UMLS:C0546494 P.B. eosinophilic metamyelocyte biolink:Cell skos:exactMatch UMLS:C0546494 P.B. eosinophilic metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#213"} +CL:0000977 IgG short lived plasma cell biolink:Cell skos:exactMatch CL:0000977 IgG short lived plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#214","subject_information_content":100.0} +CL:0002027 CD9-positive, CD41-positive megakaryocyte cell biolink:Cell skos:exactMatch CL:0002027 CD9-positive, CD41-positive megakaryocyte cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#215","subject_information_content":100.0} +UMLS:C1708882 Malignant Histiocyte-Like Cell biolink:Cell skos:exactMatch NCIT:C49051 Malignant Histiocyte-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#216","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267832 Lymphocyte positive for both CD3 antigen and CD69 antigen biolink:Cell skos:exactMatch SNOMEDCT:117523002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#217","identifierIndex":0} +UMLS:C5155167 Blasts | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155167 Blasts | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#218"} +UMLS:C3641004 Apoptotic Autologous Tumor Cells-pulsed Alpha-type-1 Polarized Dendritic Cells biolink:Cell skos:exactMatch NCIT:C102978 Apoptotic Autologous Tumor Cells-pulsed Alpha-type-1 Polarized Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#219","subject_information_content":100.0,"identifierIndex":0} +CL:0002598 bronchial smooth muscle cell biolink:Cell skos:exactMatch CL:0002598 bronchial smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#220","subject_information_content":100.0} +UMLS:C5170917 Leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170917 Leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#221"} +CL:0019020 extrahepatic cholangiocyte biolink:Cell skos:exactMatch CL:0019020 extrahepatic cholangiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#222","subject_information_content":100.0} +UMLS:C4300404 Cells.chromosome region 17p13.1 deletion biolink:Cell skos:exactMatch UMLS:C4300404 Cells.chromosome region 17p13.1 deletion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#223"} +UMLS:C1267823 T lymphocyte positive for both CD4 antigen and CD29 antigen biolink:Cell skos:exactMatch SNOMEDCT:115401003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#224","identifierIndex":0} +MESH:D007962 Leukocytes biolink:Cell skos:exactMatch MESH:D007962 Leukocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#226"} +UMLS:C1512505 Breast Cancer Cell biolink:Cell skos:exactMatch NCIT:C12959 Breast Cancer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#227","subject_information_content":100.0,"identifierIndex":0} +CL:0000936 early lymphoid progenitor biolink:Cell skos:exactMatch CL:0000936 early lymphoid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#228","subject_information_content":100.0} +NCIT:C115217 Mucosal-Associated Invariant T-Cell biolink:Cell skos:exactMatch NCIT:C115217 Mucosal-Associated Invariant T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#229","subject_information_content":100.0} +UMLS:C5168979 Immature eosinophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168979 Immature eosinophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#230"} +UMLS:C5177457 Plasma cells immature | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177457 Plasma cells immature | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#231"} +UMLS:C5178300 Promonocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178300 Promonocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#225"} +CL:0002668 type 4 otic fibrocyte biolink:Cell skos:exactMatch CL:0002668 type 4 otic fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#232","subject_information_content":100.0} +UMLS:C1254876 Polychromic Normoblast biolink:Cell skos:exactMatch UMLS:C1254876 Polychromic Normoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#233"} +CL:0002642 epithelial cell of esophageal cardiac gland biolink:Cell skos:exactMatch CL:0002642 epithelial cell of esophageal cardiac gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#234","subject_information_content":100.0} +UMLS:C5166243 Hairy cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166243 Hairy cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#235"} +UMLS:C1510985 Autologous Tumor Cell biolink:Cell skos:exactMatch NCIT:C12940 Autologous Tumor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#236","subject_information_content":100.0,"identifierIndex":0} +CL:0005026 hepatoblast biolink:Cell skos:exactMatch CL:0005026 hepatoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#237","subject_information_content":100.0} +UMLS:C5238364 Partially Engineered T-regulatory Cell Donor Graft TRGFT-201 biolink:Cell skos:exactMatch NCIT:C167207 Partially Engineered T-regulatory Cell Donor Graft TRGFT-201 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#238","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177477 Plasma cells/100 leukocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177477 Plasma cells/100 leukocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#239"} +CL:0000988 hematopoietic cell biolink:Cell skos:exactMatch CL:0000988 hematopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#240","subject_information_content":52.69729769927708} +CL:1000337 enterocyte of epithelium of duodenal gland biolink:Cell skos:exactMatch CL:1000337 enterocyte of epithelium of duodenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#241","subject_information_content":100.0} +UMLS:C3652636 technetium (99mTc) exametazime labelled cells biolink:Cell skos:exactMatch UMLS:C3652636 technetium (99mTc) exametazime labelled cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#242"} +CL:0019018 blood vessel smooth muscle cell biolink:Cell skos:exactMatch CL:0019018 blood vessel smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#243","subject_information_content":78.04773462533598} +UMLS:C2325536 H III cell of retina biolink:Cell skos:exactMatch UMLS:C2325536 H III cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#244"} +UMLS:C4042840 RAW 264.7 Cells biolink:Cell skos:exactMatch MESH:D000067996 RAW 264.7 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#245","identifierIndex":0} +UMLS:C5163442 Eosinophils | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163442 Eosinophils | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#246"} +UMLS:C0945923 Cells.CD21 biolink:Cell skos:exactMatch UMLS:C0945923 Cells.CD21 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#247"} +NCIT:C12589 Keratinocyte biolink:Cell skos:exactMatch NCIT:C12589 Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#248","subject_information_content":100.0} +UMLS:C5446546 Autologous Anti-CD19 CAR-4-1BB-CD3zeta-expressing T-cells CNCT19 biolink:Cell skos:exactMatch NCIT:C175465 Autologous Anti-CD19 CAR-4-1BB-CD3zeta-expressing T-cells CNCT19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#249","subject_information_content":100.0,"identifierIndex":0} +CL:0000973 IgA memory B cell biolink:Cell skos:exactMatch CL:0000973 IgA memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#250","subject_information_content":100.0} +UMLS:C5401591 NKG2D-ACE2 CAR-NK Cell biolink:Cell skos:exactMatch UMLS:C5401591 NKG2D-ACE2 CAR-NK Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#251"} +UMLS:C1511464 CY30 biolink:Cell skos:exactMatch NCIT:C20238 CY30 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#252","subject_information_content":100.0,"identifierIndex":0} +CL:0000984 IgA plasmablast biolink:Cell skos:exactMatch CL:0000984 IgA plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#253","subject_information_content":100.0} +CL:0002349 CD27-high, CD11b-low natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002349 CD27-high, CD11b-low natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#254","subject_information_content":100.0} +UMLS:C2337543 Paneth cell of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell skos:exactMatch UMLS:C2337543 Paneth cell of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#255"} +CL:0011110 histaminergic neuron biolink:Cell skos:exactMatch CL:0011110 histaminergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#256","subject_information_content":100.0} +UMLS:C1440275 Cells.CD26 biolink:Cell skos:exactMatch UMLS:C1440275 Cells.CD26 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#257"} +UMLS:C5163235 Elliptocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163235 Elliptocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#258"} +UMLS:C5235893 Bone Marrow-Derived Mononuclear Cells biolink:Cell skos:exactMatch NCIT:C164011 Bone Marrow-Derived Mononuclear Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#259","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516091 Atypical Ductal Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36883 Atypical Ductal Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#260","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0228092 Ependymal cell biolink:Cell skos:exactMatch NCIT:C13003 Ependymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#261","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0228092 Ependymal cell biolink:Cell skos:exactMatch SNOMEDCT:46940003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#261","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:0000850 serotonergic neuron biolink:Cell skos:exactMatch CL:0000850 serotonergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#262","subject_information_content":100.0} +UMLS:C2328697 Hemal cell biolink:Cell skos:exactMatch UMLS:C2328697 Hemal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#263"} +CL:0000704 endothelial tip cell biolink:Cell skos:exactMatch CL:0000704 endothelial tip cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#264","subject_information_content":100.0} +UMLS:C1881597 Malignant Spindle Transitional Cell biolink:Cell skos:exactMatch NCIT:C60303 Malignant Spindle Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#265","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3828708 Oncolytic Adenovirus ICOVIR5-infected Autologous Mesenchymal Stem Cells biolink:Cell skos:exactMatch NCIT:C107160 Oncolytic Adenovirus ICOVIR5-infected Autologous Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#266","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4740198 BAFF-R Cells biolink:Cell skos:exactMatch UMLS:C4740198 BAFF-R Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#267"} +UMLS:C1519602 Activated Skin-Homing T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39686 Activated Skin-Homing T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#268","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1710695 Xanthomatous Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49081 Xanthomatous Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#269","subject_information_content":100.0,"identifierIndex":0} +CL:2000079 mesenchymal stem cell of femoral bone marrow biolink:Cell skos:exactMatch CL:2000079 mesenchymal stem cell of femoral bone marrow biolink:Cell HumanCurated {"cliqueId":"Cell.txt#270","subject_information_content":100.0} +CL:1000283 smooth muscle fiber of transverse colon biolink:Cell skos:exactMatch CL:1000283 smooth muscle fiber of transverse colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#271","subject_information_content":100.0} +UMLS:C4510905 Blast cell positive for CD16 antigen biolink:Cell skos:exactMatch SNOMEDCT:724250006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#272","identifierIndex":0} +UMLS:C4511162 Blast cell positive for cytoplasmic CD22 antigen biolink:Cell skos:exactMatch SNOMEDCT:725482003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#273","identifierIndex":0} +CL:2000052 umbilical artery endothelial cell biolink:Cell skos:exactMatch CL:2000052 umbilical artery endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#274","subject_information_content":100.0} +UMLS:C2326796 Chromophil cell of pars distalis of adenohypophysis biolink:Cell skos:exactMatch UMLS:C2326796 Chromophil cell of pars distalis of adenohypophysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#275"} +UMLS:C1522173 CNS - Brain - Astrocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22607 Mouse Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#276","subject_information_content":100.0,"identifierIndex":0} +CL:1000979 ureter smooth muscle cell biolink:Cell skos:exactMatch CL:1000979 ureter smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#277","subject_information_content":100.0} +UMLS:C1440354 Cells.CD77 biolink:Cell skos:exactMatch UMLS:C1440354 Cells.CD77 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#278"} +UMLS:C1513124 Meningothelial Cell with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C37160 Meningothelial Cell with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#279","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516696 Collecting Cell biolink:Cell skos:exactMatch NCIT:C32343 Collecting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#280","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0314584 Blast colony-forming unit biolink:Cell skos:exactMatch SNOMEDCT:445113006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#281","identifierIndex":0} +CL:4023009 extratelencephalic-projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023009 extratelencephalic-projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#282","subject_information_content":89.84144812560278} +UMLS:C1440264 Cells.CD18 biolink:Cell skos:exactMatch UMLS:C1440264 Cells.CD18 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#283"} +UMLS:C1518858 Pale Brown Fat Cell biolink:Cell skos:exactMatch NCIT:C36970 Pale Brown Fat Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#284","subject_information_content":100.0,"identifierIndex":0} +CL:0001061 abnormal cell biolink:Cell skos:exactMatch CL:0001061 abnormal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#285","subject_information_content":89.84144812560278} +UMLS:C5174641 Neutrophils.hypogranulated | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174641 Neutrophils.hypogranulated | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#286"} +CL:0002278 GIP cell biolink:Cell skos:exactMatch CL:0002278 GIP cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#287","subject_information_content":100.0} +UMLS:C2332843 Enterocyte of epithelium of small intestine biolink:Cell skos:exactMatch UMLS:C2332843 Enterocyte of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#288"} +UMLS:C5157456 CD3+CD8+ (T8 suppressor cells) cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157456 CD3+CD8+ (T8 suppressor cells) cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#290"} +CL:0002286 type II taste cell biolink:Cell skos:exactMatch CL:0002286 type II taste cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#291","subject_information_content":100.0} +UMLS:C1267851 Lymphoblast positive for CD7 antigen biolink:Cell skos:exactMatch SNOMEDCT:117537006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#292","identifierIndex":0} +UMLS:C0882784 Cell positive for CD11C antigen biolink:Cell skos:exactMatch SNOMEDCT:116750001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#293","identifierIndex":0} +UMLS:C5382904 HLA-A1 CMV specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382904 HLA-A1 CMV specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#294"} +UMLS:C5157683 CD8-CD57+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157683 CD8-CD57+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#295"} +UMLS:C5400891 AV-COVID-19 biolink:Cell skos:exactMatch NCIT:C173019 Autologous Dendritic Cells Loaded with SARS-CoV-2 Antigens AV-COVID-19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#296","subject_information_content":100.0,"identifierIndex":0} +CL:1000500 kidney interstitial cell biolink:Cell skos:exactMatch CL:1000500 kidney interstitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#297","subject_information_content":79.68289625120555} +CL:0002296 type-4 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002296 type-4 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#298","subject_information_content":100.0} +UMLS:C1708978 Melanoma Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell skos:exactMatch NCIT:C48814 Melanoma Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#300","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3177154 Mononuclear+Mesothelial cells biolink:Cell skos:exactMatch UMLS:C3177154 Mononuclear+Mesothelial cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#301"} +UMLS:C0949432 TC2 Cells biolink:Cell skos:exactMatch UMLS:C0949432 TC2 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#289"} +UMLS:C0229656 Promonocyte biolink:Cell skos:exactMatch NCIT:C13121 Promonocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#302","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229656 Promonocyte biolink:Cell skos:exactMatch SNOMEDCT:1075005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#302","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1181535 Chromaffin cell of paraaortic body biolink:Cell skos:exactMatch UMLS:C1181535 Chromaffin cell of paraaortic body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#303"} +UMLS:C4745003 Autologous Anti-BCMA-CAR-mRNA-transfected CD8+ T-lymphocytes biolink:Cell skos:exactMatch NCIT:C156706 Autologous Anti-BCMA-CAR-mRNA-transfected CD8+ T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#304","subject_information_content":100.0,"identifierIndex":0} +CL:0002658 glandular cell of the large intestine biolink:Cell skos:exactMatch CL:0002658 glandular cell of the large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#305","subject_information_content":79.68289625120555} +UMLS:C0682538 intact cell biolink:Cell skos:exactMatch UMLS:C0682538 intact cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#306"} +CL:0002234 basal cell of prostatic acinus biolink:Cell skos:exactMatch CL:0002234 basal cell of prostatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#307","subject_information_content":100.0} +UMLS:C5426634 Cells.CD3-CD14-CD19+CD45+DOCK8+ biolink:Cell skos:exactMatch UMLS:C5426634 Cells.CD3-CD14-CD19+CD45+DOCK8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#308"} +UMLS:C4684971 Allogeneic Nicotinamide-expanded Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C143157 Allogeneic Nicotinamide-expanded Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#309","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979637 Blasts.CD16 biolink:Cell skos:exactMatch UMLS:C1979637 Blasts.CD16 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#310"} +CL:0002048 late pro-B cell biolink:Cell skos:exactMatch CL:0002048 late pro-B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#311","subject_information_content":100.0} +UMLS:C5163453 Eosinophils.immature/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163453 Eosinophils.immature/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#312"} +UMLS:C3642444 CD19CAR-CD3zeta-expressing Autologous T lymphocytes biolink:Cell skos:exactMatch NCIT:C88266 CD19CAR-CD3zeta-expressing Autologous T lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#313","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216229 Leukocytes other|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216229 Leukocytes other|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#314"} +UMLS:C1317333 Erythrocytes.lytic resistant biolink:Cell skos:exactMatch UMLS:C1317333 Erythrocytes.lytic resistant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#315"} +CL:1001503 olfactory bulb tufted cell biolink:Cell skos:exactMatch CL:1001503 olfactory bulb tufted cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#316","subject_information_content":100.0} +UMLS:C3891660 Tumor-Associated Macrophage biolink:Cell skos:exactMatch UMLS:C3891660 Tumor-Associated Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#317"} +UMLS:C1440331 Cells.CD52 biolink:Cell skos:exactMatch UMLS:C1440331 Cells.CD52 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#299"} +UMLS:C1522078 Abnormal Granulocyte biolink:Cell skos:exactMatch NCIT:C37050 Abnormal Granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#318","subject_information_content":79.68289625120555,"identifierIndex":0} +NCIT:C12567 Odontoblast biolink:Cell skos:exactMatch NCIT:C12567 Odontoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#319","subject_information_content":100.0} +CL:4023122 oxytocin receptor sst GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023122 oxytocin receptor sst GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#320"} +UMLS:C5157440 CD3+CD4+CD27+CD45RO+CD62L+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157440 CD3+CD4+CD27+CD45RO+CD62L+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#321"} +CL:0002328 bronchial epithelial cell biolink:Cell skos:exactMatch CL:0002328 bronchial epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#322","subject_information_content":80.1558246084581} +UMLS:C0597694 Xenopus oocyte biolink:Cell skos:exactMatch UMLS:C0597694 Xenopus oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#323"} +UMLS:C0682543 cell by staining properties biolink:Cell skos:exactMatch UMLS:C0682543 cell by staining properties biolink:Cell HumanCurated {"cliqueId":"Cell.txt#324"} +UMLS:C1514842 Renal interstitial cell biolink:Cell skos:exactMatch NCIT:C33458 Renal Interstitial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#325","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267975 Lymphocyte positive for CD85 antigen biolink:Cell skos:exactMatch SNOMEDCT:117415002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#326","identifierIndex":0} +MESH:D013104 Spheroplasts biolink:Cell skos:exactMatch MESH:D013104 Spheroplasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#327"} +UMLS:C5216218 Erythrocytes|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216218 Erythrocytes|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#328"} +UMLS:C1511241 Bone Marrow-Homing Plasma Cell biolink:Cell skos:exactMatch NCIT:C41032 Bone Marrow-Homing Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#329","subject_information_content":100.0,"identifierIndex":0} +CL:1000492 mesothelial cell of parietal pleura biolink:Cell skos:exactMatch CL:1000492 mesothelial cell of parietal pleura biolink:Cell HumanCurated {"cliqueId":"Cell.txt#330","subject_information_content":100.0} +CL:0000823 immature natural killer cell biolink:Cell skos:exactMatch CL:0000823 immature natural killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#331","subject_information_content":88.2062864997332} +CL:0001202 CD86-positive plasmablast biolink:Cell skos:exactMatch CL:0001202 CD86-positive plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#332","subject_information_content":100.0} +UMLS:C0333836 Sea-blue histiocyte biolink:Cell skos:exactMatch NCIT:C36733 Sea-Blue Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#333","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333836 Sea-blue histiocyte biolink:Cell skos:exactMatch SNOMEDCT:39474009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#333","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1507326 Cells.CD158 biolink:Cell skos:exactMatch UMLS:C1507326 Cells.CD158 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#334"} +CL:0009093 smooth muscle cell of placenta biolink:Cell skos:exactMatch CL:0009093 smooth muscle cell of placenta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#335"} +CL:0000571 leucophore biolink:Cell skos:exactMatch CL:0000571 leucophore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#336","subject_information_content":100.0} +UMLS:C1513995 Neoplastic Large B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C37013 Neoplastic Large B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#337","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:2000051 splenic fibroblast biolink:Cell skos:exactMatch CL:2000051 splenic fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#338","subject_information_content":94.92072406280138} +CL:0000553 megakaryocyte progenitor cell biolink:Cell skos:exactMatch CL:0000553 megakaryocyte progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#339","subject_information_content":89.84144812560278} +CL:0002377 immature Schwann cell biolink:Cell skos:exactMatch CL:0002377 immature Schwann cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#340","subject_information_content":100.0} +UMLS:C1440231 Cell positive for BCL2 protein biolink:Cell skos:exactMatch SNOMEDCT:725310003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#341","identifierIndex":0} +UMLS:C1709196 Neoplastic Retinal Ganglion Cell biolink:Cell skos:exactMatch NCIT:C42604 Neoplastic Retinal Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#342","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177784 Polymorphonuclear cells | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177784 Polymorphonuclear cells | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#343"} +CL:0000255 eukaryotic cell biolink:Cell skos:exactMatch CL:0000255 eukaryotic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#344","subject_information_content":43.93725335104008} +CL:0002534 mature CD16-positive myeloid dendritic cell biolink:Cell skos:exactMatch CL:0002534 mature CD16-positive myeloid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#345","subject_information_content":100.0} +CL:0000357 stratified epithelial stem cell biolink:Cell skos:exactMatch CL:0000357 stratified epithelial stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#346","subject_information_content":91.94953810872488} +CL:0002381 uninucleate conidium biolink:Cell skos:exactMatch CL:0002381 uninucleate conidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#347","subject_information_content":86.87026217152628} +UMLS:C5157421 CD3 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157421 CD3 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#348"} +CL:2000091 endometrial microvascular endothelial cells biolink:Cell skos:exactMatch CL:2000091 endometrial microvascular endothelial cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#349","subject_information_content":100.0} +UMLS:C1519513 Pituitary TSH-Secreting Cells biolink:Cell skos:exactMatch NCIT:C33786 Thyrotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#350","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519513 Pituitary TSH-Secreting Cells biolink:Cell skos:exactMatch MESH:D052684 Thyrotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#350","subject_information_content":100.0,"identifierIndex":1} +CL:0000818 transitional stage B cell biolink:Cell skos:exactMatch CL:0000818 transitional stage B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#351","subject_information_content":89.84144812560278} +CL:0002570 mesenchymal stem cell of adipose tissue biolink:Cell skos:exactMatch CL:0002570 mesenchymal stem cell of adipose tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#352","subject_information_content":94.92072406280138} +UMLS:C5157922 Cells | Left anterior chamber | NEI eyeGENE slit lamp biomicroscopy biolink:Cell skos:exactMatch UMLS:C5157922 Cells | Left anterior chamber | NEI eyeGENE slit lamp biomicroscopy biolink:Cell HumanCurated {"cliqueId":"Cell.txt#353"} +UMLS:C1513974 Neoplastic Glandular Cell with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C36765 Neoplastic Glandular Cell with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#354","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0001060 hematopoietic oligopotent progenitor cell, lineage-negative biolink:Cell skos:exactMatch CL:0001060 hematopoietic oligopotent progenitor cell, lineage-negative biolink:Cell HumanCurated {"cliqueId":"Cell.txt#355","subject_information_content":81.79098623432766} +UMLS:C2338356 Basal cell of epithelium of trachea biolink:Cell skos:exactMatch UMLS:C2338356 Basal cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#356"} +UMLS:C0009013 Clone Cells biolink:Cell skos:exactMatch NCIT:C16441 Cell Clone biolink:Cell HumanCurated {"cliqueId":"Cell.txt#357","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C0009013 Clone Cells biolink:Cell skos:exactMatch MESH:D002999 Clone Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#357","subject_information_content":89.84144812560278,"identifierIndex":1} +UMLS:C0009013 Clone Cells biolink:Cell skos:exactMatch SNOMEDCT:47308002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#357","subject_information_content":89.84144812560278,"identifierIndex":2} +UMLS:C2709116 Cells.CD5+CD19+CD38+ biolink:Cell skos:exactMatch UMLS:C2709116 Cells.CD5+CD19+CD38+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#358"} +UMLS:C5420487 TM4SF1-CAR/EpCAM-CAR-expressing Autologous T Cells biolink:Cell skos:exactMatch NCIT:C173965 TM4SF1-CAR/EpCAM-CAR-expressing Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#359","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733638 Allogeneic HPV-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C155881 Allogeneic HPV-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#360","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682639 Memory T Cells biolink:Cell skos:exactMatch NCIT:C104082 Memory T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#361","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0682639 Memory T Cells biolink:Cell skos:exactMatch MESH:D000091246 Memory T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#361","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1267846 Lymphocyte positive for CD5 antigen and negative for CD2 antigen biolink:Cell skos:exactMatch SNOMEDCT:117533005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#362","identifierIndex":0} +UMLS:C5219170 Leukocytes|NCnc|Urine biolink:Cell skos:exactMatch UMLS:C5219170 Leukocytes|NCnc|Urine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#363"} +UMLS:C1955343 Other markers biolink:Cell skos:exactMatch UMLS:C1955343 Other markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#364"} +UMLS:C1180239 Endothelial cell of Peyer's patch biolink:Cell skos:exactMatch UMLS:C1180239 Endothelial cell of Peyer's patch biolink:Cell HumanCurated {"cliqueId":"Cell.txt#365"} +CL:0002681 kidney cortical cell biolink:Cell skos:exactMatch CL:0002681 kidney cortical cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#366","subject_information_content":68.3621111081913} +CL:0000808 DN4 thymocyte biolink:Cell skos:exactMatch CL:0000808 DN4 thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#367","subject_information_content":100.0} +UMLS:C0229663 Marrow fibroblast biolink:Cell skos:exactMatch SNOMEDCT:24151005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#368","identifierIndex":0} +CL:0002379 meningothelial cell biolink:Cell skos:exactMatch CL:0002379 meningothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#369","subject_information_content":100.0} +CL:4006001 fibroblast of skin of scalp biolink:Cell skos:exactMatch CL:4006001 fibroblast of skin of scalp biolink:Cell HumanCurated {"cliqueId":"Cell.txt#370","subject_information_content":100.0} +UMLS:C0019612 Histiocytes biolink:Cell skos:exactMatch NCIT:C12563 Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#371","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0019612 Histiocytes biolink:Cell skos:exactMatch MESH:D006644 Histiocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#371","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C0019612 Histiocytes biolink:Cell skos:exactMatch SNOMEDCT:14295007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#371","subject_information_content":94.92072406280138,"identifierIndex":2} +UMLS:C4722715 S68587 biolink:Cell skos:exactMatch UMLS:C4722715 S68587 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#372"} +CL:0000425 pore cell biolink:Cell skos:exactMatch CL:0000425 pore cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#374","subject_information_content":100.0} +UMLS:C4518176 Population of all promyelocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726509004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#375","identifierIndex":0} +UMLS:C1513123 Meningothelial cell biolink:Cell skos:exactMatch NCIT:C33095 Meningothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#376","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1179760 Epithelial cell of appendix biolink:Cell skos:exactMatch UMLS:C1179760 Epithelial cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#377"} +UMLS:C4510901 Blast cell positive for CD117 antigen biolink:Cell skos:exactMatch SNOMEDCT:724245000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#378","identifierIndex":0} +UMLS:C1514176 Pleomorphic Meningothelial Cell biolink:Cell skos:exactMatch NCIT:C37158 Pleomorphic Meningothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#379","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2339371 Regular ventricular cardiac myocyte biolink:Cell skos:exactMatch UMLS:C2339371 Regular ventricular cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#380"} +UMLS:C4330828 Non-Fucosylated Umbilical Cord Blood Regulatory T-cells biolink:Cell skos:exactMatch NCIT:C131536 Non-Fucosylated Umbilical Cord Blood Regulatory T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#381","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216251 Lymphocytes|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216251 Lymphocytes|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#373"} +UMLS:C3496153 A9 dopamine cells biolink:Cell skos:exactMatch UMLS:C3496153 A9 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#382"} +CL:0000489 scotopic photoreceptor cell biolink:Cell skos:exactMatch CL:0000489 scotopic photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#383","subject_information_content":100.0} +MESH:D034101 Sporozoites biolink:Cell skos:exactMatch MESH:D034101 Sporozoites biolink:Cell HumanCurated {"cliqueId":"Cell.txt#384"} +CL:0002304 non-pigmented ciliary epithelial cell biolink:Cell skos:exactMatch CL:0002304 non-pigmented ciliary epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#385","subject_information_content":100.0} +CL:0000406 CNS short range interneuron biolink:Cell skos:exactMatch CL:0000406 CNS short range interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#386","subject_information_content":100.0} +UMLS:C4727554 Autologous Anti-HER2-CAR-4-1BB-CD3zeta-CD19t+-expressing Tcm-enriched T-lymphocytes biolink:Cell skos:exactMatch NCIT:C154281 Autologous Anti-HER2-CAR-4-1BB-CD3zeta-CD19t+-expressing Tcm-enriched T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#387","subject_information_content":100.0,"identifierIndex":0} +CL:0002566 dark melanocyte biolink:Cell skos:exactMatch CL:0002566 dark melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#388","subject_information_content":100.0} +CL:0000720 anterior cone cell (sensu Endopterygota) biolink:Cell skos:exactMatch CL:0000720 anterior cone cell (sensu Endopterygota) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#389","subject_information_content":100.0} +CL:0000241 stratified cuboidal epithelial cell biolink:Cell skos:exactMatch CL:0000241 stratified cuboidal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#390","subject_information_content":100.0} +CL:0002396 CD14-low, CD16-positive monocyte biolink:Cell skos:exactMatch CL:0002396 CD14-low, CD16-positive monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#391","subject_information_content":100.0} +UMLS:C4518159 Population of all progressive spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726585007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#392","identifierIndex":0} +UMLS:C5157609 CD55 and CD59 RBC | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157609 CD55 and CD59 RBC | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#393"} +UMLS:C1881539 Malignant Blastemal Cell biolink:Cell skos:exactMatch NCIT:C61293 Malignant Blastemal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#394","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5419316 Simoladagene Autotemcel biolink:Cell skos:exactMatch NCIT:C171810 Simoladagene Autotemcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#395","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5447676 Therapeutic Effector T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C177284 Therapeutic Effector T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#396","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4518145 Population of all spermatozoa with duplicate tail in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725244008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#397","identifierIndex":0} +MESH:D004804 Eosinophils biolink:Cell skos:exactMatch MESH:D004804 Eosinophils biolink:Cell HumanCurated {"cliqueId":"Cell.txt#398"} +UMLS:C1979673 Cells.CD4+CD7-CD26- biolink:Cell skos:exactMatch UMLS:C1979673 Cells.CD4+CD7-CD26- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#399"} +CL:0000005 fibroblast neural crest derived biolink:Cell skos:exactMatch CL:0000005 fibroblast neural crest derived biolink:Cell HumanCurated {"cliqueId":"Cell.txt#400","subject_information_content":94.92072406280138} +UMLS:C1519317 Signet Ring Lipoblast biolink:Cell skos:exactMatch NCIT:C36975 Signet Ring Lipoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#401","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2322820 Vacuolar absorptive cell of epithelium of colon biolink:Cell skos:exactMatch UMLS:C2322820 Vacuolar absorptive cell of epithelium of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#402"} +UMLS:C1261568 Cell positive for CD10 antigen biolink:Cell skos:exactMatch SNOMEDCT:116749001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#403","identifierIndex":0} +UMLS:C1518311 Nevus cell biolink:Cell skos:exactMatch NCIT:C25585 Nevus Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#404","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0010022 cardiac neuron biolink:Cell skos:exactMatch CL:0010022 cardiac neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#405","subject_information_content":100.0} +UMLS:C4696657 Cells.CD3+CD4+CD28+HLA DR+ biolink:Cell skos:exactMatch UMLS:C4696657 Cells.CD3+CD4+CD28+HLA DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#406"} +UMLS:C2334370 Stellate cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2334370 Stellate cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#407"} +UMLS:C1955255 Erythrocyte clumps biolink:Cell skos:exactMatch UMLS:C1955255 Erythrocyte clumps biolink:Cell HumanCurated {"cliqueId":"Cell.txt#408"} +UMLS:C4055460 Anti-CEA-CAR Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C121784 Anti-CEA-CAR Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#409","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1953343 Chromosome number biolink:Cell skos:exactMatch UMLS:C1953343 Chromosome number biolink:Cell HumanCurated {"cliqueId":"Cell.txt#410"} +UMLS:C3899033 Genetically Engineered Hematopoietic Stem Progenitor Cells biolink:Cell skos:exactMatch NCIT:C119988 Genetically Engineered Hematopoietic Stem Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#411","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328068 Type TG enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2328068 Type TG enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#412"} +UMLS:C5157462 CD3+CD8+CD45RO+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157462 CD3+CD8+CD45RO+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#413"} +CL:0000359 vascular associated smooth muscle cell biolink:Cell skos:exactMatch CL:0000359 vascular associated smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#414","subject_information_content":76.71171029712904} +CL:1001036 vasa recta cell biolink:Cell skos:exactMatch CL:1001036 vasa recta cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#415","subject_information_content":83.89907621744979} +UMLS:C1317188 Cells.CD13+CD33+ biolink:Cell skos:exactMatch UMLS:C1317188 Cells.CD13+CD33+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#416"} +UMLS:C2325022 Myocyte of posterior internodal tract biolink:Cell skos:exactMatch UMLS:C2325022 Myocyte of posterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#418"} +UMLS:C1515153 TE72 biolink:Cell skos:exactMatch NCIT:C20303 TE72 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#419","subject_information_content":100.0,"identifierIndex":0} +CL:0001076 NKp46-positive innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001076 NKp46-positive innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#420","subject_information_content":100.0} +UMLS:C4724860 Autologous Mesothelin-specific CAR-T Cells biolink:Cell skos:exactMatch NCIT:C148160 Autologous Mesothelin-specific CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#421","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4267707 100 cells.CD3+TCR alpha beta+ biolink:Cell skos:exactMatch UMLS:C4267707 100 cells.CD3+TCR alpha beta+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#417"} +UMLS:C5157338 CD179a blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157338 CD179a blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#422"} +UMLS:C1979010 Cells.CD38+CD138+ biolink:Cell skos:exactMatch UMLS:C1979010 Cells.CD38+CD138+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#423"} +CL:0002450 tether cell biolink:Cell skos:exactMatch CL:0002450 tether cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#424","subject_information_content":100.0} +UMLS:C2324262 Secondary afferent neuron biolink:Cell skos:exactMatch UMLS:C2324262 Secondary afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#425"} +UMLS:C5182775 TCR alpha beta cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5182775 TCR alpha beta cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#426"} +CL:0002113 B220-low CD38-negative unswitched memory B cell biolink:Cell skos:exactMatch CL:0002113 B220-low CD38-negative unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#427","subject_information_content":100.0} +UMLS:C1292098 IgD B lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:115604004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#428","identifierIndex":0} +MESH:D012583 Schwann Cells biolink:Cell skos:exactMatch MESH:D012583 Schwann Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#429"} +UMLS:C1268003 Lymphocyte positive for CD198 antigen biolink:Cell skos:exactMatch SNOMEDCT:117443006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#430","identifierIndex":0} +UMLS:C5216237 Leukocytes|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216237 Leukocytes|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#431"} +UMLS:C3898995 HLA-DP0401/0402-Restricted MAGE-A3-Reactive T Cell Receptor-transduced Autologous T Cells biolink:Cell skos:exactMatch NCIT:C115979 HLA-DP0401/0402-Restricted MAGE-A3-Reactive T Cell Receptor-transduced Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#432","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0443611 Fat globule biolink:Cell skos:exactMatch SNOMEDCT:259580005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#433","identifierIndex":0} +CL:0000681 radial glial cell biolink:Cell skos:exactMatch CL:0000681 radial glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#434","subject_information_content":89.84144812560278} +UMLS:C4267788 Cells.CD27+IgD+ biolink:Cell skos:exactMatch UMLS:C4267788 Cells.CD27+IgD+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#435"} +CL:0002241 pulmonary interstitial fibroblast biolink:Cell skos:exactMatch CL:0002241 pulmonary interstitial fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#436","subject_information_content":100.0} +UMLS:C1514438 Primitive Mesenchymal Stellate Cell biolink:Cell skos:exactMatch NCIT:C36928 Primitive Mesenchymal Stellate Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#437","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682638 Memory B Cells biolink:Cell skos:exactMatch UMLS:C0682638 Memory B Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#438"} +CL:0000140 odontocyte biolink:Cell skos:exactMatch CL:0000140 odontocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#439","subject_information_content":100.0} +CL:2000057 femural osteoblast biolink:Cell skos:exactMatch CL:2000057 femural osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#440","subject_information_content":100.0} +UMLS:C0229538 Pituitary thyrotropic cell biolink:Cell skos:exactMatch SNOMEDCT:33608007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#441","identifierIndex":0} +UMLS:C4725915 Autologous GPC3/NY-ESO-1/AFP specific CD8-positive T-lymphocytes biolink:Cell skos:exactMatch NCIT:C150676 Autologous GPC3/NY-ESO-1/AFP specific CD8-positive T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#442","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182614 Epithelial cell of external acoustic meatus biolink:Cell skos:exactMatch UMLS:C1182614 Epithelial cell of external acoustic meatus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#443"} +UMLS:C1882060 Neoplastic Small Epithelial Cell with Scant Amount of Cytoplasm biolink:Cell skos:exactMatch NCIT:C61296 Neoplastic Small Epithelial Cell with Scant Amount of Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#444","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2981181 Autologous PBTL CD19CAR-28 zeta biolink:Cell skos:exactMatch NCIT:C78823 Autologous PBTL CD19CAR-28 zeta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#445","subject_information_content":100.0,"identifierIndex":0} +CL:0000145 professional antigen presenting cell biolink:Cell skos:exactMatch CL:0000145 professional antigen presenting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#446","subject_information_content":61.36027019105004} +UMLS:C4724886 Autologous Mesenchymal Stem Cells-Poly Lactic-co-glycolic Acid biolink:Cell skos:exactMatch NCIT:C148189 Autologous Mesenchymal Stem Cells-Poly Lactic-co-glycolic Acid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#447","subject_information_content":100.0,"identifierIndex":0} +CL:0002498 secondary trophoblast giant cell biolink:Cell skos:exactMatch CL:0002498 secondary trophoblast giant cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#448","subject_information_content":100.0} +UMLS:C5418015 Autologous BCMA-targeted CAR T Cells CC-98633 biolink:Cell skos:exactMatch NCIT:C173699 Autologous BCMA-targeted CAR T Cells CC-98633 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#449","subject_information_content":100.0,"identifierIndex":0} +CL:0000345 dental papilla cell biolink:Cell skos:exactMatch CL:0000345 dental papilla cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#450","subject_information_content":100.0} +CL:4023121 sst chodl GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023121 sst chodl GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#452"} +UMLS:C5171659 Lymphocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171659 Lymphocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#451"} +UMLS:C4055426 autologous anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T lymphocytes biolink:Cell skos:exactMatch UMLS:C4055426 autologous anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#453"} +CL:4023087 fan Martinotti neuron biolink:Cell skos:exactMatch CL:4023087 fan Martinotti neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#454","subject_information_content":94.92072406280138} +UMLS:C5219210 Neutrophils|NCnc|Urine biolink:Cell skos:exactMatch UMLS:C5219210 Neutrophils|NCnc|Urine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#455"} +UMLS:C1179870 Nodal myocyte biolink:Cell skos:exactMatch UMLS:C1179870 Nodal myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#456"} +CL:1000447 epithelial cell of stratum germinativum of esophagus biolink:Cell skos:exactMatch CL:1000447 epithelial cell of stratum germinativum of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#457","subject_information_content":100.0} +CL:0000726 chlamydospore biolink:Cell skos:exactMatch CL:0000726 chlamydospore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#458","subject_information_content":100.0} +UMLS:C1514083 Neoplastic Sex Cord-Stromal Cell biolink:Cell skos:exactMatch NCIT:C36898 Neoplastic Sex Cord-Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#459","subject_information_content":81.79098623432766,"identifierIndex":0} +CL:0000827 pro-T cell biolink:Cell skos:exactMatch CL:0000827 pro-T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#460","subject_information_content":91.94953810872488} +CL:4023066 horizontal pyramidal neuron biolink:Cell skos:exactMatch CL:4023066 horizontal pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#461","subject_information_content":100.0} +MESH:D009360 Neoplastic Cells, Circulating biolink:Cell skos:exactMatch MESH:D009360 Neoplastic Cells, Circulating biolink:Cell HumanCurated {"cliqueId":"Cell.txt#462"} +UMLS:C2698146 Anti-Her-2-CAR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C79834 Anti-Her-2-CAR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#463","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5175162 Nucleated erythrocytes | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175162 Nucleated erythrocytes | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#464"} +UMLS:C3176807 Blasts.cytoplasmic CD3 biolink:Cell skos:exactMatch UMLS:C3176807 Blasts.cytoplasmic CD3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#465"} +UMLS:C4321645 Set of embryonic stem cells biolink:Cell skos:exactMatch UMLS:C4321645 Set of embryonic stem cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#466"} +UMLS:C5175004 Normoblasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175004 Normoblasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#467"} +UMLS:C2985181 PSA-PAP/KLH-pulsed Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C92573 PSA-PAP/KLH-pulsed Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#468","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0034083 Pulmonary Stretch Receptors biolink:Cell skos:exactMatch MESH:D011661 Pulmonary Stretch Receptors biolink:Cell HumanCurated {"cliqueId":"Cell.txt#469","identifierIndex":0} +CL:0002330 undifferentiated cell of bronchus epithelium biolink:Cell skos:exactMatch CL:0002330 undifferentiated cell of bronchus epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#470","subject_information_content":100.0} +UMLS:C0596208 brain cell biolink:Cell skos:exactMatch UMLS:C0596208 brain cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#471"} +UMLS:C1882056 Neoplastic Leutein Cell biolink:Cell skos:exactMatch NCIT:C61430 Neoplastic Leutein Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#472","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5382753 CD18 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382753 CD18 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#473"} +UMLS:C0282639 HT29 Cells biolink:Cell skos:exactMatch NCIT:C17896 HT29 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#474","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0282639 HT29 Cells biolink:Cell skos:exactMatch MESH:D019073 HT29 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#474","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4727550 Autologous ROR2-targeted CAR T-cells CCT301-59 biolink:Cell skos:exactMatch NCIT:C154277 Autologous ROR2-targeted CAR T-cells CCT301-59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#475","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0814999 thymocyte biolink:Cell skos:exactMatch MESH:D060168 Thymocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#476","identifierIndex":0} +UMLS:C1268011 Immature plasma cell biolink:Cell skos:exactMatch SNOMEDCT:117293008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#477","identifierIndex":0} +UMLS:C4323725 Cranial neural crest cell group biolink:Cell skos:exactMatch UMLS:C4323725 Cranial neural crest cell group biolink:Cell HumanCurated {"cliqueId":"Cell.txt#478"} +CL:0002049 Fraction C precursor B cell biolink:Cell skos:exactMatch CL:0002049 Fraction C precursor B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#479","subject_information_content":100.0} +UMLS:C5447453 Autologous Anti-HER2 CAR Macrophages CT-0508 biolink:Cell skos:exactMatch NCIT:C176824 Autologous Anti-HER2 CAR Macrophages CT-0508 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#480","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5203880 Autologous Anti-GD2CAR-CD28-CD3zeta-IL-15-expressing Natural Killer T-cells biolink:Cell skos:exactMatch NCIT:C158682 Autologous Anti-GD2CAR-CD28-CD3zeta-IL-15-expressing Natural Killer T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#481","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733591 autologous anti-CD20 CAR-T cells biolink:Cell skos:exactMatch UMLS:C4733591 autologous anti-CD20 CAR-T cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#482"} +CL:1001591 oviduct glandular cell biolink:Cell skos:exactMatch CL:1001591 oviduct glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#483","subject_information_content":91.94953810872488} +CL:0010017 zygote biolink:Cell skos:exactMatch CL:0010017 zygote biolink:Cell HumanCurated {"cliqueId":"Cell.txt#484","subject_information_content":94.92072406280138} +UMLS:C0333718 Anuclear cell biolink:Cell skos:exactMatch SNOMEDCT:54656004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#485","identifierIndex":0} +CL:0000880 choroid-plexus macrophage biolink:Cell skos:exactMatch CL:0000880 choroid-plexus macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#486","subject_information_content":100.0} +UMLS:C1179113 Supporting cell of olfactory epithelium biolink:Cell skos:exactMatch UMLS:C1179113 Supporting cell of olfactory epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#487"} +CL:0000603 dikaryon biolink:Cell skos:exactMatch CL:0000603 dikaryon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#488","subject_information_content":100.0} +UMLS:C4697018 Cells.CD21+ biolink:Cell skos:exactMatch UMLS:C4697018 Cells.CD21+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#489"} +UMLS:C3642149 Rivogenlecleucel biolink:Cell skos:exactMatch UMLS:C4722512 BPX-501 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#490","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3642149 Rivogenlecleucel biolink:Cell skos:exactMatch NCIT:C105395 Rivogenlecleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#490","subject_information_content":100.0,"identifierIndex":1} +CL:1001568 pulmonary artery endothelial cell biolink:Cell skos:exactMatch CL:1001568 pulmonary artery endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#491","subject_information_content":100.0} +UMLS:C1440332 Cells.CD53 biolink:Cell skos:exactMatch UMLS:C1440332 Cells.CD53 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#492"} +UMLS:C2332398 Stromal cell of ovary biolink:Cell skos:exactMatch UMLS:C2332398 Stromal cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#493"} +CL:0000035 single fate stem cell biolink:Cell skos:exactMatch CL:0000035 single fate stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#494","subject_information_content":77.02358060617253} +UMLS:C5447406 Interferon Gamma-primed Human Bone Marrow-derived Mesenchymal Stromal Cells biolink:Cell skos:exactMatch NCIT:C176740 Interferon Gamma-primed Human Bone Marrow-derived Mesenchymal Stromal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#495","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2327051 Epithelial cell of esophageal gland proper biolink:Cell skos:exactMatch UMLS:C2327051 Epithelial cell of esophageal gland proper biolink:Cell HumanCurated {"cliqueId":"Cell.txt#496"} +UMLS:C1180240 Endothelial cell of postcapillary venule of lymph node biolink:Cell skos:exactMatch UMLS:C1180240 Endothelial cell of postcapillary venule of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#497"} +CL:0000549 basophilic erythroblast biolink:Cell skos:exactMatch CL:0000549 basophilic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#498","subject_information_content":91.94953810872488} +UMLS:C4725073 Autologous CD5-specific CAR-28 zeta CAR T-cells biolink:Cell skos:exactMatch NCIT:C148490 Autologous CD5-specific CAR-28 zeta CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#499","subject_information_content":100.0,"identifierIndex":0} +CL:0002105 CD38-positive IgG memory B cell biolink:Cell skos:exactMatch CL:0002105 CD38-positive IgG memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#500","subject_information_content":91.94953810872488} +UMLS:C5216235 Leukocytes|NCnc|Pt|Dial fld prt biolink:Cell skos:exactMatch UMLS:C5216235 Leukocytes|NCnc|Pt|Dial fld prt biolink:Cell HumanCurated {"cliqueId":"Cell.txt#501"} +UMLS:C5220613 Spermatozoa|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220613 Spermatozoa|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#502"} +CL:0000574 erythrophore biolink:Cell skos:exactMatch CL:0000574 erythrophore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#503","subject_information_content":100.0} +UMLS:C4764288 Anti-EGFR CAR-transduced IL-12-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C158602 Anti-EGFR CAR-transduced IL-12-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#504","subject_information_content":100.0,"identifierIndex":0} +CL:0000072 non-branched duct epithelial cell biolink:Cell skos:exactMatch CL:0000072 non-branched duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#505","subject_information_content":80.1558246084581} +UMLS:C1522257 Mesodermal Cell / Mesoblast (MMHCC) biolink:Cell skos:exactMatch NCIT:C22686 Mouse Mesodermal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#506","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514831 Reliance ES Cell Line biolink:Cell skos:exactMatch NCIT:C20287 Reliance ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#507","subject_information_content":84.76217218840416,"identifierIndex":0} +CL:0000566 angioblastic mesenchymal cell biolink:Cell skos:exactMatch CL:0000566 angioblastic mesenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#508","subject_information_content":94.92072406280138} +UMLS:C4726569 Autologous PD1-inhibiting Anti-CD19 4-1BB CAR T Cells biolink:Cell skos:exactMatch NCIT:C151944 Autologous PD1-inhibiting Anti-CD19 4-1BB CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#509","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0014802 Erythroid Precursor Cells biolink:Cell skos:exactMatch MESH:D015672 Erythroid Precursor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#510","identifierIndex":0} +UMLS:C0014802 Erythroid Precursor Cells biolink:Cell skos:exactMatch SNOMEDCT:304601009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#510","identifierIndex":1} +CL:2000014 fibroblast of upper leg skin biolink:Cell skos:exactMatch CL:2000014 fibroblast of upper leg skin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#511","subject_information_content":100.0} +UMLS:C5163539 Epithelial cells | Nose | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163539 Epithelial cells | Nose | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#512"} +CL:0000235 macrophage biolink:Cell skos:exactMatch CL:0000235 macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#513","subject_information_content":70.63487872280473} +CL:0000666 fenestrated cell biolink:Cell skos:exactMatch CL:0000666 fenestrated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#515","subject_information_content":91.94953810872488} +CL:0009046 T cell of medullary sinus of lymph node biolink:Cell skos:exactMatch CL:0009046 T cell of medullary sinus of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#517","subject_information_content":100.0} +UMLS:C5154479 Basophils | Nose | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154479 Basophils | Nose | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#518"} +UMLS:C5158327 Cells.CD3+CD4+CD8+ (Double positive) | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5158327 Cells.CD3+CD4+CD8+ (Double positive) | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#519"} +CL:4023109 vasopressin-secreting magnocellular cell biolink:Cell skos:exactMatch CL:4023109 vasopressin-secreting magnocellular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#520","subject_information_content":100.0} +UMLS:C1181300 Active chief cell of parathyroid gland biolink:Cell skos:exactMatch UMLS:C1181300 Active chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#521"} +CL:0011018 lymphoid tissue–inducer cell biolink:Cell skos:exactMatch CL:0011018 lymphoid tissue–inducer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#522","subject_information_content":100.0} +CL:0002462 adipose dendritic cell biolink:Cell skos:exactMatch CL:0002462 adipose dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#516","subject_information_content":91.94953810872488} +UMLS:C4725079 Autologous PSMA-specific TGFb-resistant CAR T Cells biolink:Cell skos:exactMatch NCIT:C148496 Autologous PSMA-specific TGFb-resistant CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#523","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157410 CD25 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157410 CD25 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#524"} +UMLS:C1148303 Basophils+Eosinophils+Monocytes biolink:Cell skos:exactMatch UMLS:C1148303 Basophils+Eosinophils+Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#525"} +UMLS:C1267957 Lymphocyte positive for CD64 antigen biolink:Cell skos:exactMatch SNOMEDCT:117398002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#526","identifierIndex":0} +CL:0002558 fibroblast of villous mesenchyme biolink:Cell skos:exactMatch CL:0002558 fibroblast of villous mesenchyme biolink:Cell HumanCurated {"cliqueId":"Cell.txt#514","subject_information_content":100.0} +UMLS:C5157376 CD2+CD7+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157376 CD2+CD7+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#527"} +UMLS:C2338668 Microfold cell of epithelium of small intestine biolink:Cell skos:exactMatch UMLS:C2338668 Microfold cell of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#528"} +UMLS:C5381000 Cells.CD8.HLA-B8 CMV specific biolink:Cell skos:exactMatch UMLS:C5381000 Cells.CD8.HLA-B8 CMV specific biolink:Cell HumanCurated {"cliqueId":"Cell.txt#529"} +UMLS:C1955383 Spermatozoa.isolated head biolink:Cell skos:exactMatch UMLS:C1955383 Spermatozoa.isolated head biolink:Cell HumanCurated {"cliqueId":"Cell.txt#530"} +UMLS:C1979670 Cells.CD19+IgM+ biolink:Cell skos:exactMatch UMLS:C1979670 Cells.CD19+IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#531"} +UMLS:C1267983 Lymphocyte positive for CD96 antigen biolink:Cell skos:exactMatch SNOMEDCT:117423000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#532","identifierIndex":0} +CL:0000634 Claudius cell biolink:Cell skos:exactMatch CL:0000634 Claudius cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#533","subject_information_content":100.0} +CL:1000271 lung ciliated cell biolink:Cell skos:exactMatch CL:1000271 lung ciliated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#534","subject_information_content":100.0} +CL:0000911 effector T cell biolink:Cell skos:exactMatch CL:0000911 effector T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#535","subject_information_content":85.74066969721673} +CL:0008021 anterior lateral line ganglion neuron biolink:Cell skos:exactMatch CL:0008021 anterior lateral line ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#536","subject_information_content":100.0} +CL:0002502 type M enteroendocrine cell biolink:Cell skos:exactMatch CL:0002502 type M enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#537","subject_information_content":100.0} +CL:0002309 corticotroph biolink:Cell skos:exactMatch CL:0002309 corticotroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#538","subject_information_content":100.0} +UMLS:C1514965 Mouse Stem Cell biolink:Cell skos:exactMatch NCIT:C22563 Mouse Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#539","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1879680 remestemcel-l biolink:Cell skos:exactMatch UMLS:C1879680 remestemcel-l biolink:Cell HumanCurated {"cliqueId":"Cell.txt#540"} +UMLS:C4055458 Anti-HLA-A2/NY-ESO-1 TCR-transduced Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C122679 Anti-HLA-A2/NY-ESO-1 TCR-transduced Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#541","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4763774 Autologous Anti-CD19CAR-CD28tm/4-1BB/CD3zeta-HER2tG-expressing CD4+/CD8+ T-lymphocytes SCRI-huCAR19v1 biolink:Cell skos:exactMatch NCIT:C157655 Autologous Anti-CD19CAR-CD28tm/4-1BB/CD3zeta-HER2tG-expressing CD4+/CD8+ T-lymphocytes SCRI-huCAR19v1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#542","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1717630 Bizarre cells biolink:Cell skos:exactMatch UMLS:C1717630 Bizarre cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#543"} +UMLS:C0205878 Glomus tympanicum biolink:Cell skos:exactMatch MESH:D043485 Glomus Tympanicum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#544","identifierIndex":0} +UMLS:C0205878 Glomus tympanicum biolink:Cell skos:exactMatch SNOMEDCT:181381004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#544","identifierIndex":1} +UMLS:C1709180 Neoplastic Immunoblast-Like T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C45331 Neoplastic Immunoblast-Like T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#545","subject_information_content":100.0,"identifierIndex":0} +CL:0000909 CD8-positive, alpha-beta memory T cell biolink:Cell skos:exactMatch CL:0000909 CD8-positive, alpha-beta memory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#546","subject_information_content":88.2062864997332} +UMLS:C1522060 Epithelioid Melanoma Cell biolink:Cell skos:exactMatch NCIT:C36872 Epithelioid Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#547","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440257 Cells.CD14+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C1440257 Cells.CD14+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#548"} +UMLS:C0022687 Lymphokine-Activated Killer Cells biolink:Cell skos:exactMatch NCIT:C13008 Lymphokine-Activated Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#549","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0022687 Lymphokine-Activated Killer Cells biolink:Cell skos:exactMatch MESH:D015979 Killer Cells, Lymphokine-Activated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#549","subject_information_content":100.0,"identifierIndex":1} +CL:0000287 eye photoreceptor cell biolink:Cell skos:exactMatch CL:0000287 eye photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#550","subject_information_content":81.20444558259193} +UMLS:C1513754 Multivacuolated Brown Fat Cell biolink:Cell skos:exactMatch NCIT:C36968 Multivacuolated Brown Fat Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#551","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401594 Placental Mesenchymal Stem Cells biolink:Cell skos:exactMatch UMLS:C5401594 Placental Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#552"} +CL:0002375 Schwann cell precursor biolink:Cell skos:exactMatch CL:0002375 Schwann cell precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#553","subject_information_content":100.0} +NCIT:C13155 Ganglion Cell biolink:Cell skos:exactMatch NCIT:C13155 Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#554","subject_information_content":88.2062864997332} +NCIT:C12637 Retinal Cone biolink:Cell skos:exactMatch NCIT:C12637 Retinal Cone biolink:Cell HumanCurated {"cliqueId":"Cell.txt#555","subject_information_content":100.0} +CL:2000041 dermis microvascular lymphatic vessel endothelial cell biolink:Cell skos:exactMatch CL:2000041 dermis microvascular lymphatic vessel endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#556","subject_information_content":100.0} +UMLS:C1511449 Mouse Spinal Cord Neuron biolink:Cell skos:exactMatch NCIT:C22626 Mouse Spinal Cord Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#557","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C3828361 Recent Thymic Emigrant biolink:Cell skos:exactMatch NCIT:C112039 Recent Thymic Emigrant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#558","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086501 Human Umbilical Cord Perivascular Cell biolink:Cell skos:exactMatch NCIT:C124146 Human Umbilical Cord Perivascular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#559","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711385 Primitive Malignant Skeletal Muscle Cell biolink:Cell skos:exactMatch NCIT:C49202 Primitive Malignant Skeletal Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#560","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157650 CD7 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157650 CD7 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#561"} +CL:0002233 epithelial cell of prostatic acinus biolink:Cell skos:exactMatch CL:0002233 epithelial cell of prostatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#562","subject_information_content":91.94953810872488} +MESH:D000072336 Mucosal-Associated Invariant T Cells biolink:Cell skos:exactMatch MESH:D000072336 Mucosal-Associated Invariant T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#563"} +CL:0000878 central nervous system macrophage biolink:Cell skos:exactMatch CL:0000878 central nervous system macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#564","subject_information_content":85.74066969721673} +UMLS:C0039748 theca cell biolink:Cell skos:exactMatch NCIT:C12572 Theca Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#565","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0039748 theca cell biolink:Cell skos:exactMatch MESH:D013799 Theca Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#565","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4086009 Autologous T-lymphocytes-expressing NY-ESO-1-C259-specific Enhanced T-cell Receptors biolink:Cell skos:exactMatch NCIT:C124655 Autologous T-lymphocytes-expressing NY-ESO-1-C259-specific Enhanced T-cell Receptors biolink:Cell HumanCurated {"cliqueId":"Cell.txt#566","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170937 Leukocytes | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5170937 Leukocytes | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#567"} +CL:1000457 mesothelial cell of visceral peritoneum biolink:Cell skos:exactMatch CL:1000457 mesothelial cell of visceral peritoneum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#568","subject_information_content":100.0} +UMLS:C1514002 Neoplastic Large Ganglioid Astrocyte biolink:Cell skos:exactMatch NCIT:C41469 Neoplastic Large Ganglioid Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#569","subject_information_content":100.0,"identifierIndex":0} +CL:4023107 reticulospinal neuron biolink:Cell skos:exactMatch CL:4023107 reticulospinal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#570","subject_information_content":100.0} +UMLS:C0524458 Upper motor neuron biolink:Cell skos:exactMatch SNOMEDCT:91769000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#571","identifierIndex":0} +CL:0002351 progenitor cell of endocrine pancreas biolink:Cell skos:exactMatch CL:0002351 progenitor cell of endocrine pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#572","subject_information_content":100.0} +UMLS:C4763574 CD45RA-depleted Donor T-lymphocytes biolink:Cell skos:exactMatch NCIT:C157369 CD45RA-depleted Donor T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#574","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163439 Eosinophils | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163439 Eosinophils | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#575"} +UMLS:C1709193 Neoplastic Perivascular Epithelioid Cell biolink:Cell skos:exactMatch NCIT:C53681 Neoplastic Perivascular Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#576","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517440 Ganglion-Like Cell biolink:Cell skos:exactMatch NCIT:C36981 Ganglion-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#577","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2336695 Hepatic oval stem cell biolink:Cell skos:exactMatch UMLS:C2336695 Hepatic oval stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#578"} +UMLS:C4053532 Circulating Epithelial Cell biolink:Cell skos:exactMatch NCIT:C122733 Circulating Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#579","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5220575 Epithelial cells.renal|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220575 Epithelial cells.renal|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#580"} +UMLS:C1440336 Cells.CD6 biolink:Cell skos:exactMatch UMLS:C1440336 Cells.CD6 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#581"} +CL:2000028 cerebellum glutamatergic neuron biolink:Cell skos:exactMatch CL:2000028 cerebellum glutamatergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#573","subject_information_content":100.0} +UMLS:C1879552 Adenocarcinoma Cell with Abundant Cytoplasm biolink:Cell skos:exactMatch NCIT:C60433 Adenocarcinoma Cell with Abundant Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#582","subject_information_content":82.42859222307153,"identifierIndex":0} +CL:2000073 migratory cardiac neural crest cell biolink:Cell skos:exactMatch CL:2000073 migratory cardiac neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#583","subject_information_content":100.0} +MESH:D005057 Eukaryotic Cells biolink:Cell skos:exactMatch MESH:D005057 Eukaryotic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#584"} +CL:0002655 epithelial cell of stratum spinosum of esophageal epithelium biolink:Cell skos:exactMatch CL:0002655 epithelial cell of stratum spinosum of esophageal epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#585","subject_information_content":100.0} +CL:0008018 somatic muscle myoblast biolink:Cell skos:exactMatch CL:0008018 somatic muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#586","subject_information_content":91.94953810872488} +UMLS:C2334588 Pyramidal cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2334588 Pyramidal cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#587"} +UMLS:C1515137 T-Immunoblast biolink:Cell skos:exactMatch NCIT:C34034 T-Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#588","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979124 Blasts.CD126 biolink:Cell skos:exactMatch UMLS:C1979124 Blasts.CD126 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#589"} +UMLS:C1440056 Abnormal blood cells.CD7 biolink:Cell skos:exactMatch UMLS:C1440056 Abnormal blood cells.CD7 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#590"} +UMLS:C3830333 EGFR CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C107191 EGFR CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#591","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5382907 HLA-B7 CMV specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382907 HLA-B7 CMV specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#592"} +CL:0000010 cultured cell biolink:Cell skos:exactMatch CL:0000010 cultured cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#593","subject_information_content":46.86845807374713} +UMLS:C5157921 Cells | Cervical mucus | Fertility testing biolink:Cell skos:exactMatch UMLS:C5157921 Cells | Cervical mucus | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#594"} +UMLS:C1514392 Premalignant Cell biolink:Cell skos:exactMatch NCIT:C12976 Premalignant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#595","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0772149 red blood cells,dehydrated biolink:Cell skos:exactMatch UMLS:C0772149 red blood cells,dehydrated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#596"} +CL:0000484 connective tissue type mast cell biolink:Cell skos:exactMatch CL:0000484 connective tissue type mast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#597","subject_information_content":100.0} +UMLS:C5157368 CD2 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157368 CD2 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#598"} +UMLS:C5171662 Lymphocytes | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171662 Lymphocytes | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#599"} +CL:0000815 regulatory T cell biolink:Cell skos:exactMatch CL:0000815 regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#600","subject_information_content":79.68289625120555} +UMLS:C2362047 Macroblasts biolink:Cell skos:exactMatch UMLS:C2362047 Macroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#601"} +UMLS:C1515969 Anaplastic Plasma Cell biolink:Cell skos:exactMatch NCIT:C37081 Anaplastic Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#602","subject_information_content":100.0,"identifierIndex":0} +MESH:D033761 Spores, Protozoan biolink:Cell skos:exactMatch MESH:D033761 Spores, Protozoan biolink:Cell HumanCurated {"cliqueId":"Cell.txt#603"} +UMLS:C5157625 CD59 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157625 CD59 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#604"} +UMLS:C5186791 Lymphocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186791 Lymphocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#605"} +UMLS:C1267890 Lymphocyte positive for CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:116842001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#606","identifierIndex":0} +UMLS:C3896917 siRNA-transfected Peripheral Blood Mononuclear Cells APN401 biolink:Cell skos:exactMatch NCIT:C116353 siRNA-transfected Peripheral Blood Mononuclear Cells APN401 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#607","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0946056 Epithelial cells.extrarenal biolink:Cell skos:exactMatch UMLS:C0946056 Epithelial cells.extrarenal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#608"} +UMLS:C1267906 Lymphoblast positive for CD33 antigen biolink:Cell skos:exactMatch SNOMEDCT:117577003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#609","identifierIndex":0} +CL:0002515 interrenal norepinephrine type cell biolink:Cell skos:exactMatch CL:0002515 interrenal norepinephrine type cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#610","subject_information_content":100.0} +UMLS:C3496529 A14 dopamine cells biolink:Cell skos:exactMatch UMLS:C3496529 A14 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#611"} +UMLS:C5163750 Erythrocytes.fresh/100 erythrocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163750 Erythrocytes.fresh/100 erythrocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#612"} +UMLS:C4745144 Autologous CD4+/CD8+ EGFR806 Specific 4-1BB-CD3zeta-EGFRt-expressing CAR T Cells biolink:Cell skos:exactMatch NCIT:C156883 Autologous CD4+/CD8+ EGFR806 Specific 4-1BB-CD3zeta-EGFRt-expressing CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#613","subject_information_content":100.0,"identifierIndex":0} +CL:0005006 ionocyte biolink:Cell skos:exactMatch CL:0005006 ionocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#614","subject_information_content":94.92072406280138} +MESH:D007395 Interneurons biolink:Cell skos:exactMatch MESH:D007395 Interneurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#615"} +CL:0009087 fused extravillous trophoblast biolink:Cell skos:exactMatch CL:0009087 fused extravillous trophoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#616"} +UMLS:C5418107 Autologous CD19-targeted CAR T Cells CC-97540 biolink:Cell skos:exactMatch NCIT:C175049 Autologous CD19-targeted CAR T Cells CC-97540 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#617","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3898205 NGFR-transduced Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C118576 NGFR-transduced Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#618","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177623 Platelets | Platelet rich plasma | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177623 Platelets | Platelet rich plasma | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#619"} +UMLS:C1518752 Mouse Ovarian Interstitial Cell biolink:Cell skos:exactMatch NCIT:C22663 Mouse Ovarian Interstitial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#620","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511280 Bowenoid Cell biolink:Cell skos:exactMatch NCIT:C36755 Bowenoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#621","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518218 Malignant Neuroendocrine Cell with Moderate Cytoplasm biolink:Cell skos:exactMatch NCIT:C36916 Malignant Neuroendocrine Cell with Moderate Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#622","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5446930 Anti-BCMA-targeting CAR-T Cells biolink:Cell skos:exactMatch NCIT:C176023 Anti-BCMA-targeting CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#623","subject_information_content":76.4125729994664,"identifierIndex":0} +CL:0000721 equatorial cone cell (sensu Endopterygota) biolink:Cell skos:exactMatch CL:0000721 equatorial cone cell (sensu Endopterygota) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#624","subject_information_content":100.0} +UMLS:C5426958 Epithelial cells.squamous | Bronchial | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5426958 Epithelial cells.squamous | Bronchial | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#625"} +CL:0002636 nonkeratinized epithelial cell of inferior part of anal canal biolink:Cell skos:exactMatch CL:0002636 nonkeratinized epithelial cell of inferior part of anal canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#626","subject_information_content":100.0} +UMLS:C1513951 Neoplastic Endocrine Cell biolink:Cell skos:exactMatch NCIT:C36925 Neoplastic Endocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#628","subject_information_content":68.97311871489742,"identifierIndex":0} +UMLS:C4682857 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217 biolink:Cell skos:exactMatch NCIT:C140310 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing Memory T-lymphocytes bb21217 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#629","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518043 Lutzner Cell biolink:Cell skos:exactMatch NCIT:C39648 Lutzner Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#630","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733878 Keratinocytes (Human) biolink:Cell skos:exactMatch UMLS:C4733878 Keratinocytes (Human) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#631"} +UMLS:C4727342 Tumor-Infiltrating Immune Cell biolink:Cell skos:exactMatch NCIT:C153548 Tumor-Infiltrating Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#632","subject_information_content":100.0,"identifierIndex":0} +CL:0000203 gravity sensitive cell biolink:Cell skos:exactMatch CL:0000203 gravity sensitive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#633","subject_information_content":100.0} +CL:0009083 rearranging double negative thymocyte (Homo sapiens) biolink:Cell skos:exactMatch CL:0009083 rearranging double negative thymocyte (Homo sapiens) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#634"} +UMLS:C0597661 visual photoreceptor biolink:Cell skos:exactMatch UMLS:C0597661 visual photoreceptor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#627"} +UMLS:C5157240 CD10+CD20+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157240 CD10+CD20+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#635"} +UMLS:C5171674 Lymphocytes clefted | Blood or Tissue | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171674 Lymphocytes clefted | Blood or Tissue | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#636"} +CL:1000708 ureter adventitial cell biolink:Cell skos:exactMatch CL:1000708 ureter adventitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#637","subject_information_content":94.92072406280138} +CL:0008026 open tracheal system tracheocyte biolink:Cell skos:exactMatch CL:0008026 open tracheal system tracheocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#638","subject_information_content":100.0} +UMLS:C1517726 Glandular cell of large intestine biolink:Cell skos:exactMatch NCIT:C32925 Large Intestinal Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#639","subject_information_content":100.0,"identifierIndex":0} +CL:0002045 Fraction A pre-pro B cell biolink:Cell skos:exactMatch CL:0002045 Fraction A pre-pro B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#640","subject_information_content":100.0} +UMLS:C4524369 CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T-lymphocytes biolink:Cell skos:exactMatch NCIT:C133072 CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#641","subject_information_content":100.0,"identifierIndex":0} +CL:0001004 immature CD8_alpha-positive CD11b-negative dendritic cell biolink:Cell skos:exactMatch CL:0001004 immature CD8_alpha-positive CD11b-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#642","subject_information_content":100.0} +CL:0002236 basal epithelial cell of prostatic duct biolink:Cell skos:exactMatch CL:0002236 basal epithelial cell of prostatic duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#643","subject_information_content":100.0} +UMLS:C3826624 Cancer cells--Motility biolink:Cell skos:exactMatch UMLS:C3826624 Cancer cells--Motility biolink:Cell HumanCurated {"cliqueId":"Cell.txt#644"} +UMLS:C4086003 Autologous CEA-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C123822 Autologous CEA-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#645","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4763556 Autologous CT-RCC-1 HERV-E-TCR-transduced-HLA-A11-restricted CD8+/CD34t+ T-cells biolink:Cell skos:exactMatch NCIT:C157344 Autologous CT-RCC-1 HERV-E-TCR-transduced-HLA-A11-restricted CD8+/CD34t+ T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#646","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1184138 Myoepithelial cell of primary lactiferous duct biolink:Cell skos:exactMatch UMLS:C1184138 Myoepithelial cell of primary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#647"} +UMLS:C5216261 Malignant cells|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216261 Malignant cells|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#648"} +UMLS:C1267862 Lymphocyte positive for CD10 antigen biolink:Cell skos:exactMatch SNOMEDCT:116848002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#649","identifierIndex":0} +CL:0001087 effector memory CD4-positive, alpha-beta T cell, terminally differentiated biolink:Cell skos:exactMatch CL:0001087 effector memory CD4-positive, alpha-beta T cell, terminally differentiated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#650","subject_information_content":100.0} +CL:0000024 oogonial cell biolink:Cell skos:exactMatch CL:0000024 oogonial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#651","subject_information_content":100.0} +UMLS:C5221011 Myeloblasts|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5221011 Myeloblasts|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#652"} +UMLS:C0229521 Perilymphatic cell biolink:Cell skos:exactMatch SNOMEDCT:76535006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#653","identifierIndex":0} +UMLS:C1514091 Neoplastic Small Neuroepithelial Cell biolink:Cell skos:exactMatch NCIT:C41835 Neoplastic Small Neuroepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#654","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1510808 Adipocyte with Nuclear Atypia biolink:Cell skos:exactMatch NCIT:C36978 Adipocyte with Nuclear Atypia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#655","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182659 Hyalocyte biolink:Cell skos:exactMatch UMLS:C1182659 Hyalocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#656"} +UMLS:C1267952 Lymphocyte positive for CD61 antigen biolink:Cell skos:exactMatch SNOMEDCT:117393006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#657","identifierIndex":0} +UMLS:C1257858 COS-7 Cells biolink:Cell skos:exactMatch UMLS:C1257858 COS-7 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#658"} +CL:0013000 forebrain radial glial cell biolink:Cell skos:exactMatch CL:0013000 forebrain radial glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#659","subject_information_content":100.0} +UMLS:C2327311 Stromal cell of ovarian cortex biolink:Cell skos:exactMatch UMLS:C2327311 Stromal cell of ovarian cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#660"} +UMLS:C1513067 Neoplastic Medium-Sized Lymphocyte with Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C37007 Neoplastic Medium-Sized Lymphocyte with Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#662","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979643 Blasts.CD3+CD16+CD56+ biolink:Cell skos:exactMatch UMLS:C1979643 Blasts.CD3+CD16+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#663"} +UMLS:C0003273 Antibody-Producing Cells biolink:Cell skos:exactMatch UMLS:C0003273 Antibody-Producing Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#664"} +UMLS:C1267976 Lymphocyte positive for CD86 antigen biolink:Cell skos:exactMatch SNOMEDCT:117416001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#665","identifierIndex":0} +UMLS:C3642419 Autologous Pluripotent ALDHbr Stem Cells ALD-451 biolink:Cell skos:exactMatch NCIT:C78466 Autologous Pluripotent ALDHbr Stem Cells ALD-451 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#666","subject_information_content":100.0,"identifierIndex":0} +CL:1001111 kidney loop of Henle thin descending limb epithelial cell biolink:Cell skos:exactMatch CL:1001111 kidney loop of Henle thin descending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#667","subject_information_content":100.0} +UMLS:C5157505 CD36 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157505 CD36 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#668"} +CL:0000103 bipolar neuron biolink:Cell skos:exactMatch CL:0000103 bipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#669","subject_information_content":79.23864834624368} +CL:0011001 spinal cord motor neuron biolink:Cell skos:exactMatch CL:0011001 spinal cord motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#670","subject_information_content":91.94953810872488} +CL:0002243 smooth muscle cell of sphincter of pupil biolink:Cell skos:exactMatch CL:0002243 smooth muscle cell of sphincter of pupil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#671","subject_information_content":100.0} +UMLS:C1180270 Myoepithelial cell of sweat gland biolink:Cell skos:exactMatch UMLS:C1180270 Myoepithelial cell of sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#672"} +UMLS:C5239341 WT1-loaded Artificial Adjuvant Vector Cell Immunotherapeutic ASP7517 biolink:Cell skos:exactMatch NCIT:C169049 WT1-loaded Artificial Adjuvant Vector Cell Immunotherapeutic ASP7517 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#673","subject_information_content":100.0,"identifierIndex":0} +CL:0008039 lower motor neuron biolink:Cell skos:exactMatch CL:0008039 lower motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#674","subject_information_content":82.42859222307153} +CL:0002550 fibroblast of the conjunctiva biolink:Cell skos:exactMatch CL:0002550 fibroblast of the conjunctiva biolink:Cell HumanCurated {"cliqueId":"Cell.txt#675","subject_information_content":100.0} +CL:0002287 type IV taste receptor cell biolink:Cell skos:exactMatch CL:0002287 type IV taste receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#661","subject_information_content":100.0} +UMLS:C2953590 Type D enteroendocrine cell of epithelium proper of duodenum biolink:Cell skos:exactMatch UMLS:C2953590 Type D enteroendocrine cell of epithelium proper of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#676"} +UMLS:C4725101 Autologous CD20-4SCAR-expressing T-cells 4SCAR20 biolink:Cell skos:exactMatch NCIT:C148525 Autologous CD20-4SCAR-expressing T-cells 4SCAR20 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#677","subject_information_content":100.0,"identifierIndex":0} +CL:0019028 midzonal region hepatocyte biolink:Cell skos:exactMatch CL:0019028 midzonal region hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#678","subject_information_content":100.0} +UMLS:C5238365 Autologous Peripheral Blood Lymphocytes from Ibrutinib-treated Chronic Lymphocytic Leukemia Patients IOV-2001 biolink:Cell skos:exactMatch NCIT:C167208 Autologous Peripheral Blood Lymphocytes from Ibrutinib-treated Chronic Lymphocytic Leukemia Patients IOV-2001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#679","subject_information_content":100.0,"identifierIndex":0} +CL:2000033 limb basal cell of epidermis biolink:Cell skos:exactMatch CL:2000033 limb basal cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#680","subject_information_content":100.0} +UMLS:C1524102 Leukocyte - Myelocyte (Granulocyte) - Neutrophil (MMHCC) biolink:Cell skos:exactMatch NCIT:C22593 Mouse Neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#681","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170941 Leukocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170941 Leukocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#682"} +CL:0002559 hair follicle cell biolink:Cell skos:exactMatch CL:0002559 hair follicle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#683","subject_information_content":85.74066969721673} +UMLS:C1514086 Neoplastic Small Cleaved Follicle Center Cell biolink:Cell skos:exactMatch NCIT:C37002 Neoplastic Small Cleaved Follicle Center Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#684","subject_information_content":100.0,"identifierIndex":0} +CL:0002579 omentum preadipocyte biolink:Cell skos:exactMatch CL:0002579 omentum preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#685","subject_information_content":100.0} +CL:4023016 vip GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023016 vip GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#686","subject_information_content":89.84144812560278} +UMLS:C5419241 Rexlemestrocel-L biolink:Cell skos:exactMatch NCIT:C171655 Rexlemestrocel-L biolink:Cell HumanCurated {"cliqueId":"Cell.txt#687","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267859 Lymphocyte positive for both CD8 antigen and HLA-DR antigen biolink:Cell skos:exactMatch SNOMEDCT:116815002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#688","identifierIndex":0} +UMLS:C5216323 Unidentified cells|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216323 Unidentified cells|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#689"} +CL:0002039 immature NK T cell stage I biolink:Cell skos:exactMatch CL:0002039 immature NK T cell stage I biolink:Cell HumanCurated {"cliqueId":"Cell.txt#690","subject_information_content":100.0} +UMLS:C1507174 Cells.CD4+CD28+ biolink:Cell skos:exactMatch UMLS:C1507174 Cells.CD4+CD28+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#691"} +UMLS:C1709204 Neoplastic Spindle-Shaped Adipocyte biolink:Cell skos:exactMatch NCIT:C48907 Neoplastic Spindle-Shaped Adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#692","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5237380 Allogeneic CD22-specific Universal CAR-expressing T-lymphocytes UCART22 biolink:Cell skos:exactMatch NCIT:C165696 Allogeneic CD22-specific Universal CAR-expressing T-lymphocytes UCART22 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#693","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267982 Lymphocyte positive for CD95 antigen biolink:Cell skos:exactMatch SNOMEDCT:117422005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#694","identifierIndex":0} +UMLS:C0545588 Blood plasmacytic cell biolink:Cell skos:exactMatch UMLS:C0545588 Blood plasmacytic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#696"} +UMLS:C1517806 Leukemic Cell biolink:Cell skos:exactMatch NCIT:C25553 Leukemic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#695","subject_information_content":71.94430466897393,"identifierIndex":0} +UMLS:C0427889 Vaginal epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:91766007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#697","identifierIndex":0} +UMLS:C5174616 Neutrophils | Control | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174616 Neutrophils | Control | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#698"} +UMLS:C1512105 Dysplastic Granulocyte biolink:Cell skos:exactMatch NCIT:C37051 Dysplastic Granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#699","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5549477 Spermatozoa Motile | Urine | Fertility testing biolink:Cell skos:exactMatch UMLS:C5549477 Spermatozoa Motile | Urine | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#700"} +CL:0000575 corneal epithelial cell biolink:Cell skos:exactMatch CL:0000575 corneal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#701","subject_information_content":100.0} +UMLS:C5157397 CD22+CD19+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157397 CD22+CD19+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#702"} +UMLS:C5174613 Neutrophils | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174613 Neutrophils | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#703"} +UMLS:C2332129 Internodal tract myocyte biolink:Cell skos:exactMatch UMLS:C2332129 Internodal tract myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#704"} +UMLS:C2826134 human myeloid progenitor cells CLT-008 biolink:Cell skos:exactMatch UMLS:C2826134 human myeloid progenitor cells CLT-008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#705"} +UMLS:C2324343 Type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell skos:exactMatch UMLS:C2324343 Type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#706"} +CL:0000121 Purkinje cell biolink:Cell skos:exactMatch CL:0000121 Purkinje cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#707","subject_information_content":100.0} +UMLS:C5216306 Plasma cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216306 Plasma cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#708"} +UMLS:C1514104 Neoplastic Stromal Cell biolink:Cell skos:exactMatch NCIT:C37150 Neoplastic Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#709","subject_information_content":81.79098623432766,"identifierIndex":0} +UMLS:C4240451 Smooth muscle fiber of intestine biolink:Cell skos:exactMatch UMLS:C4240451 Smooth muscle fiber of intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#710"} +CL:0002181 mucous neck cell of gastric gland biolink:Cell skos:exactMatch CL:0002181 mucous neck cell of gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#711","subject_information_content":100.0} +CL:0002313 endocrine-paracrine cell of prostate gland biolink:Cell skos:exactMatch CL:0002313 endocrine-paracrine cell of prostate gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#712","subject_information_content":100.0} +NCIT:C12571 Stromal Cell biolink:Cell skos:exactMatch NCIT:C12571 Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#713","subject_information_content":88.2062864997332} +UMLS:C1880478 Eccrine Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C62497 Eccrine Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#714","subject_information_content":100.0,"identifierIndex":0} +CL:0000227 binucleate cell biolink:Cell skos:exactMatch CL:0000227 binucleate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#715","subject_information_content":91.94953810872488} +CL:1001223 interlobulary vein endothelial cell biolink:Cell skos:exactMatch CL:1001223 interlobulary vein endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#716","subject_information_content":100.0} +UMLS:C1180242 Endothelial cell of artery biolink:Cell skos:exactMatch UMLS:C1180242 Endothelial cell of artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#717"} +CL:2000088 Ammon's horn basket cell biolink:Cell skos:exactMatch CL:2000088 Ammon's horn basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#718","subject_information_content":100.0} +CL:1000548 kidney outer medulla collecting duct epithelial cell biolink:Cell skos:exactMatch CL:1000548 kidney outer medulla collecting duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#719","subject_information_content":91.94953810872488} +CL:0002460 CD8alpha-negative thymic conventional dendritic cell biolink:Cell skos:exactMatch CL:0002460 CD8alpha-negative thymic conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#720","subject_information_content":100.0} +CL:0000515 skeletal muscle myoblast biolink:Cell skos:exactMatch CL:0000515 skeletal muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#721","subject_information_content":89.84144812560278} +CL:0000872 splenic marginal zone macrophage biolink:Cell skos:exactMatch CL:0000872 splenic marginal zone macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#722","subject_information_content":100.0} +UMLS:C1512049 Downey Cell biolink:Cell skos:exactMatch NCIT:C36736 Downey Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#723","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2340402 Intrafascicular oligodendrocyte biolink:Cell skos:exactMatch UMLS:C2340402 Intrafascicular oligodendrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#724"} +UMLS:C2333912 Transitional myocyte of middle internodal tract biolink:Cell skos:exactMatch UMLS:C2333912 Transitional myocyte of middle internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#725"} +UMLS:C4038492 Cells.diploid.G1 phase biolink:Cell skos:exactMatch UMLS:C4038492 Cells.diploid.G1 phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#726"} +UMLS:C2337276 Goblet cell of epithelium of gastric cardiac gland biolink:Cell skos:exactMatch UMLS:C2337276 Goblet cell of epithelium of gastric cardiac gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#727"} +UMLS:C4761323 TCR alpha/beta/CD19-depleted Allogeneic Hematopoietic Progenitor Cells biolink:Cell skos:exactMatch NCIT:C157370 TCR alpha/beta/CD19-depleted Allogeneic Hematopoietic Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#728","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163712 Erythrocytes | Bronchoalveolar lavage | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163712 Erythrocytes | Bronchoalveolar lavage | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#729"} +CL:0000913 effector memory CD8-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000913 effector memory CD8-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#730","subject_information_content":100.0} +UMLS:C0682649 Proprioceptor biolink:Cell skos:exactMatch NCIT:C13823 Proprioceptor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#731","subject_information_content":100.0,"identifierIndex":0} +CL:0002539 aortic smooth muscle cell biolink:Cell skos:exactMatch CL:0002539 aortic smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#732","subject_information_content":100.0} +CL:0000389 socket cell (sensu Nematoda) biolink:Cell skos:exactMatch CL:0000389 socket cell (sensu Nematoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#733","subject_information_content":100.0} +UMLS:C1513709 Mucin-Producing Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36856 Mucin-Producing Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#734","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3852949 V1-Derived Interneurons biolink:Cell skos:exactMatch UMLS:C3852949 V1-Derived Interneurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#735"} +UMLS:C5184823 Variant lymphocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184823 Variant lymphocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#736"} +UMLS:C5206714 Indium In 111-Autologous CMV-pp65-LAMP mRNA Loaded Dendritic Cells biolink:Cell skos:exactMatch NCIT:C162641 Indium In 111-Autologous CMV-pp65-LAMP mRNA Loaded Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#737","subject_information_content":100.0,"identifierIndex":0} +CL:1000357 microfold cell of epithelium proper of jejunum biolink:Cell skos:exactMatch CL:1000357 microfold cell of epithelium proper of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#738","subject_information_content":100.0} +UMLS:C5216262 Malignant cells|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216262 Malignant cells|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#739"} +CL:0000633 Hensen cell biolink:Cell skos:exactMatch CL:0000633 Hensen cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#740","subject_information_content":100.0} +UMLS:C1518272 Neuroectodermal Cell biolink:Cell skos:exactMatch NCIT:C42050 Neuroectodermal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#741","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0002618 endothelial cell of umbilical vein biolink:Cell skos:exactMatch CL:0002618 endothelial cell of umbilical vein biolink:Cell HumanCurated {"cliqueId":"Cell.txt#742","subject_information_content":100.0} +UMLS:C1254550 Toxicopathic Erythrocyte biolink:Cell skos:exactMatch UMLS:C1254550 Toxicopathic Erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#743"} +CL:4023052 Betz upper motor neuron biolink:Cell skos:exactMatch CL:4023052 Betz upper motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#744","subject_information_content":100.0} +UMLS:C1267941 Lymphocyte positive for CD49F antigen biolink:Cell skos:exactMatch SNOMEDCT:117384005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#745","identifierIndex":0} +UMLS:C5216250 Lymphocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216250 Lymphocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#746"} +UMLS:C5418366 Elivaldogene Tavalentivec biolink:Cell skos:exactMatch NCIT:C169938 Elivaldogene Tavalentivec biolink:Cell HumanCurated {"cliqueId":"Cell.txt#747","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1268459 FMC-7+ cell biolink:Cell skos:exactMatch SNOMEDCT:116831005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#748","identifierIndex":0} +UMLS:C2986402 Anti-CTLA4 MoAb RNA-transfected Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C94217 Anti-CTLA4 MoAb RNA-transfected Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#749","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0883467 Cells.CD11+CD20+ biolink:Cell skos:exactMatch UMLS:C0883467 Cells.CD11+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#750"} +UMLS:C0282479 Muscle Fibers, Red biolink:Cell skos:exactMatch UMLS:C0282479 Muscle Fibers, Red biolink:Cell HumanCurated {"cliqueId":"Cell.txt#751"} +UMLS:C1181294 Endo-epithelial cell biolink:Cell skos:exactMatch UMLS:C1181294 Endo-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#752"} +UMLS:C5172503 Mesothelial cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172503 Mesothelial cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#753"} +CL:1001598 small intestine glandular cell biolink:Cell skos:exactMatch CL:1001598 small intestine glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#754","subject_information_content":81.20444558259193} +UMLS:C1518067 Lymphocyte with Basophilic Villous Cytoplasm biolink:Cell skos:exactMatch NCIT:C36993 Lymphocyte with Basophilic Villous Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#755","subject_information_content":100.0,"identifierIndex":0} +CL:4023046 L6b subplate glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023046 L6b subplate glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#756","subject_information_content":100.0} +CL:0002599 smooth muscle cell of the esophagus biolink:Cell skos:exactMatch CL:0002599 smooth muscle cell of the esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#757","subject_information_content":100.0} +UMLS:C2330414 Collateral ganglion neuron biolink:Cell skos:exactMatch UMLS:C2330414 Collateral ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#758"} +CL:0011105 dopamanergic interplexiform cell biolink:Cell skos:exactMatch CL:0011105 dopamanergic interplexiform cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#759","subject_information_content":100.0} +UMLS:C4511161 Blast cell positive for cytoplasmic CD13 antigen biolink:Cell skos:exactMatch SNOMEDCT:725480006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#760","identifierIndex":0} +UMLS:C2335776 Myocardial endocrine cell of septal division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2335776 Myocardial endocrine cell of septal division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#761"} +CL:1000322 pancreatic goblet cell biolink:Cell skos:exactMatch CL:1000322 pancreatic goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#762","subject_information_content":100.0} +UMLS:C5155166 Blasts | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155166 Blasts | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#763"} +UMLS:C1709161 Neoplastic Adenohypophysial Cell biolink:Cell skos:exactMatch NCIT:C45963 Neoplastic Adenohypophysial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#764","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C4322829 Primitive neuroblast biolink:Cell skos:exactMatch UMLS:C4322829 Primitive neuroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#765"} +CL:0000542 lymphocyte biolink:Cell skos:exactMatch CL:0000542 lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#766","subject_information_content":58.03454046105857} +UMLS:C5157622 CD57 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157622 CD57 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#767"} +UMLS:C5157512 CD38+ Lambda+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157512 CD38+ Lambda+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#768"} +UMLS:C1709172 Neoplastic Epithelioid Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49080 Neoplastic Epithelioid Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#769","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5151348 Abnormal lymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5151348 Abnormal lymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#770"} +UMLS:C1267985 Lymphocyte positive for CD98 antigen biolink:Cell skos:exactMatch SNOMEDCT:117425007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#771","identifierIndex":0} +UMLS:C1444185 Cleidoic ovum part biolink:Cell skos:exactMatch UMLS:C1444185 Cleidoic ovum part biolink:Cell HumanCurated {"cliqueId":"Cell.txt#772"} +CL:0000577 type EC enteroendocrine cell biolink:Cell skos:exactMatch CL:0000577 type EC enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#773","subject_information_content":89.84144812560278} +UMLS:C1514107 Neoplastic T-Immunoblast biolink:Cell skos:exactMatch NCIT:C37012 Neoplastic T-Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#774","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4763655 EBV LMP-2A-specific Autologous CD8+ T-cells biolink:Cell skos:exactMatch NCIT:C157488 EBV LMP-2A-specific Autologous CD8+ T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#775","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4763523 Autologous CLL1-CD33 Compound CAR T Cells biolink:Cell skos:exactMatch NCIT:C157281 Autologous CLL1-CD33 Compound CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#776","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3496152 A8 dopamine cells biolink:Cell skos:exactMatch UMLS:C3496152 A8 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#777"} +CL:1001286 inner medulla vasa recta descending limb cell biolink:Cell skos:exactMatch CL:1001286 inner medulla vasa recta descending limb cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#778","subject_information_content":100.0} +UMLS:C3641721 Naive T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C104081 Naive T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#779","subject_information_content":100.0,"identifierIndex":0} +CL:0002193 myelocyte biolink:Cell skos:exactMatch CL:0002193 myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#780","subject_information_content":91.94953810872488} +UMLS:C5167386 Histiocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5167386 Histiocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#781"} +CL:0000579 border follicle cell biolink:Cell skos:exactMatch CL:0000579 border follicle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#782","subject_information_content":100.0} +CL:0011024 double negative T regulatory cell biolink:Cell skos:exactMatch CL:0011024 double negative T regulatory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#783","subject_information_content":100.0} +UMLS:C4518152 Population of all spermatozoa with amorphous head in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725235007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#784","identifierIndex":0} +CL:0000639 basophil cell of pars distalis of adenohypophysis biolink:Cell skos:exactMatch CL:0000639 basophil cell of pars distalis of adenohypophysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#785","subject_information_content":89.84144812560278} +CL:0002282 type TG enteroendocrine cell biolink:Cell skos:exactMatch CL:0002282 type TG enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#786","subject_information_content":100.0} +UMLS:C5426795 Alveolar macrophages | Lower respiratory specimen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5426795 Alveolar macrophages | Lower respiratory specimen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#787"} +CL:4023094 tufted pyramidal neuron biolink:Cell skos:exactMatch CL:4023094 tufted pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#788","subject_information_content":100.0} +UMLS:C5216316 Promyelocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216316 Promyelocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#789"} +UMLS:C0333853 Cleaved cell biolink:Cell skos:exactMatch NCIT:C28128 Cleaved Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#790","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183497 Cell of surface ectoderm biolink:Cell skos:exactMatch UMLS:C1183497 Cell of surface ectoderm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#791"} +UMLS:C0333853 Cleaved cell biolink:Cell skos:exactMatch SNOMEDCT:58604003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#790","subject_information_content":100.0,"identifierIndex":1} +CL:0002488 trophoblast giant cell biolink:Cell skos:exactMatch CL:0002488 trophoblast giant cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#792","subject_information_content":91.94953810872488} +UMLS:C1513171 Metaplastic Columnar Cell biolink:Cell skos:exactMatch NCIT:C37096 Metaplastic Columnar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#793","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3496353 C1 adrenaline cells biolink:Cell skos:exactMatch UMLS:C3496353 C1 adrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#794"} +UMLS:C2350244 Megakaryocyte-Erythroid Progenitor Cells biolink:Cell skos:exactMatch MESH:D055015 Megakaryocyte-Erythroid Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#795","identifierIndex":0} +CL:0002352 gestational hematopoietic stem cell biolink:Cell skos:exactMatch CL:0002352 gestational hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#796","subject_information_content":86.87026217152628} +UMLS:C1440937 Lymphocytes.activated T cells biolink:Cell skos:exactMatch UMLS:C1440937 Lymphocytes.activated T cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#797"} +CL:0009082 committed double negative thymocyte (Homo sapiens) biolink:Cell skos:exactMatch CL:0009082 committed double negative thymocyte (Homo sapiens) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#798"} +UMLS:C1267919 Lymphocyte positive for CD41A antigen biolink:Cell skos:exactMatch SNOMEDCT:117587004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#799","identifierIndex":0} +CL:0002168 border cell of cochlea biolink:Cell skos:exactMatch CL:0002168 border cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#800","subject_information_content":100.0} +UMLS:C1513940 Neoplastic Clear Cell biolink:Cell skos:exactMatch NCIT:C36757 Neoplastic Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#801","subject_information_content":80.66139376001811,"identifierIndex":0} +CL:0011031 monocyte-derived dendritic cell biolink:Cell skos:exactMatch CL:0011031 monocyte-derived dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#802"} +UMLS:C1979649 Blasts.cytoplasmic CD2 biolink:Cell skos:exactMatch UMLS:C1979649 Blasts.cytoplasmic CD2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#803"} +UMLS:C2334745 Astroblast biolink:Cell skos:exactMatch UMLS:C2334745 Astroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#804"} +UMLS:C5216272 Monocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216272 Monocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#805"} +UMLS:C1518244 Malignant Spindle Squamous Cell biolink:Cell skos:exactMatch NCIT:C36775 Malignant Spindle Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#806","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157425 CD3 cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157425 CD3 cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#807"} +CL:1001320 urethra cell biolink:Cell skos:exactMatch CL:1001320 urethra cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#808","subject_information_content":89.84144812560278} +UMLS:C4316839 CD16-CD57+ biolink:Cell skos:exactMatch UMLS:C4316839 CD16-CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#809"} +UMLS:C5417841 Autologous CD19-targeted CAR-T Cells GC007F biolink:Cell skos:exactMatch NCIT:C171092 Autologous CD19-targeted CAR-T Cells GC007F biolink:Cell HumanCurated {"cliqueId":"Cell.txt#810","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1883048 Small Melanoma Cell biolink:Cell skos:exactMatch NCIT:C62401 Small Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#811","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513993 Neoplastic Keratinocyte biolink:Cell skos:exactMatch NCIT:C36749 Neoplastic Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#812","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000178 Leydig cell biolink:Cell skos:exactMatch CL:0000178 Leydig cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#813","subject_information_content":100.0} +UMLS:C0546499 P.B. plasma cell biolink:Cell skos:exactMatch UMLS:C0546499 P.B. plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#815"} +CL:0000648 kidney granular cell biolink:Cell skos:exactMatch CL:0000648 kidney granular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#814","subject_information_content":100.0} +UMLS:C4322827 CD22+CD19+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322827 CD22+CD19+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#816"} +UMLS:C1179892 Transitional myocyte biolink:Cell skos:exactMatch UMLS:C1179892 Transitional myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#817"} +UMLS:C0882860 Cells.CD4+CD25+ biolink:Cell skos:exactMatch UMLS:C0882860 Cells.CD4+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#818"} +UMLS:C1317186 Cells.CD10+CD25+ biolink:Cell skos:exactMatch UMLS:C1317186 Cells.CD10+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#819"} +UMLS:C1882962 Round Adenocarcinoma Cell with Abundant Cytoplasm and Vesicular Nucleus biolink:Cell skos:exactMatch NCIT:C54689 Round Adenocarcinoma Cell with Abundant Cytoplasm and Vesicular Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#820","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5181331 Spermatids | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5181331 Spermatids | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#821"} +UMLS:C5220580 Erythrocytes.dysmorphic|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220580 Erythrocytes.dysmorphic|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#822"} +CL:0000683 ependymoglial cell biolink:Cell skos:exactMatch CL:0000683 ependymoglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#823","subject_information_content":94.92072406280138} +CL:1000505 kidney pelvis cell biolink:Cell skos:exactMatch CL:1000505 kidney pelvis cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#824","subject_information_content":89.84144812560278} +UMLS:C2338967 Interleukin 12-activated natural killer cell biolink:Cell skos:exactMatch UMLS:C2338967 Interleukin 12-activated natural killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#825"} +CL:1000487 smooth muscle cell of prostate biolink:Cell skos:exactMatch CL:1000487 smooth muscle cell of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#826","subject_information_content":100.0} +CL:0000662 neuroglioblast (sensu Nematoda) biolink:Cell skos:exactMatch CL:0000662 neuroglioblast (sensu Nematoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#827","subject_information_content":100.0} +UMLS:C5204815 Alpha/beta T-cell/CD19+ B-cell-depleted Unrelated or Partially Matched Donor-derived Allogeneic Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C159940 Alpha/beta T-cell/CD19+ B-cell-depleted Unrelated or Partially Matched Donor-derived Allogeneic Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#828","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5182767 T-cell naive and memory and effector (CD27 and CD45RA) subsets | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5182767 T-cell naive and memory and effector (CD27 and CD45RA) subsets | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#829"} +UMLS:C1517544 Giant Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36788 Giant Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#830","subject_information_content":86.87026217152628,"identifierIndex":0} +CL:0002044 Kit-positive, integrin beta7-high basophil mast progenitor cell biolink:Cell skos:exactMatch CL:0002044 Kit-positive, integrin beta7-high basophil mast progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#831","subject_information_content":100.0} +UMLS:C5220579 Erythrocyte clumps|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220579 Erythrocyte clumps|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#832"} +CL:0002066 Feyrter cell biolink:Cell skos:exactMatch CL:0002066 Feyrter cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#833","subject_information_content":94.92072406280138} +UMLS:C5157423 CD3- CD8- CD57+ Cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157423 CD3- CD8- CD57+ Cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#834"} +UMLS:C5420597 Mixed Adherent Cells in Suspension biolink:Cell skos:exactMatch NCIT:C174118 Mixed Adherent Cells in Suspension biolink:Cell HumanCurated {"cliqueId":"Cell.txt#835","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1179115 Basal proper cell of olfactory epithelium biolink:Cell skos:exactMatch UMLS:C1179115 Basal proper cell of olfactory epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#836"} +UMLS:C1709771 Pulmonary Neuroendocrine Cell biolink:Cell skos:exactMatch NCIT:C45572 Pulmonary Neuroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#837","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182606 Granular cell of epidermis biolink:Cell skos:exactMatch UMLS:C1182606 Granular cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#838"} +CL:1001108 kidney loop of Henle medullary thick ascending limb epithelial cell biolink:Cell skos:exactMatch CL:1001108 kidney loop of Henle medullary thick ascending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#839","subject_information_content":100.0} +CL:0000078 peridermal cell biolink:Cell skos:exactMatch CL:0000078 peridermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#840","subject_information_content":100.0} +CL:1000442 urothelial cell of trigone of urinary bladder biolink:Cell skos:exactMatch CL:1000442 urothelial cell of trigone of urinary bladder biolink:Cell HumanCurated {"cliqueId":"Cell.txt#841","subject_information_content":100.0} +UMLS:C2326743 Glycinergic amacrine cell of retina biolink:Cell skos:exactMatch UMLS:C2326743 Glycinergic amacrine cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#842"} +UMLS:C4763664 CD56-enriched CD3-positive Donor Lymphocytes biolink:Cell skos:exactMatch NCIT:C157500 CD56-enriched CD3-positive Donor Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#843","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3178760 Mirror Neurons biolink:Cell skos:exactMatch MESH:D059167 Mirror Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#844","identifierIndex":0} +UMLS:C0883468 CD16+CD56+ cell biolink:Cell skos:exactMatch SNOMEDCT:732275003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#845","identifierIndex":0} +CL:0009080 tuft cell of small intestine biolink:Cell skos:exactMatch CL:0009080 tuft cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#846"} +CL:1000345 paneth cell of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell skos:exactMatch CL:1000345 paneth cell of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#847","subject_information_content":100.0} +UMLS:C1516393 Centrocyte-Like Cell biolink:Cell skos:exactMatch NCIT:C37001 Centrocyte-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#848","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333851 Sezary cell biolink:Cell skos:exactMatch NCIT:C36722 Sezary Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#849","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333851 Sezary cell biolink:Cell skos:exactMatch SNOMEDCT:45614000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#849","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0883472 CD3-CD16+CD56+ cell biolink:Cell skos:exactMatch SNOMEDCT:732281006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#851","identifierIndex":0} +UMLS:C5418870 Anti-CD19/CD22 CAR NK Cells biolink:Cell skos:exactMatch NCIT:C170904 Anti-CD19/CD22 CAR NK Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#852","subject_information_content":100.0,"identifierIndex":0} +CL:0002499 spongiotrophoblast cell biolink:Cell skos:exactMatch CL:0002499 spongiotrophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#853","subject_information_content":100.0} +UMLS:C1267907 Lymphocyte positive for CD33 antigen biolink:Cell skos:exactMatch SNOMEDCT:117578008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#854","identifierIndex":0} +UMLS:C1514111 Neoplastic T-Lymphocyte with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C39657 Neoplastic T-Lymphocyte with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#855","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5172508 Mesothelial cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172508 Mesothelial cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#856"} +UMLS:C1979663 Cell positive for BCLXL protein biolink:Cell skos:exactMatch SNOMEDCT:725314007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#857","identifierIndex":0} +CL:0000054 bone matrix secreting cell biolink:Cell skos:exactMatch CL:0000054 bone matrix secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#858","subject_information_content":100.0} +CL:0002169 basal cell of olfactory epithelium biolink:Cell skos:exactMatch CL:0002169 basal cell of olfactory epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#859","subject_information_content":89.84144812560278} +CL:0009000 sensory neuron of spinal nerve biolink:Cell skos:exactMatch CL:0009000 sensory neuron of spinal nerve biolink:Cell HumanCurated {"cliqueId":"Cell.txt#860","subject_information_content":100.0} +CL:0000727 primary pigment cell biolink:Cell skos:exactMatch CL:0000727 primary pigment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#861","subject_information_content":100.0} +UMLS:C4085976 Anti-MUC1 CAR-transduced Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C124646 Anti-MUC1 CAR-transduced Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#862","subject_information_content":100.0,"identifierIndex":0} +CL:0000769 basophilic metamyelocyte biolink:Cell skos:exactMatch CL:0000769 basophilic metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#850","subject_information_content":100.0} +UMLS:C1711355 Malignant Neuroectodermal Cell biolink:Cell skos:exactMatch NCIT:C53987 Malignant Neuroectodermal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#863","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0009029 mesothelial cell of appendix biolink:Cell skos:exactMatch CL:0009029 mesothelial cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#864","subject_information_content":100.0} +UMLS:C1717943 Immunodeficiency markers biolink:Cell skos:exactMatch UMLS:C1717943 Immunodeficiency markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#865"} +UMLS:C5148824 Reticulocytes.low fluorescence biolink:Cell skos:exactMatch UMLS:C5148824 Reticulocytes.low fluorescence biolink:Cell HumanCurated {"cliqueId":"Cell.txt#866"} +UMLS:C5380996 Cells.CD8.HLA-A2 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5380996 Cells.CD8.HLA-A2 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#867"} +UMLS:C0222619 Structure of granular polyhedral cells of breast biolink:Cell skos:exactMatch SNOMEDCT:15192008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#868","identifierIndex":0} +CL:0005018 ghrelin secreting cell biolink:Cell skos:exactMatch CL:0005018 ghrelin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#869","subject_information_content":91.94953810872488} +CL:0002321 embryonic cell (metazoa) biolink:Cell skos:exactMatch CL:0002321 embryonic cell (metazoa) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#870","subject_information_content":74.15937240904506} +MESH:D000565 Ameloblasts biolink:Cell skos:exactMatch MESH:D000565 Ameloblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#871"} +UMLS:C2328384 Peripheral blood mesothelial cell biolink:Cell skos:exactMatch UMLS:C2328384 Peripheral blood mesothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#872"} +CL:0008007 visceral muscle cell biolink:Cell skos:exactMatch CL:0008007 visceral muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#873","subject_information_content":70.24569809088175} +UMLS:C2953664 Type D enteroendocrine cell of epithelium proper of ileum biolink:Cell skos:exactMatch UMLS:C2953664 Type D enteroendocrine cell of epithelium proper of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#875"} +UMLS:C5216253 Lymphocytes|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216253 Lymphocytes|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#874"} +UMLS:C1440361 Cells.CD83 biolink:Cell skos:exactMatch UMLS:C1440361 Cells.CD83 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#876"} +UMLS:C3494180 Bone Marrow Stromal Cells, Multipotent biolink:Cell skos:exactMatch UMLS:C3494180 Bone Marrow Stromal Cells, Multipotent biolink:Cell HumanCurated {"cliqueId":"Cell.txt#877"} +UMLS:C1511638 Cytotrophoblastic Cell biolink:Cell skos:exactMatch NCIT:C38575 Cytotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#878","subject_information_content":100.0,"identifierIndex":0} +CL:0002206 brush cell of terminal bronchiole biolink:Cell skos:exactMatch CL:0002206 brush cell of terminal bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#880","subject_information_content":100.0} +UMLS:C5180537 Secondary Spermatocytes | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5180537 Secondary Spermatocytes | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#881"} +UMLS:C0552639 tubular cells biolink:Cell skos:exactMatch UMLS:C0552639 tubular cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#882"} +UMLS:C2329740 Set of lymphocytes biolink:Cell skos:exactMatch UMLS:C2329740 Set of lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#883"} +UMLS:C5221135 Plasma cells.monotypic.S phase biolink:Cell skos:exactMatch UMLS:C5221135 Plasma cells.monotypic.S phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#884"} +UMLS:C0229535 Pituitary cell biolink:Cell skos:exactMatch SNOMEDCT:82406005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#885","identifierIndex":0} +CL:2000035 anterior lateral line neuromast mantle cell biolink:Cell skos:exactMatch CL:2000035 anterior lateral line neuromast mantle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#879","subject_information_content":100.0} +UMLS:C5173441 Monocytes.abnormal/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173441 Monocytes.abnormal/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#886"} +UMLS:C1148320 Cells.CD11c-CD20+ biolink:Cell skos:exactMatch UMLS:C1148320 Cells.CD11c-CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#887"} +CL:0009043 intestinal crypt stem cell of colon biolink:Cell skos:exactMatch CL:0009043 intestinal crypt stem cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#888","subject_information_content":100.0} +UMLS:C1292097 IgA B lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:115603005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#889","identifierIndex":0} +CL:2000001 peripheral blood mononuclear cell biolink:Cell skos:exactMatch CL:2000001 peripheral blood mononuclear cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#890","subject_information_content":100.0} +CL:0002467 Gr1-high myeloid suppressor cell biolink:Cell skos:exactMatch CL:0002467 Gr1-high myeloid suppressor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#891","subject_information_content":100.0} +UMLS:C4329333 Anti-LeY-CAR-transduced Autologous T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C132683 Anti-LeY-CAR-transduced Autologous T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#892","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514108 Neoplastic T-Lymphoblast biolink:Cell skos:exactMatch NCIT:C37071 Neoplastic T-Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#893","subject_information_content":100.0,"identifierIndex":0} +CL:0002401 mature dendritic epithelial T cell precursor biolink:Cell skos:exactMatch CL:0002401 mature dendritic epithelial T cell precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#894","subject_information_content":100.0} +CL:0000435 alkali secreting cell biolink:Cell skos:exactMatch CL:0000435 alkali secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#895","subject_information_content":100.0} +CL:0000185 myoepithelial cell biolink:Cell skos:exactMatch CL:0000185 myoepithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#896","subject_information_content":79.23864834624368} +UMLS:C0882768 Cell positive for CD1 antigen biolink:Cell skos:exactMatch SNOMEDCT:725316009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#897","identifierIndex":0} +CL:0007002 precementoblast biolink:Cell skos:exactMatch CL:0007002 precementoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#898","subject_information_content":100.0} +UMLS:C2337416 Chromophilic cell biolink:Cell skos:exactMatch UMLS:C2337416 Chromophilic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#899"} +UMLS:C1720857 Adipocytes, Brown biolink:Cell skos:exactMatch MESH:D052437 Adipocytes, Brown biolink:Cell HumanCurated {"cliqueId":"Cell.txt#900","identifierIndex":0} +CL:1001318 renal interstitial pericyte biolink:Cell skos:exactMatch CL:1001318 renal interstitial pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#901","subject_information_content":91.94953810872488} +UMLS:C1512549 Hyperchromatic Megakaryocyte biolink:Cell skos:exactMatch NCIT:C37049 Hyperchromatic Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#902","subject_information_content":100.0,"identifierIndex":0} +CL:0002400 Fraction B/C precursor B cell biolink:Cell skos:exactMatch CL:0002400 Fraction B/C precursor B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#903","subject_information_content":89.84144812560278} +UMLS:C1519174 Salivary Gland Myoepithelial Cell biolink:Cell skos:exactMatch NCIT:C40411 Salivary Gland Myoepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#904","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2336257 Pleural macrophage biolink:Cell skos:exactMatch UMLS:C2336257 Pleural macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#905"} +UMLS:C1708870 Malignant Cytotrophoblastic Cell biolink:Cell skos:exactMatch NCIT:C54118 Malignant Cytotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#906","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3829297 Lenti-D/ABCD1-transduced Autologous Hematopoietic Stem Cells biolink:Cell skos:exactMatch NCIT:C111902 Lenti-D/ABCD1-transduced Autologous Hematopoietic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#907","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4727621 Autologous NY-ESO-1 TCR-targeted T Lymphocytes biolink:Cell skos:exactMatch NCIT:C148150 Autologous NY-ESO-1 TCR-targeted T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#908","subject_information_content":100.0,"identifierIndex":0} +CL:0000021 female germ cell biolink:Cell skos:exactMatch CL:0000021 female germ cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#909","subject_information_content":81.20444558259193} +UMLS:C2328655 Reticular cell of splenic cord biolink:Cell skos:exactMatch UMLS:C2328655 Reticular cell of splenic cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#910"} +UMLS:C1440301 Cells.CD37 biolink:Cell skos:exactMatch UMLS:C1440301 Cells.CD37 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#911"} +UMLS:C1440360 Cells.CD82 biolink:Cell skos:exactMatch UMLS:C1440360 Cells.CD82 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#912"} +UMLS:C5238118 Adimlecleucel biolink:Cell skos:exactMatch NCIT:C166763 Adimlecleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#913","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5418006 Autologous CD34+-enriched HSPCs Transduced with Lentiviral Vector Carrying FANCA Gene RP-L102 biolink:Cell skos:exactMatch NCIT:C173602 Mozafancogene Autotemcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#914","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0684123 Late erythroblast biolink:Cell skos:exactMatch UMLS:C0684123 Late erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#915"} +CL:0005011 renal alpha-intercalated cell biolink:Cell skos:exactMatch CL:0005011 renal alpha-intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#916","subject_information_content":100.0} +UMLS:C3900007 Autologous 4-1BB Selected Tumor Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C119703 Autologous 4-1BB Selected Tumor Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#917","subject_information_content":100.0,"identifierIndex":0} +CL:0011029 cnidocyte biolink:Cell skos:exactMatch CL:0011029 cnidocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#919"} +UMLS:C1267914 Lymphocyte positive for CD37 antigen biolink:Cell skos:exactMatch SNOMEDCT:117583000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#920","identifierIndex":0} +UMLS:C5205410 Allogeneic CD34-positive Enriched Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C160626 Allogeneic CD34-positive Enriched Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#921","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1955380 Spermatozoa structure biolink:Cell skos:exactMatch UMLS:C1955380 Spermatozoa structure biolink:Cell HumanCurated {"cliqueId":"Cell.txt#918"} +UMLS:C0314585 Diffusion chamber colony-forming unit biolink:Cell skos:exactMatch SNOMEDCT:445324003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#922","identifierIndex":0} +CL:0000641 chromophobe cell biolink:Cell skos:exactMatch CL:0000641 chromophobe cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#923","subject_information_content":100.0} +CL:0012001 neuron of the forebrain biolink:Cell skos:exactMatch CL:0012001 neuron of the forebrain biolink:Cell HumanCurated {"cliqueId":"Cell.txt#924","subject_information_content":73.74052434305256} +CL:0000659 eggshell secreting cell biolink:Cell skos:exactMatch CL:0000659 eggshell secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#925","subject_information_content":100.0} +CL:1000277 smooth muscle fiber of jejunum biolink:Cell skos:exactMatch CL:1000277 smooth muscle fiber of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#926","subject_information_content":100.0} +UMLS:C0598089 established cell line biolink:Cell skos:exactMatch UMLS:C0598089 established cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#927"} +CL:0000092 osteoclast biolink:Cell skos:exactMatch CL:0000092 osteoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#928","subject_information_content":86.87026217152628} +CL:2000022 cardiac septum cell biolink:Cell skos:exactMatch CL:2000022 cardiac septum cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#929","subject_information_content":85.74066969721673} +CL:0000638 acidophil cell of pars distalis of adenohypophysis biolink:Cell skos:exactMatch CL:0000638 acidophil cell of pars distalis of adenohypophysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#930","subject_information_content":89.84144812560278} +UMLS:C4505326 Dendritic Epithelial T Cells biolink:Cell skos:exactMatch UMLS:C4505326 Dendritic Epithelial T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#931"} +UMLS:C2338142 Non-nucleated colligocyte biolink:Cell skos:exactMatch UMLS:C2338142 Non-nucleated colligocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#932"} +UMLS:C5382943 Interferon-gamma producing HLA-B8 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382943 Interferon-gamma producing HLA-B8 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#933"} +UMLS:C1267821 T lymphocyte positive for both CD3 antigen and CD4 antigen biolink:Cell skos:exactMatch SNOMEDCT:115396002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#934","identifierIndex":0} +UMLS:C1513029 Mature T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C33061 Mature T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#935","subject_information_content":73.53974887400256,"identifierIndex":0} +UMLS:C2924332 Erythrocytes.pitted biolink:Cell skos:exactMatch UMLS:C2924332 Erythrocytes.pitted biolink:Cell HumanCurated {"cliqueId":"Cell.txt#936"} +UMLS:C5184272 Tubular cells | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5184272 Tubular cells | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#937"} +UMLS:C0444088 Tissue cell sample biolink:Cell skos:exactMatch UMLS:C0444088 Tissue cell sample biolink:Cell HumanCurated {"cliqueId":"Cell.txt#938"} +CL:0000678 commissural neuron biolink:Cell skos:exactMatch CL:0000678 commissural neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#939","subject_information_content":100.0} +CL:0002106 IgD-positive CD38-positive IgG memory B cell biolink:Cell skos:exactMatch CL:0002106 IgD-positive CD38-positive IgG memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#940","subject_information_content":100.0} +UMLS:C1514026 Neoplastic Monoblast biolink:Cell skos:exactMatch NCIT:C37181 Neoplastic Monoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#941","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4697021 Cells.CD27+ biolink:Cell skos:exactMatch UMLS:C4697021 Cells.CD27+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#942"} +UMLS:C3900005 Autologous Anti-HPV-16 E6 T-cell Receptor Gene-engineered Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C118850 Autologous Anti-HPV-16 E6 T-cell Receptor Gene-engineered Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#943","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513996 Neoplastic Large B-Lymphocyte with Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C38660 Neoplastic Large B-Lymphocyte with Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#944","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0872268 self renewing cell biolink:Cell skos:exactMatch UMLS:C0872268 self renewing cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#945"} +UMLS:C1515108 Syncytiotrophoblast cell biolink:Cell skos:exactMatch NCIT:C38574 Syncytiotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#946","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267954 Lymphocyte positive for CD62L antigen biolink:Cell skos:exactMatch SNOMEDCT:117395004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#947","identifierIndex":0} +UMLS:C1514007 Neoplastic Large Pleomorphic Germ Cell biolink:Cell skos:exactMatch NCIT:C36905 Neoplastic Large Pleomorphic Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#948","subject_information_content":100.0,"identifierIndex":0} +CL:0000469 ganglion mother cell biolink:Cell skos:exactMatch CL:0000469 ganglion mother cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#949","subject_information_content":100.0} +UMLS:C0546503 P.B. hemocytoblast biolink:Cell skos:exactMatch UMLS:C0546503 P.B. hemocytoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#950"} +UMLS:C5170008 Kappa lymphocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5170008 Kappa lymphocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#951"} +UMLS:C1179672 Stem cell of intestinal crypt of Lieberkuhn biolink:Cell skos:exactMatch UMLS:C1179672 Stem cell of intestinal crypt of Lieberkuhn biolink:Cell HumanCurated {"cliqueId":"Cell.txt#952"} +CL:0000407 scolopidial ligament cell biolink:Cell skos:exactMatch CL:0000407 scolopidial ligament cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#953","subject_information_content":100.0} +UMLS:C0945932 Cells.CD42 biolink:Cell skos:exactMatch UMLS:C0945932 Cells.CD42 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#954"} +UMLS:C1512972 Malignant Transitional Cell biolink:Cell skos:exactMatch NCIT:C36778 Malignant Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#955","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1709197 Neoplastic Schwann-Like Cell biolink:Cell skos:exactMatch NCIT:C48594 Neoplastic Schwann-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#956","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2333402 Ciliary ganglion neuron biolink:Cell skos:exactMatch UMLS:C2333402 Ciliary ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#957"} +UMLS:C5171658 Lymphocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171658 Lymphocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#958"} +UMLS:C0684116 megaloblast of Sabin biolink:Cell skos:exactMatch UMLS:C0684116 megaloblast of Sabin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#959"} +UMLS:C4763553 Allogeneic CMV Antigen-specific CD4+/CD8+ T-lymphocytes biolink:Cell skos:exactMatch NCIT:C157340 Allogeneic CMV Antigen-specific CD4+/CD8+ T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#960","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0945927 Cells.CD3+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C0945927 Cells.CD3+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#961"} +UMLS:C1182666 Endo-epithelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182666 Endo-epithelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#962"} +CL:0002336 buccal mucosa cell biolink:Cell skos:exactMatch CL:0002336 buccal mucosa cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#963","subject_information_content":94.92072406280138} +UMLS:C5163708 Erythrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163708 Erythrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#964"} +CL:2000023 spinal cord ventral column interneuron biolink:Cell skos:exactMatch CL:2000023 spinal cord ventral column interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#966","subject_information_content":100.0} +UMLS:C1180392 Brush cell biolink:Cell skos:exactMatch NCIT:C32236 Brush Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#965","subject_information_content":100.0,"identifierIndex":0} +CL:1001593 parathyroid glandular cell biolink:Cell skos:exactMatch CL:1001593 parathyroid glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#968","subject_information_content":83.1270105625346} +UMLS:C0882903 Cell positive for CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:116828009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#967","identifierIndex":0} +UMLS:C1706982 Granulocyte-Monocyte Progenitor Cell biolink:Cell skos:exactMatch NCIT:C42766 Granulocyte-Monocyte Progenitor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#969","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181531 Type II cell of adrenal medulla biolink:Cell skos:exactMatch UMLS:C1181531 Type II cell of adrenal medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#970"} +UMLS:C1370155 Lymphocytes+Monocytes biolink:Cell skos:exactMatch UMLS:C1370155 Lymphocytes+Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#972"} +UMLS:C0228074 Medium sized neuron biolink:Cell skos:exactMatch SNOMEDCT:5802004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#973","identifierIndex":0} +CL:0002221 keratinized squamous cell of esophagus biolink:Cell skos:exactMatch CL:0002221 keratinized squamous cell of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#974","subject_information_content":100.0} +UMLS:C5416853 Allogeneic Umbilical Cord Blood Derived Regulatory T-Cells biolink:Cell skos:exactMatch UMLS:C5416853 Allogeneic Umbilical Cord Blood Derived Regulatory T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#971"} +CL:0002161 superficial external epithelial cell of tympanic membrane biolink:Cell skos:exactMatch CL:0002161 superficial external epithelial cell of tympanic membrane biolink:Cell HumanCurated {"cliqueId":"Cell.txt#975","subject_information_content":100.0} +NCIT:C12634 Photoreceptor Cell biolink:Cell skos:exactMatch NCIT:C12634 Photoreceptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#976","subject_information_content":91.94953810872488} +UMLS:C5205544 Autologous Anti-CD19/Anti-CD20-CAR-CD28-4-1BB-CD3zeta-EGFRt+-expressing Tn/mem Cells biolink:Cell skos:exactMatch NCIT:C160777 Autologous Anti-CD19/Anti-CD20-CAR-CD28-4-1BB-CD3zeta-EGFRt+-expressing Tn/mem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#977","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512337 HeLa/SF biolink:Cell skos:exactMatch NCIT:C20228 HeLa/SF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#978","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0035316 Retinal Ganglion Cells biolink:Cell skos:exactMatch NCIT:C12642 Retinal Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#979","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C0682693 Autonomic ganglion neuron biolink:Cell skos:exactMatch UMLS:C0682693 Autonomic ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#980"} +UMLS:C5157469 CD3+HLA-DR+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157469 CD3+HLA-DR+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#981"} +UMLS:C5186735 Leukocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186735 Leukocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#982"} +UMLS:C4505192 THP-1 Cells biolink:Cell skos:exactMatch MESH:D000074084 THP-1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#983","identifierIndex":0} +UMLS:C4289937 Baltaleucel-T biolink:Cell skos:exactMatch NCIT:C129374 Baltaleucel-T biolink:Cell HumanCurated {"cliqueId":"Cell.txt#984","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0814997 Intestinal cell biolink:Cell skos:exactMatch UMLS:C0814997 Intestinal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#985"} +UMLS:C1267931 Lymphocyte positive for CD45RB antigen biolink:Cell skos:exactMatch SNOMEDCT:117374009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#986","identifierIndex":0} +UMLS:C0920441 circulating cancer cell biolink:Cell skos:exactMatch UMLS:C0920441 circulating cancer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#987"} +UMLS:C1510724 Abnormal Glandular Cell biolink:Cell skos:exactMatch NCIT:C36764 Abnormal Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#988","subject_information_content":64.67771801809657,"identifierIndex":0} +UMLS:C0035316 Retinal Ganglion Cells biolink:Cell skos:exactMatch MESH:D012165 Retinal Ganglion Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#979","subject_information_content":89.84144812560278,"identifierIndex":1} +CL:0001039 terminally differentiated osteoblast biolink:Cell skos:exactMatch CL:0001039 terminally differentiated osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#989","subject_information_content":100.0} +UMLS:C5216307 Platelets|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216307 Platelets|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#990"} +UMLS:C0205832 Merkel Cells biolink:Cell skos:exactMatch NCIT:C12592 Merkel Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#991","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0205832 Merkel Cells biolink:Cell skos:exactMatch MESH:D018862 Merkel Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#991","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0205832 Merkel Cells biolink:Cell skos:exactMatch SNOMEDCT:10149001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#991","subject_information_content":100.0,"identifierIndex":2} +MESH:D017966 Pyramidal Cells biolink:Cell skos:exactMatch MESH:D017966 Pyramidal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#992"} +UMLS:C5157665 CD8 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157665 CD8 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#993"} +CL:2000039 posterior lateral line neuromast supporting cell biolink:Cell skos:exactMatch CL:2000039 posterior lateral line neuromast supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#994","subject_information_content":100.0} +UMLS:C1267853 Lymphocyte positive for CD7 antigen and negative for CD3 antigen biolink:Cell skos:exactMatch SNOMEDCT:116840009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#996","identifierIndex":0} +UMLS:C1711178 Bronchial Epithelial Cell biolink:Cell skos:exactMatch NCIT:C54242 Bronchial Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#997","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157304 CD138 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157304 CD138 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#998"} +UMLS:C0444641 Synovial fluid cells biolink:Cell skos:exactMatch SNOMEDCT:264380007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#999","identifierIndex":0} +UMLS:C1512141 ES ES Cell Line biolink:Cell skos:exactMatch NCIT:C20248 ES ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1000","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C2953987 Type D cell of colon biolink:Cell skos:exactMatch UMLS:C2953987 Type D cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1001"} +UMLS:C1267807 SMIg lambda+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117511008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#995","identifierIndex":0} +CL:0000746 cardiac muscle cell biolink:Cell skos:exactMatch CL:0000746 cardiac muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1002","subject_information_content":71.7867105046421} +UMLS:C1267966 Lymphocyte positive for CD72 antigen biolink:Cell skos:exactMatch SNOMEDCT:117406009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1003","identifierIndex":0} +UMLS:C2986999 Allogeneic Renal Cell Carcinoma Vaccine MGN1601 biolink:Cell skos:exactMatch NCIT:C95213 Allogeneic Renal Cell Carcinoma Vaccine MGN1601 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1004","subject_information_content":100.0,"identifierIndex":0} +CL:2000004 pituitary gland cell biolink:Cell skos:exactMatch CL:2000004 pituitary gland cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1005","subject_information_content":82.42859222307153} +UMLS:C4267789 Cells.CD27+IgD- biolink:Cell skos:exactMatch UMLS:C4267789 Cells.CD27+IgD- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1006"} +CL:1000550 kidney papillary duct principal epithelial cell biolink:Cell skos:exactMatch CL:1000550 kidney papillary duct principal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1007","subject_information_content":91.94953810872488} +CL:0002192 metamyelocyte biolink:Cell skos:exactMatch CL:0002192 metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1008","subject_information_content":89.84144812560278} +CL:0000901 Tr1 cell biolink:Cell skos:exactMatch CL:0000901 Tr1 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1009","subject_information_content":100.0} +UMLS:C5395460 Autologous cultured chondrocyte-containing product biolink:Cell skos:exactMatch SNOMEDCT:840611003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1010","identifierIndex":0} +UMLS:C5181908 Stomatocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5181908 Stomatocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1011"} +UMLS:C5163728 Erythrocytes | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163728 Erythrocytes | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1012"} +UMLS:C5216238 Leukocytes|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216238 Leukocytes|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1013"} +UMLS:C2981826 Allogeneic CMV/AdV-Specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C88310 Allogeneic CMV/AdV-Specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1014","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979639 Blasts.CD21 biolink:Cell skos:exactMatch UMLS:C1979639 Blasts.CD21 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1016"} +UMLS:C1514733 Rat Cell Line biolink:Cell skos:exactMatch NCIT:C20222 Rat Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1017","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1648296 Cells.CD38+Kappa+ biolink:Cell skos:exactMatch UMLS:C1648296 Cells.CD38+Kappa+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1018"} +UMLS:C1515150 TE32 biolink:Cell skos:exactMatch NCIT:C20297 TE32 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1019","subject_information_content":100.0,"identifierIndex":0} +MESH:D020397 Goblet Cells biolink:Cell skos:exactMatch MESH:D020397 Goblet Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1020"} +UMLS:C5420764 BCMA-CD19 Compound CAR T Cells biolink:Cell skos:exactMatch NCIT:C174412 BCMA-CD19 Compound CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1015","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4518147 Population of all spermatozoa with cytoplasmic droplet in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725252006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1021","identifierIndex":0} +CL:1001579 cerebral cortex glial cell biolink:Cell skos:exactMatch CL:1001579 cerebral cortex glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1022","subject_information_content":89.84144812560278} +UMLS:C0014597 Epithelial Cells biolink:Cell skos:exactMatch UMLS:C0014597 Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1023"} +UMLS:C1956121 Skin Dendritic Cells biolink:Cell skos:exactMatch UMLS:C1956121 Skin Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1024"} +UMLS:C5171669 Lymphocytes | Urine sediment | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171669 Lymphocytes | Urine sediment | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1025"} +CL:0000734 embryonic gland plasmatocyte biolink:Cell skos:exactMatch CL:0000734 embryonic gland plasmatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1026","subject_information_content":100.0} +UMLS:C0546505 P.B. hemohistioblast biolink:Cell skos:exactMatch UMLS:C0546505 P.B. hemohistioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1027"} +CL:1000382 type 2 vestibular sensory cell of stato-acoustic epithelium biolink:Cell skos:exactMatch CL:1000382 type 2 vestibular sensory cell of stato-acoustic epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1028","subject_information_content":100.0} +UMLS:C0682519 rodent cell line biolink:Cell skos:exactMatch UMLS:C0682519 rodent cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1029"} +CL:2000095 cord blood hematopoietic stem cell biolink:Cell skos:exactMatch CL:2000095 cord blood hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1030","subject_information_content":100.0} +UMLS:C1440230 Cells.aneuploid.population 2 biolink:Cell skos:exactMatch UMLS:C1440230 Cells.aneuploid.population 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1031"} +UMLS:C5171869 Macrophages | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171869 Macrophages | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1032"} +MESH:D018034 Olfactory Receptor Neurons biolink:Cell skos:exactMatch MESH:D018034 Olfactory Receptor Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1033"} +UMLS:C1440424 Cells.XXX biolink:Cell skos:exactMatch UMLS:C1440424 Cells.XXX biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1034"} +UMLS:C5186089 CD34 cells | Blood product unit | Cell markers biolink:Cell skos:exactMatch UMLS:C5186089 CD34 cells | Blood product unit | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1035"} +CL:0002150 epithelioid macrophage biolink:Cell skos:exactMatch CL:0002150 epithelioid macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1036","subject_information_content":100.0} +UMLS:C5166478 Helmet cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166478 Helmet cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1037"} +CL:1001064 kidney artery smooth muscle cell biolink:Cell skos:exactMatch CL:1001064 kidney artery smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1038","subject_information_content":89.84144812560278} +UMLS:C1709207 Neoplastic Striated Muscle Cell with Eosinophilic Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C49170 Neoplastic Striated Muscle Cell with Eosinophilic Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1039","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881196 Indium In 111-Labeled Autologous Polymorphonuclear Leukocytes biolink:Cell skos:exactMatch NCIT:C67086 Indium In 111-Labeled Autologous Polymorphonuclear Leukocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1040","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267830 T lymphocyte positive for CD16 antigen and CD57 antigen biolink:Cell skos:exactMatch SNOMEDCT:115416000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1041","identifierIndex":0} +UMLS:C4249177 Primitive endodermal cell biolink:Cell skos:exactMatch UMLS:C4249177 Primitive endodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1042"} +UMLS:C1181723 Cortical cell of adrenal gland biolink:Cell skos:exactMatch UMLS:C1181723 Cortical cell of adrenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1043"} +UMLS:C5157450 CD3+CD56+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157450 CD3+CD56+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1044"} +UMLS:C1184310 Epithelial cell of trachea biolink:Cell skos:exactMatch UMLS:C1184310 Epithelial cell of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1045"} +CL:0000604 retinal rod cell biolink:Cell skos:exactMatch CL:0000604 retinal rod cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1046","subject_information_content":100.0} +UMLS:C4724864 Autologous mRNA-modified Anti-cMET CAR-T Cells biolink:Cell skos:exactMatch NCIT:C148164 Autologous mRNA-modified Anti-cMET CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1047","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157269 CD11b cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157269 CD11b cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1048"} +UMLS:C4086004 Autologous Colorectal Tumor Antigen-pulsed Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C123918 Autologous Colorectal Tumor Antigen-pulsed Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1049","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513942 Neoplastic Connective and Soft Tissue Cell biolink:Cell skos:exactMatch NCIT:C36887 Neoplastic Connective and Soft Tissue Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1050","subject_information_content":64.00082053464784,"identifierIndex":0} +UMLS:C1440315 Cells.CD45RA biolink:Cell skos:exactMatch UMLS:C1440315 Cells.CD45RA biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1051"} +MESH:D008534 Megaloblasts biolink:Cell skos:exactMatch MESH:D008534 Megaloblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1052"} +CL:1000309 epicardial adipocyte biolink:Cell skos:exactMatch CL:1000309 epicardial adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1053","subject_information_content":91.94953810872488} +UMLS:C4726557 Autologous CISH-inactivated TILs biolink:Cell skos:exactMatch NCIT:C151926 Autologous CISH-inactivated TILs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1054","subject_information_content":100.0,"identifierIndex":0} +CL:0000713 corona radiata cell biolink:Cell skos:exactMatch CL:0000713 corona radiata cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1055","subject_information_content":100.0} +UMLS:C4740731 Erythroblasts mid biolink:Cell skos:exactMatch UMLS:C4740731 Erythroblasts mid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1056"} +CL:0002368 respiratory epithelial cell biolink:Cell skos:exactMatch CL:0002368 respiratory epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1057","subject_information_content":74.8362698924938} +UMLS:C0682520 canine cell line biolink:Cell skos:exactMatch UMLS:C0682520 canine cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1058"} +UMLS:C1181967 Chromaffin cell of adrenal cortex biolink:Cell skos:exactMatch UMLS:C1181967 Chromaffin cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1059"} +CL:1000391 melanocyte of eyelid biolink:Cell skos:exactMatch CL:1000391 melanocyte of eyelid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1060","subject_information_content":100.0} +UMLS:C0025166 Megakaryocytes biolink:Cell skos:exactMatch SNOMEDCT:23592000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1061","identifierIndex":0} +UMLS:C1518789 PG13/LNc8 Retroviral Transduced Cloned T-Cells biolink:Cell skos:exactMatch NCIT:C2790 PG13/LNc8 Retroviral Transduced Cloned T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1062","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5172359 Megakaryocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172359 Megakaryocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1063"} +UMLS:C5155172 Blasts | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155172 Blasts | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1064"} +CL:0002183 stem cell of gastric gland biolink:Cell skos:exactMatch CL:0002183 stem cell of gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1065","subject_information_content":100.0} +UMLS:C4515377 Entire endocrine pancreas cell biolink:Cell skos:exactMatch SNOMEDCT:730209004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1066","identifierIndex":0} +UMLS:C5382575 Cells.CD8.PMA+ionomycin stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5382575 Cells.CD8.PMA+ionomycin stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1067"} +UMLS:C0333852 Türk cell biolink:Cell skos:exactMatch SNOMEDCT:4205002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1068","identifierIndex":0} +CL:0000295 somatotropin secreting cell biolink:Cell skos:exactMatch CL:0000295 somatotropin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1069","subject_information_content":91.94953810872488} +CL:0002600 smooth muscle cell of trachea biolink:Cell skos:exactMatch CL:0002600 smooth muscle cell of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1070","subject_information_content":100.0} +UMLS:C0314594 Colony-forming unit, monocyte biolink:Cell skos:exactMatch UMLS:C0314594 Colony-forming unit, monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1071"} +UMLS:C1183210 Set of tubal air cells biolink:Cell skos:exactMatch UMLS:C1183210 Set of tubal air cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1072"} +NCIT:C45968 Enteroendocrine Cell biolink:Cell skos:exactMatch NCIT:C45968 Enteroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1073","subject_information_content":94.92072406280138} +CL:0000008 migratory cranial neural crest cell biolink:Cell skos:exactMatch CL:0000008 migratory cranial neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1074","subject_information_content":100.0} +UMLS:C0682697 Golgi type II neuron biolink:Cell skos:exactMatch UMLS:C0682697 Golgi type II neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1075"} +CL:0000390 blood cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000390 blood cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1076","subject_information_content":94.92072406280138} +UMLS:C0011306 Dendritic Cells biolink:Cell skos:exactMatch NCIT:C12583 Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1077","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C0011306 Dendritic Cells biolink:Cell skos:exactMatch MESH:D003713 Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1077","subject_information_content":86.87026217152628,"identifierIndex":1} +CL:1001210 outer medulla vasa recta ascending limb cell biolink:Cell skos:exactMatch CL:1001210 outer medulla vasa recta ascending limb cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1078","subject_information_content":100.0} +CL:0002024 Kit-positive megakaryocyte progenitor cell biolink:Cell skos:exactMatch CL:0002024 Kit-positive megakaryocyte progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1079","subject_information_content":100.0} +UMLS:C0814005 Neuroblast biolink:Cell skos:exactMatch NCIT:C12991 Neuroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1080","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711299 Malignant Epithelioid Endothelial Cell biolink:Cell skos:exactMatch NCIT:C53404 Malignant Epithelioid Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1081","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440352 Cells.CD73 biolink:Cell skos:exactMatch UMLS:C1440352 Cells.CD73 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1082"} +UMLS:C2335377 Set of cholinergic cells of accumbens nucleus [Ch3] biolink:Cell skos:exactMatch UMLS:C2335377 Set of cholinergic cells of accumbens nucleus [Ch3] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1083"} +UMLS:C5447312 Autologous Tolerogenic Proinsulin Peptide-loaded Dendritic Cells PIpepTolDC biolink:Cell skos:exactMatch NCIT:C176573 Autologous Tolerogenic Proinsulin Peptide-loaded Dendritic Cells PIpepTolDC biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1084","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5181478 Spherocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5181478 Spherocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1085"} +UMLS:C5447412 IKKb-matured RNA-loaded Autologous Dendritic Cells DCIKKb biolink:Cell skos:exactMatch NCIT:C176747 IKKb-matured RNA-loaded Autologous Dendritic Cells DCIKKb biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1086","subject_information_content":100.0,"identifierIndex":0} +CL:0008000 non-striated muscle cell biolink:Cell skos:exactMatch CL:0008000 non-striated muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1087","subject_information_content":70.5028418856209} +CL:0002032 hematopoietic oligopotent progenitor cell biolink:Cell skos:exactMatch CL:0002032 hematopoietic oligopotent progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1088","subject_information_content":77.34931628587292} +CL:1001451 sensory neuron of dorsal root ganglion biolink:Cell skos:exactMatch CL:1001451 sensory neuron of dorsal root ganglion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1090","subject_information_content":100.0} +CL:0009027 transit amplifying cell of appendix biolink:Cell skos:exactMatch CL:0009027 transit amplifying cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1091","subject_information_content":100.0} +UMLS:C5163707 Erythrocytes | Amniotic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163707 Erythrocytes | Amniotic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1089"} +UMLS:C1440357 Cells.CD7-CD13+CD33+ biolink:Cell skos:exactMatch UMLS:C1440357 Cells.CD7-CD13+CD33+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1092"} +UMLS:C5216297 Nucleated cells|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216297 Nucleated cells|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1093"} +CL:0000323 lysozyme secreting cell biolink:Cell skos:exactMatch CL:0000323 lysozyme secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1094","subject_information_content":84.76217218840416} +UMLS:C1514005 Neoplastic Large Lymphocyte biolink:Cell skos:exactMatch NCIT:C37008 Neoplastic Large Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1095","subject_information_content":75.5821178228195,"identifierIndex":0} +UMLS:C1267878 Lymphocyte positive for both CD16 antigen and CD57 antigen biolink:Cell skos:exactMatch SNOMEDCT:116729005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1096","identifierIndex":0} +MESH:D007760 Labyrinth Supporting Cells biolink:Cell skos:exactMatch MESH:D007760 Labyrinth Supporting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1097"} +UMLS:C4510890 Blast cell positive for CD5 antigen biolink:Cell skos:exactMatch SNOMEDCT:724316000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1098","identifierIndex":0} +UMLS:C3827138 Autologous CT7/MAGE-A3/WT1 mRNA-Electroporated Langerhans-Type Dendritic Cells biolink:Cell skos:exactMatch NCIT:C113174 Autologous CT7/MAGE-A3/WT1 mRNA-Electroporated Langerhans-Type Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1099","subject_information_content":100.0,"identifierIndex":0} +CL:0002496 intraepithelial lymphocyte biolink:Cell skos:exactMatch CL:0002496 intraepithelial lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1100","subject_information_content":81.79098623432766} +UMLS:C5157446 CD3+CD5- cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157446 CD3+CD5- cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1101"} +UMLS:C2323550 Primary motor neuron biolink:Cell skos:exactMatch UMLS:C2323550 Primary motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1102"} +CL:1001474 medium spiny neuron biolink:Cell skos:exactMatch CL:1001474 medium spiny neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1103","subject_information_content":100.0} +CL:1001099 kidney efferent arteriole endothelial cell biolink:Cell skos:exactMatch CL:1001099 kidney efferent arteriole endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1104","subject_information_content":100.0} +UMLS:C5157360 CD19+Kappa+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157360 CD19+Kappa+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1105"} +UMLS:C1183495 Ectodermal cell biolink:Cell skos:exactMatch NCIT:C33935 Ectoderm Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1106","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:0002644 endo-epithelial cell of tympanic part of viscerocranial mucosa biolink:Cell skos:exactMatch CL:0002644 endo-epithelial cell of tympanic part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1107","subject_information_content":100.0} +CL:0002247 pleural macrophage biolink:Cell skos:exactMatch CL:0002247 pleural macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1108","subject_information_content":100.0} +UMLS:C3830334 EFS-ADA Lentiviral Vector-transduced CD34-positive Autologous Lymphocytes biolink:Cell skos:exactMatch NCIT:C113438 EFS-ADA Lentiviral Vector-transduced CD34-positive Autologous Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1109","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12915 Small Cleaved Follicle Center Cell biolink:Cell skos:exactMatch NCIT:C12915 Small Cleaved Follicle Center Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1110","subject_information_content":100.0} +CL:0000135 fibrocyte biolink:Cell skos:exactMatch CL:0000135 fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1111","subject_information_content":83.1270105625346} +UMLS:C1518565 Olfactory Receptor Cells biolink:Cell skos:exactMatch UMLS:C1518565 Olfactory Receptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1112"} +CL:0005013 single ciliated epithelial cell biolink:Cell skos:exactMatch CL:0005013 single ciliated epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1114","subject_information_content":100.0} +UMLS:C0002449 Ameloblasts biolink:Cell skos:exactMatch UMLS:C0002449 Ameloblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1115"} +CL:0002219 anchoring trophoblast biolink:Cell skos:exactMatch CL:0002219 anchoring trophoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1113","subject_information_content":100.0} +UMLS:C1513741 Multilobated Lipoblast-Like Cell biolink:Cell skos:exactMatch NCIT:C36971 Multilobated Lipoblast-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1116","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3640056 CD19CAR-CD3zeta-4-1BB-expressing Allogeneic T-lymphocyte Cells biolink:Cell skos:exactMatch NCIT:C101258 CD19CAR-CD3zeta-4-1BB-expressing Allogeneic T-lymphocyte Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1117","subject_information_content":100.0,"identifierIndex":0} +CL:0000396 lamellocyte biolink:Cell skos:exactMatch CL:0000396 lamellocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1118","subject_information_content":100.0} +CL:0009050 B cell of anorectum biolink:Cell skos:exactMatch CL:0009050 B cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1119","subject_information_content":100.0} +UMLS:C1440311 Cells.CD42d biolink:Cell skos:exactMatch UMLS:C1440311 Cells.CD42d biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1120"} +UMLS:C5220616 Transitional cells|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220616 Transitional cells|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1121"} +UMLS:C0039198 Regulatory T-Lymphocytes biolink:Cell skos:exactMatch MESH:D050378 T-Lymphocytes, Regulatory biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1122","identifierIndex":0} +UMLS:C5178303 Promonocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178303 Promonocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1123"} +UMLS:C5216292 Neutrophils|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216292 Neutrophils|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1124"} +UMLS:C2333350 Muscle Fibers, Intermediate biolink:Cell skos:exactMatch UMLS:C2333350 Muscle Fibers, Intermediate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1125"} +CL:0002098 regular cardiac myocyte biolink:Cell skos:exactMatch CL:0002098 regular cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1126","subject_information_content":88.2062864997332} +UMLS:C0333738 Fat-laden macrophage biolink:Cell skos:exactMatch UMLS:C0333738 Fat-laden macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1127"} +UMLS:C1979078 Blasts.CD117 biolink:Cell skos:exactMatch UMLS:C1979078 Blasts.CD117 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1128"} +UMLS:C5174614 Neutrophils | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174614 Neutrophils | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1129"} +UMLS:C4744618 Autologous Anti-CD19CAR-CD3zeta-4-1BB-IL-15-PD1-expressing Tri-functional T-lymphocytes biolink:Cell skos:exactMatch NCIT:C156169 Autologous Anti-CD19CAR-CD3zeta-4-1BB-IL-15-PD1-expressing Tri-functional T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1130","subject_information_content":100.0,"identifierIndex":0} +MESH:D000921 Antibody-Producing Cells biolink:Cell skos:exactMatch MESH:D000921 Antibody-Producing Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1131"} +UMLS:C5221180 CTX001 biolink:Cell skos:exactMatch NCIT:C169042 Autologous CRISPR-Cas9 Modified/BCL11A Enhancer-disrupted CD34-positive Human Hematopoietic Stem and Progenitor Cells CTX001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1132","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1179114 Basal cell of olfactory epithelium biolink:Cell skos:exactMatch NCIT:C13153 Olfactory Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1133","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1301171 Eccentrocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:397051007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1134","identifierIndex":0} +UMLS:C1440385 Cells.euploid+Cells.aneuploid.population 1 biolink:Cell skos:exactMatch UMLS:C1440385 Cells.euploid+Cells.aneuploid.population 1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1135"} +UMLS:C4322823 CD24+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322823 CD24+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1136"} +UMLS:C2332040 Goblet cell of epithelium of principal gastric gland biolink:Cell skos:exactMatch UMLS:C2332040 Goblet cell of epithelium of principal gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1137"} +UMLS:C5157325 CD16 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157325 CD16 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1138"} +CL:0000605 fungal asexual spore biolink:Cell skos:exactMatch CL:0000605 fungal asexual spore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1139","subject_information_content":79.23864834624368} +MESH:D001016 Aortic Bodies biolink:Cell skos:exactMatch MESH:D001016 Aortic Bodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1140"} +UMLS:C5157484 CD33 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157484 CD33 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1141"} +UMLS:C0242277 Proerythroblasts biolink:Cell skos:exactMatch NCIT:C13129 Proerythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1142","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0242277 Proerythroblasts biolink:Cell skos:exactMatch SNOMEDCT:16671004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1142","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1522235 Exocrine Pancreas - Acinar Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22643 Mouse Acinar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1143","subject_information_content":100.0,"identifierIndex":0} +CL:0000308 metal ion accumulating cell biolink:Cell skos:exactMatch CL:0000308 metal ion accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1144","subject_information_content":91.94953810872488} +UMLS:C1440294 Cells.CD32 biolink:Cell skos:exactMatch UMLS:C1440294 Cells.CD32 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1145"} +UMLS:C2340022 Resting histiocyte biolink:Cell skos:exactMatch UMLS:C2340022 Resting histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1146"} +UMLS:C1182620 Epithelial cell of nasolacrimal duct biolink:Cell skos:exactMatch UMLS:C1182620 Epithelial cell of nasolacrimal duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1147"} +UMLS:C1267955 Lymphocyte positive for CD62P antigen biolink:Cell skos:exactMatch SNOMEDCT:117396003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1148","identifierIndex":0} +CL:2000054 hepatic pit cell biolink:Cell skos:exactMatch CL:2000054 hepatic pit cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1149","subject_information_content":100.0} +UMLS:C1182608 Epithelial cell of parathyroid gland biolink:Cell skos:exactMatch UMLS:C1182608 Epithelial cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1150"} +UMLS:C1179517 Acinar cell of pancreas biolink:Cell skos:exactMatch NCIT:C174117 Pancreatic Acinar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1151","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4726587 Donor-derived CD34+ Hematopoietic Stem and Progenitor Cells Plus CD3+ T-cells MDR-101 biolink:Cell skos:exactMatch NCIT:C151968 Sizavaleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1152","subject_information_content":100.0,"identifierIndex":0} +CL:0000597 microconidium biolink:Cell skos:exactMatch CL:0000597 microconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1153","subject_information_content":100.0} +CL:0002020 GlyA-positive reticulocytes biolink:Cell skos:exactMatch CL:0002020 GlyA-positive reticulocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1154","subject_information_content":100.0} +UMLS:C0229213 Rod cells of inner nuclear layer biolink:Cell skos:exactMatch SNOMEDCT:34407003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1155","identifierIndex":0} +UMLS:C4510903 Blast cell positive for CD11b antigen biolink:Cell skos:exactMatch SNOMEDCT:724243007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1156","identifierIndex":0} +UMLS:C1267964 Lymphocyte positive for CD69 antigen biolink:Cell skos:exactMatch SNOMEDCT:117405008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1157","identifierIndex":0} +UMLS:C1711269 Neoplastic Lactotroph Cell with Large Secretory Granules biolink:Cell skos:exactMatch NCIT:C45952 Neoplastic Lactotroph Cell with Large Secretory Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1158","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5206702 Patient-derived WT1/PRAME/Survivin-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C162624 Patient-derived WT1/PRAME/Survivin-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1159","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4240449 Vascular smooth muscle cell of peripheral artery biolink:Cell skos:exactMatch UMLS:C4240449 Vascular smooth muscle cell of peripheral artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1160"} +UMLS:C5170946 Leukocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170946 Leukocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1161"} +UMLS:C2337419 Splenic macrophage biolink:Cell skos:exactMatch UMLS:C2337419 Splenic macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1162"} +UMLS:C1514994 Striated muscle cell biolink:Cell skos:exactMatch NCIT:C33637 Striated Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1163","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C4267786 Cells.CD27-CD45RA+ biolink:Cell skos:exactMatch UMLS:C4267786 Cells.CD27-CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1164"} +UMLS:C3542977 Ependymoglial Cells biolink:Cell skos:exactMatch MESH:D063928 Ependymoglial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1165","identifierIndex":0} +UMLS:C1510731 Abnormal Myeloid Cell biolink:Cell skos:exactMatch NCIT:C37042 Abnormal Myeloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1166","subject_information_content":72.27004034867431,"identifierIndex":0} +CL:0002320 connective tissue cell biolink:Cell skos:exactMatch CL:0002320 connective tissue cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1167","subject_information_content":61.589284023391414} +UMLS:C1709175 Neoplastic Fibroblast biolink:Cell skos:exactMatch NCIT:C48682 Neoplastic Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1168","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1709162 Neoplastic Adrenal Cortical Clear Cell biolink:Cell skos:exactMatch NCIT:C48362 Neoplastic Adrenal Cortical Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1169","subject_information_content":100.0,"identifierIndex":0} +CL:0000817 precursor B cell biolink:Cell skos:exactMatch CL:0000817 precursor B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1170","subject_information_content":80.1558246084581} +UMLS:C0029431 Osteoclasts biolink:Cell skos:exactMatch UMLS:C0029431 Osteoclasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1171"} +UMLS:C0230517 Dividing cell biolink:Cell skos:exactMatch SNOMEDCT:35853008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1172","identifierIndex":0} +UMLS:C0553712 Marrow monocytoid cell biolink:Cell skos:exactMatch UMLS:C0553712 Marrow monocytoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1173"} +CL:0002056 Fraction F mature B cell biolink:Cell skos:exactMatch CL:0002056 Fraction F mature B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1174","subject_information_content":94.92072406280138} +UMLS:C1708914 Malignant Spindle-Shaped to Round Cell biolink:Cell skos:exactMatch NCIT:C51147 Malignant Spindle-Shaped to Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1175","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0808143 Synovial lining cells biolink:Cell skos:exactMatch UMLS:C0808143 Synovial lining cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1176"} +UMLS:C5167637 HLA Ab positive cells | Serum | HLA antigens biolink:Cell skos:exactMatch UMLS:C5167637 HLA Ab positive cells | Serum | HLA antigens biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1177"} +UMLS:C5182506 Synovial cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5182506 Synovial cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1178"} +UMLS:C3261871 Circulating tumor cells.prostate biolink:Cell skos:exactMatch UMLS:C3261871 Circulating tumor cells.prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1179"} +UMLS:C1182799 Epithelial cell of collecting duct of renal tubule biolink:Cell skos:exactMatch UMLS:C1182799 Epithelial cell of collecting duct of renal tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1180"} +UMLS:C0229610 Tissue eosinophil biolink:Cell skos:exactMatch SNOMEDCT:55109005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1181","identifierIndex":0} +CL:0002346 Dx5-negative, NK1.1-positive immature natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002346 Dx5-negative, NK1.1-positive immature natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1182","subject_information_content":100.0} +UMLS:C5186934 Platelets | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186934 Platelets | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1183"} +CL:0002575 central nervous system pericyte biolink:Cell skos:exactMatch CL:0002575 central nervous system pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1184","subject_information_content":94.92072406280138} +UMLS:C1510730 Abnormal Mesothelial Cell biolink:Cell skos:exactMatch NCIT:C36829 Abnormal Mesothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1185","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:1000359 microfold cell of epithelium proper of appendix biolink:Cell skos:exactMatch CL:1000359 microfold cell of epithelium proper of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1186","subject_information_content":100.0} +CL:0000182 hepatocyte biolink:Cell skos:exactMatch CL:0000182 hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1187","subject_information_content":89.84144812560278} +UMLS:C1710397 Thymic Epithelial Cell Capable of Differentiating Towards Both Cortical and Medullary Cell Type biolink:Cell skos:exactMatch NCIT:C45704 Thymic Epithelial Cell Capable of Differentiating Towards Both Cortical and Medullary Cell Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1188","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711301 Malignant Oval Endothelial Cell biolink:Cell skos:exactMatch NCIT:C53413 Malignant Oval Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1189","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711215 Bone Marrow Stem Cell Committed to the Basophil Lineage biolink:Cell skos:exactMatch NCIT:C43227 Bone Marrow Stem Cell Committed to the Basophil Lineage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1190","subject_information_content":100.0,"identifierIndex":0} +CL:0002338 CD56-positive, CD161-positive immature natural killer cell, human biolink:Cell skos:exactMatch CL:0002338 CD56-positive, CD161-positive immature natural killer cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1191","subject_information_content":100.0} +UMLS:C5157230 CD1 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157230 CD1 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1192"} +UMLS:C2331667 Type II of carotid body biolink:Cell skos:exactMatch UMLS:C2331667 Type II of carotid body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1193"} +UMLS:C1516089 Atypical Adipocyte biolink:Cell skos:exactMatch NCIT:C36977 Atypical Adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1194","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C1519449 Spermatogenic Cell biolink:Cell skos:exactMatch NCIT:C33582 Spermatogenic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1195","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C5216191 Basophils|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216191 Basophils|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1196"} +MESH:D065309 Atypical Squamous Cells of the Cervix biolink:Cell skos:exactMatch MESH:D065309 Atypical Squamous Cells of the Cervix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1197"} +UMLS:C1135969 Large Luteal Cells biolink:Cell skos:exactMatch NCIT:C32693 Granulosa Lutein Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1198","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440285 Cells.CD3+CD69+ biolink:Cell skos:exactMatch UMLS:C1440285 Cells.CD3+CD69+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1199"} +UMLS:C1959571 Suppressor T-Lymphocytes, Naturally-Occurring biolink:Cell skos:exactMatch UMLS:C1959571 Suppressor T-Lymphocytes, Naturally-Occurring biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1200"} +CL:0007019 epidermal mucus secreting cell biolink:Cell skos:exactMatch CL:0007019 epidermal mucus secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1201","subject_information_content":100.0} +UMLS:C3273206 Anti-mesothelin CIR mRNA-electroporated Autologous T Cells biolink:Cell skos:exactMatch NCIT:C97038 Anti-mesothelin CIR mRNA-electroporated Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1202","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171668 Lymphocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171668 Lymphocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1203"} +UMLS:C5417845 Autologous Clonal Neoantigen T Cells ATL001 biolink:Cell skos:exactMatch NCIT:C171097 Autologous Clonal Neoantigen T Cells ATL001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1204","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1882045 Neoplastic Columnar Epithelial Cell biolink:Cell skos:exactMatch NCIT:C62202 Neoplastic Columnar Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1205","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0221266 Dacryocyte (cell) biolink:Cell skos:exactMatch NCIT:C36726 Tear-Drop Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1206","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0221266 Dacryocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:47787007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1206","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5157350 CD19+CD103+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157350 CD19+CD103+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1207"} +CL:0000356 hair matrix stem cell biolink:Cell skos:exactMatch CL:0000356 hair matrix stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1208","subject_information_content":100.0} +UMLS:C1440305 Cells.CD4+CD8+ biolink:Cell skos:exactMatch UMLS:C1440305 Cells.CD4+CD8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1209"} +UMLS:C1516101 B-Prolymphocyte biolink:Cell skos:exactMatch NCIT:C33926 B-Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1210","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3896803 Allogeneic Natural Killer Cell Line NK-92 biolink:Cell skos:exactMatch UMLS:C3896803 Allogeneic Natural Killer Cell Line NK-92 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1211"} +CL:0000494 UV sensitive photoreceptor cell biolink:Cell skos:exactMatch CL:0000494 UV sensitive photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1212","subject_information_content":94.92072406280138} +UMLS:C5220558 Bladder cells|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220558 Bladder cells|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1213"} +UMLS:C5216254 Lymphocytes|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216254 Lymphocytes|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1214"} +NCIT:C12564 Kupffer Cell biolink:Cell skos:exactMatch NCIT:C12564 Kupffer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1215","subject_information_content":100.0} +CL:0002157 endosteal cell biolink:Cell skos:exactMatch CL:0002157 endosteal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1216","subject_information_content":100.0} +UMLS:C1182635 Follicular cell of ovary biolink:Cell skos:exactMatch NCIT:C32620 Follicular Ovarian Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1217","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5163548 Epithelial cells.extrarenal | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163548 Epithelial cells.extrarenal | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1218"} +CL:0002606 astrocyte of the spinal cord biolink:Cell skos:exactMatch CL:0002606 astrocyte of the spinal cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1219","subject_information_content":100.0} +UMLS:C4683875 Atypical Squamous Cell-Favor High-Grade Squamous Intraepithelial Lesion biolink:Cell skos:exactMatch NCIT:C141519 Atypical Squamous Cell-Favor High-Grade Squamous Intraepithelial Lesion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1220","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12584 Langerhans Cell biolink:Cell skos:exactMatch NCIT:C12584 Langerhans Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1221","subject_information_content":100.0} +CL:0000956 pre-B-I cell biolink:Cell skos:exactMatch CL:0000956 pre-B-I cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1222","subject_information_content":100.0} +UMLS:C5177474 Plasma cells/100 leukocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177474 Plasma cells/100 leukocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1223"} +UMLS:C5174622 Neutrophils | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174622 Neutrophils | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1224"} +UMLS:C5157442 CD3+CD4+CD27-CD45RO+CD62L- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157442 CD3+CD4+CD27-CD45RO+CD62L- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1225"} +CL:2000002 decidual cell biolink:Cell skos:exactMatch CL:2000002 decidual cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1226","subject_information_content":100.0} +UMLS:C1267820 Lymphocyte positive for both CD3 antigen and CD38 antigen biolink:Cell skos:exactMatch SNOMEDCT:117521000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1227","identifierIndex":0} +UMLS:C2350331 Retinal Neurons biolink:Cell skos:exactMatch MESH:D055351 Retinal Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1228","identifierIndex":0} +UMLS:C5446421 Autologous TCRm-expressing T-cells ET140203 biolink:Cell skos:exactMatch NCIT:C175306 Autologous TCRm-expressing T-cells ET140203 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1229","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682527 hybrid cell line biolink:Cell skos:exactMatch UMLS:C0682527 hybrid cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1230"} +UMLS:C5157286 CD126 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157286 CD126 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1231"} +UMLS:C0229655 monoblast biolink:Cell skos:exactMatch NCIT:C13014 Monoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1232","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229655 monoblast biolink:Cell skos:exactMatch SNOMEDCT:53945006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1232","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0882819 CD22+ cell biolink:Cell skos:exactMatch SNOMEDCT:732269007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1233","identifierIndex":0} +UMLS:C0806987 Mononuclear cells biolink:Cell skos:exactMatch UMLS:C0806987 Mononuclear cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1234"} +CL:0000949 IgD plasmablast biolink:Cell skos:exactMatch CL:0000949 IgD plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1235","subject_information_content":100.0} +UMLS:C5205632 Adipose-derived Expanded Mesenchymal Stem Cells SCM-010 biolink:Cell skos:exactMatch NCIT:C160891 Adipose-derived Expanded Mesenchymal Stem Cells SCM-010 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1236","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5420827 MUC-1/WT1 Peptide-primed Autologous Dendritic Cells biolink:Cell skos:exactMatch NCIT:C174519 MUC-1/WT1 Peptide-primed Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1237","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171964 Malignant cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171964 Malignant cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1238"} +UMLS:C5177783 Polymorphonuclear cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177783 Polymorphonuclear cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1239"} +CL:0009054 microfold cell of epithelium proper of anorectum biolink:Cell skos:exactMatch CL:0009054 microfold cell of epithelium proper of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1240","subject_information_content":100.0} +CL:1000284 smooth muscle fiber of descending colon biolink:Cell skos:exactMatch CL:1000284 smooth muscle fiber of descending colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1241","subject_information_content":100.0} +NCIT:C129908 Myeloid-Derived Suppressor Cell biolink:Cell skos:exactMatch NCIT:C129908 Myeloid-Derived Suppressor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1242","subject_information_content":100.0} +UMLS:C1513753 Multipotent Bone Marrow Stem Cell biolink:Cell skos:exactMatch NCIT:C41058 Multipotent Bone Marrow Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1243","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177626 Platelets Large | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177626 Platelets Large | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1244"} +CL:0000724 heterocyst biolink:Cell skos:exactMatch CL:0000724 heterocyst biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1245","subject_information_content":100.0} +UMLS:C0599856 Muscle satellite cell biolink:Cell skos:exactMatch UMLS:C0599856 Muscle satellite cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1246"} +UMLS:C1564995 Retinal Bipolar Cells biolink:Cell skos:exactMatch MESH:D051245 Retinal Bipolar Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1247","identifierIndex":0} +UMLS:C1564995 Retinal Bipolar Cells biolink:Cell skos:exactMatch SNOMEDCT:72060002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1247","identifierIndex":1} +CL:0000961 Bm1 B cell biolink:Cell skos:exactMatch CL:0000961 Bm1 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1248","subject_information_content":100.0} +UMLS:C2346938 Malignant Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C68658 Malignant Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1249","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0000242 Merkel cell biolink:Cell skos:exactMatch CL:0000242 Merkel cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1250","subject_information_content":100.0} +UMLS:C3827754 Tumor Infiltrating Macrophages biolink:Cell skos:exactMatch NCIT:C111027 Tumor Infiltrating Macrophages biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1251","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5237723 Engineered Mobilized Peripheral Blood-derived Donor Graft OGFT-001 biolink:Cell skos:exactMatch NCIT:C166136 Engineered Mobilized Peripheral Blood-derived Donor Graft OGFT-001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1252","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733634 Autologous CCR4-CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C155293 Autologous CCR4-CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1253","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3896612 Tumor Antigen-reactive CD28+/CCR7+/CD27+/CD45RA- Cytotoxic T-lymphocyte biolink:Cell skos:exactMatch NCIT:C118848 Tumor Antigen-reactive CD28+/CCR7+/CD27+/CD45RA- Cytotoxic T-lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1254","subject_information_content":100.0,"identifierIndex":0} +CL:0002232 epithelial cell of prostatic duct biolink:Cell skos:exactMatch CL:0002232 epithelial cell of prostatic duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1255","subject_information_content":100.0} +UMLS:C4733642 Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1 biolink:Cell skos:exactMatch NCIT:C155884 Autologous Anti-HLA-A*0201/AFP CAR T-cells ET1402L1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1256","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328107 Nephrocyte biolink:Cell skos:exactMatch UMLS:C2328107 Nephrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1257"} +UMLS:C1510781 Adenocarcinoma Cell with Intranuclear Inclusion biolink:Cell skos:exactMatch NCIT:C36876 Adenocarcinoma Cell with Intranuclear Inclusion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1258","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518173 Malignant Eosinophilic Cell Oncocyte biolink:Cell skos:exactMatch NCIT:C37167 Malignant Eosinophilic Cell Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1259","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0546504 P.B. hematohistioblast biolink:Cell skos:exactMatch UMLS:C0546504 P.B. hematohistioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1260"} +UMLS:C5170932 Leukocytes | Nose | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170932 Leukocytes | Nose | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1261"} +CL:1000182 malpighian tubule tip cell biolink:Cell skos:exactMatch CL:1000182 malpighian tubule tip cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1262","subject_information_content":100.0} +UMLS:C0598091 stable cell line biolink:Cell skos:exactMatch UMLS:C0598091 stable cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1263"} +CL:0002612 neuron of the ventral spinal cord biolink:Cell skos:exactMatch CL:0002612 neuron of the ventral spinal cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1264","subject_information_content":100.0} +UMLS:C1979132 Blasts.CD127 biolink:Cell skos:exactMatch UMLS:C1979132 Blasts.CD127 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1265"} +CL:0000755 type 3 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000755 type 3 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1266","subject_information_content":100.0} +CL:0002442 CD94-negative, Ly49CI-negative natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002442 CD94-negative, Ly49CI-negative natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1267","subject_information_content":100.0} +CL:0005004 pigment erythroblast biolink:Cell skos:exactMatch CL:0005004 pigment erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1268","subject_information_content":100.0} +CL:0002144 capillary endothelial cell biolink:Cell skos:exactMatch CL:0002144 capillary endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1269","subject_information_content":89.84144812560278} +CL:0000348 choroidal cell of the eye biolink:Cell skos:exactMatch CL:0000348 choroidal cell of the eye biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1270","subject_information_content":100.0} +UMLS:C3899817 CD19CAR-CD3zeta-4-1BB-CD28-expressing Autologous T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C116069 CD19CAR-CD3zeta-4-1BB-CD28-expressing Autologous T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1271","subject_information_content":100.0,"identifierIndex":0} +CL:0007018 epidermal ciliary cell biolink:Cell skos:exactMatch CL:0007018 epidermal ciliary cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1272","subject_information_content":100.0} +UMLS:C3897770 Reactive Amniocyte biolink:Cell skos:exactMatch NCIT:C118138 Reactive Amniocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1273","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182618 Epithelial cell of lacrimal duct biolink:Cell skos:exactMatch UMLS:C1182618 Epithelial cell of lacrimal duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1274"} +CL:0002126 CD25-positive, CD27-positive immature gamma-delta T cell biolink:Cell skos:exactMatch CL:0002126 CD25-positive, CD27-positive immature gamma-delta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1275","subject_information_content":100.0} +CL:0000110 peptidergic neuron biolink:Cell skos:exactMatch CL:0000110 peptidergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1276","subject_information_content":100.0} +CL:0002195 hepatic stem cell biolink:Cell skos:exactMatch CL:0002195 hepatic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1277","subject_information_content":91.94953810872488} +CL:0000161 acid secreting cell biolink:Cell skos:exactMatch CL:0000161 acid secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1278","subject_information_content":71.63243435993044} +UMLS:C3656574 Cells.CD3-CD16+CD56+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C3656574 Cells.CD3-CD16+CD56+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1279"} +UMLS:C5157558 CD4+HLA-DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157558 CD4+HLA-DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1280"} +CL:0000955 pre-B-II cell biolink:Cell skos:exactMatch CL:0000955 pre-B-II cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1282","subject_information_content":85.74066969721673} +UMLS:C4733602 Autologous TBX-4000-treated Peripheral Blood Mononuclear Cells TBX-3400 biolink:Cell skos:exactMatch NCIT:C154565 Autologous TBX-4000-treated Peripheral Blood Mononuclear Cells TBX-3400 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1283","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1706828 Apocrine Cell biolink:Cell skos:exactMatch NCIT:C43374 Apocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1281","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2337350 Type III enteric ganglion neuron biolink:Cell skos:exactMatch UMLS:C2337350 Type III enteric ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1284"} +CL:1000472 myoepithelial cell of tertiary lactiferous duct biolink:Cell skos:exactMatch CL:1000472 myoepithelial cell of tertiary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1285","subject_information_content":100.0} +UMLS:C3896582 Ex Vivo-activated Autologous Lymph Node Lymphocytes biolink:Cell skos:exactMatch NCIT:C114985 Ex Vivo-activated Autologous Lymph Node Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1286","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5382748 CD107a+b expressing HLA-B35 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382748 CD107a+b expressing HLA-B35 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1287"} +UMLS:C2335679 Diploid germ cell biolink:Cell skos:exactMatch UMLS:C2335679 Diploid germ cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1288"} +UMLS:C1370102 Cells.CD4+CD45RA+/Cells.CD8 biolink:Cell skos:exactMatch UMLS:C1370102 Cells.CD4+CD45RA+/Cells.CD8 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1289"} +UMLS:C1979664 Cells.CD13+CD33+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C1979664 Cells.CD13+CD33+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1290"} +CL:0000016 male germ line stem cell biolink:Cell skos:exactMatch CL:0000016 male germ line stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1291","subject_information_content":91.94953810872488} +UMLS:C1511009 BG04 biolink:Cell skos:exactMatch NCIT:C20236 BG04 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1292","subject_information_content":100.0,"identifierIndex":0} +CL:0000232 erythrocyte biolink:Cell skos:exactMatch CL:0000232 erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1293","subject_information_content":85.74066969721673} +CL:0010003 epithelial cell of alveolus of lung biolink:Cell skos:exactMatch CL:0010003 epithelial cell of alveolus of lung biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1294","subject_information_content":89.84144812560278} +UMLS:C2339119 Basal cell of epithelium of lobular bronchiole biolink:Cell skos:exactMatch UMLS:C2339119 Basal cell of epithelium of lobular bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1295"} +CL:0002038 T follicular helper cell biolink:Cell skos:exactMatch CL:0002038 T follicular helper cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1296","subject_information_content":94.92072406280138} +UMLS:C5170916 Leukocytes | Bile fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170916 Leukocytes | Bile fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1297"} +UMLS:C5177459 Plasma cells monotypic population | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177459 Plasma cells monotypic population | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1298"} +UMLS:C1519120 SA01 biolink:Cell skos:exactMatch NCIT:C20264 SA01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1299","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517641 KA41 cell line biolink:Cell skos:exactMatch NCIT:C20271 KA41 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1300","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733654 Autologous Mesothelin-specific Human mRNA CAR-transfected PBMCs MCY-M11 biolink:Cell skos:exactMatch NCIT:C155775 Autologous Mesothelin-specific Human mRNA CAR-transfected PBMCs MCY-M11 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1301","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682526 lymphoblastoid cell line biolink:Cell skos:exactMatch UMLS:C0682526 lymphoblastoid cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1302"} +UMLS:C1513997 Neoplastic Large Cell biolink:Cell skos:exactMatch NCIT:C37162 Neoplastic Large Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1303","subject_information_content":66.94511527980866,"identifierIndex":0} +CL:1000143 lung goblet cell biolink:Cell skos:exactMatch CL:1000143 lung goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1304","subject_information_content":100.0} +CL:1001566 bronchioalveolar stem cells biolink:Cell skos:exactMatch CL:1001566 bronchioalveolar stem cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1305","subject_information_content":100.0} +CL:0000460 glucocorticoid secreting cell biolink:Cell skos:exactMatch CL:0000460 glucocorticoid secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1306","subject_information_content":94.92072406280138} +UMLS:C1514277 Postradiation Dysplastic Squamous Cell biolink:Cell skos:exactMatch NCIT:C36806 Postradiation Dysplastic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1307","subject_information_content":100.0,"identifierIndex":0} +CL:1000306 fibroblast of tunica adventitia of artery biolink:Cell skos:exactMatch CL:1000306 fibroblast of tunica adventitia of artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1308","subject_information_content":94.92072406280138} +UMLS:C0949431 TC1 Cells biolink:Cell skos:exactMatch UMLS:C0949431 TC1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1309"} +UMLS:C0229644 Nonsegmented eosinophil biolink:Cell skos:exactMatch SNOMEDCT:81209003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1310","identifierIndex":0} +UMLS:C1514021 Neoplastic Megakaryoblast biolink:Cell skos:exactMatch NCIT:C37068 Neoplastic Megakaryoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1311","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3282339 Cells, Cultured, Allogeneic biolink:Cell skos:exactMatch UMLS:C3282339 Cells, Cultured, Allogeneic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1312"} +CL:0002277 type I enteroendocrine cell biolink:Cell skos:exactMatch CL:0002277 type I enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1313","subject_information_content":100.0} +UMLS:C1518314 Nevus Cell C-Type biolink:Cell skos:exactMatch NCIT:C36866 Nevus Cell C-Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1314","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267848 Lymphocyte positive for both CD5 antigen and CD25 antigen biolink:Cell skos:exactMatch SNOMEDCT:116818000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1316","identifierIndex":0} +UMLS:C4726996 Related Donor Adenovirus-specific Cytotoxic T Cells biolink:Cell skos:exactMatch NCIT:C152980 Related Donor Adenovirus-specific Cytotoxic T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1317","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267915 Lymphocyte positive for CD38 antigen biolink:Cell skos:exactMatch SNOMEDCT:116845004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1315","identifierIndex":0} +UMLS:C1721044 Fetal Stem Cells biolink:Cell skos:exactMatch MESH:D053686 Fetal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1318","identifierIndex":0} +UMLS:C1516965 Keratinized squamous cell of esophagus biolink:Cell skos:exactMatch NCIT:C32542 Esophageal Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1319","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709205 Neoplastic Spindle Stromal Cell biolink:Cell skos:exactMatch NCIT:C54001 Neoplastic Spindle Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1320","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1831954 Allogeneic Epstein-Barr Virus-Specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C62769 Allogeneic Epstein-Barr Virus-Specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1321","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267978 Lymphocyte positive for CD88 antigen biolink:Cell skos:exactMatch SNOMEDCT:117418000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1322","identifierIndex":0} +UMLS:C0031307 Phagocytes biolink:Cell skos:exactMatch MESH:D010586 Phagocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1323","identifierIndex":0} +CL:0011103 sympathetic neuron biolink:Cell skos:exactMatch CL:0011103 sympathetic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1324","subject_information_content":91.94953810872488} +CL:0019031 intestine goblet cell biolink:Cell skos:exactMatch CL:0019031 intestine goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1325","subject_information_content":82.42859222307153} +UMLS:C1184809 Primitive cardiac myocyte biolink:Cell skos:exactMatch UMLS:C1184809 Primitive cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1326"} +UMLS:C1979668 CD19+IgD+ cell biolink:Cell skos:exactMatch SNOMEDCT:732276002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1327","identifierIndex":0} +CL:4023055 corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023055 corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1328","subject_information_content":100.0} +UMLS:C1709585 Pluripotent Primordial Germ Cell biolink:Cell skos:exactMatch NCIT:C45735 Pluripotent Primordial Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1329","subject_information_content":100.0,"identifierIndex":0} +CL:1000327 appendix goblet cell biolink:Cell skos:exactMatch CL:1000327 appendix goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1330","subject_information_content":100.0} +UMLS:C4695998 Cells.CD3+CD8+CD27-CD45RO+CD62L- biolink:Cell skos:exactMatch UMLS:C4695998 Cells.CD3+CD8+CD27-CD45RO+CD62L- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1331"} +CL:0000590 small luteal cell biolink:Cell skos:exactMatch CL:0000590 small luteal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1332","subject_information_content":100.0} +UMLS:C1267874 Lymphocyte positive for CD15 antigen biolink:Cell skos:exactMatch SNOMEDCT:117553009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1333","identifierIndex":0} +UMLS:C1711389 Neoplastic Erythroblast biolink:Cell skos:exactMatch NCIT:C43217 Neoplastic Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1334","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0682690 primary sensory neuron biolink:Cell skos:exactMatch UMLS:C0682690 primary sensory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1335"} +UMLS:C4733599 autologous anti-CD19/CD22-CAR-T cells biolink:Cell skos:exactMatch UMLS:C4733599 autologous anti-CD19/CD22-CAR-T cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1336"} +CL:0000441 follicle stem cell biolink:Cell skos:exactMatch CL:0000441 follicle stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1337","subject_information_content":100.0} +UMLS:C4267790 Cells.CD27+CD45RA+ biolink:Cell skos:exactMatch UMLS:C4267790 Cells.CD27+CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1338"} +UMLS:C5416854 DB-001 biolink:Cell skos:exactMatch UMLS:C5416854 DB-001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1339"} +CL:0002508 langerin-negative, CD103-negative lymph node dendritic cell biolink:Cell skos:exactMatch CL:0002508 langerin-negative, CD103-negative lymph node dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1340","subject_information_content":91.94953810872488} +UMLS:C4038495 Cells.aneuploid.S phase population biolink:Cell skos:exactMatch UMLS:C4038495 Cells.aneuploid.S phase population biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1341"} +UMLS:C5175158 Nucleated erythrocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175158 Nucleated erythrocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1342"} +UMLS:C0079722 Lymphocytes, Tumor-Infiltrating biolink:Cell skos:exactMatch NCIT:C12546 Tumor Infiltrating Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1343","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C2339921 Epithelial cell of uterus biolink:Cell skos:exactMatch UMLS:C2339921 Epithelial cell of uterus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1344"} +UMLS:C5173434 Monocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173434 Monocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1345"} +UMLS:C2599784 Granulocytes.CD55 deficient biolink:Cell skos:exactMatch UMLS:C2599784 Granulocytes.CD55 deficient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1346"} +UMLS:C3831169 CD19CAR-CD28zeta-4-1BB-expressing Allogeneic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C107242 CD19CAR-CD28zeta-4-1BB-expressing Allogeneic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1347","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518981 Perineural Cell biolink:Cell skos:exactMatch NCIT:C41416 Perineural Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1348","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C1514079 Neoplastic Round Neuroepithelial Cell biolink:Cell skos:exactMatch NCIT:C42092 Neoplastic Round Neuroepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1349","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512330 Hallmark Cell biolink:Cell skos:exactMatch NCIT:C39679 Hallmark Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1350","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0079722 Lymphocytes, Tumor-Infiltrating biolink:Cell skos:exactMatch MESH:D016246 Lymphocytes, Tumor-Infiltrating biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1343","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1182634 Pancreatic Polypeptide-Secreting Cells biolink:Cell skos:exactMatch MESH:D050418 Pancreatic Polypeptide-Secreting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1351","identifierIndex":0} +UMLS:C1519562 Totipotent neuroepithelial stem cell biolink:Cell skos:exactMatch NCIT:C33796 Totipotent Neuroepithelial Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1352","subject_information_content":100.0,"identifierIndex":0} +CL:0002123 B220-low CD38-positive IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002123 B220-low CD38-positive IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1353","subject_information_content":100.0} +CL:0000530 primary neuron biolink:Cell skos:exactMatch CL:0000530 primary neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1354","subject_information_content":86.87026217152628} +UMLS:C1317634 Agranular platelet biolink:Cell skos:exactMatch SNOMEDCT:726588009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1355","identifierIndex":0} +UMLS:C1183200 Set of adrenergic cells in area postrema and anterior reticular nucleus [C1, C2] biolink:Cell skos:exactMatch UMLS:C1183200 Set of adrenergic cells in area postrema and anterior reticular nucleus [C1, C2] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1356"} +UMLS:C5174092 Myeloblasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174092 Myeloblasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1357"} +UMLS:C0682695 Renshaw Cells biolink:Cell skos:exactMatch NCIT:C33463 Renshaw Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1358","subject_information_content":100.0,"identifierIndex":0} +CL:0002198 oncocyte biolink:Cell skos:exactMatch CL:0002198 oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1359","subject_information_content":91.94953810872488} +UMLS:C1519376 Small Lymphocyte-Like Neoplastic Germ Cell biolink:Cell skos:exactMatch NCIT:C37131 Small Lymphocyte-Like Neoplastic Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1360","subject_information_content":100.0,"identifierIndex":0} +CL:0000791 mature alpha-beta T cell biolink:Cell skos:exactMatch CL:0000791 mature alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1361","subject_information_content":68.46047293680394} +UMLS:C0682700 Peripheral neuron biolink:Cell skos:exactMatch UMLS:C0682700 Peripheral neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1362"} +CL:0009060 marginal zone B cell of lymph node biolink:Cell skos:exactMatch CL:0009060 marginal zone B cell of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1363","subject_information_content":100.0} +CL:0009094 endothelial cell of hepatic portal vein biolink:Cell skos:exactMatch CL:0009094 endothelial cell of hepatic portal vein biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1364"} +UMLS:C5216320 Smudge cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216320 Smudge cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1365"} +CL:0002451 mammary stem cell biolink:Cell skos:exactMatch CL:0002451 mammary stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1366","subject_information_content":100.0} +UMLS:C0682695 Renshaw Cells biolink:Cell skos:exactMatch MESH:D066293 Renshaw Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1358","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0483190 CD34+DR+ biolink:Cell skos:exactMatch UMLS:C0483190 CD34+DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1367"} +UMLS:C0879593 therapeutic autologous dendritic cells biolink:Cell skos:exactMatch NCIT:C2594 Therapeutic Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1368","subject_information_content":76.4125729994664,"identifierIndex":0} +CL:0000629 storage cell biolink:Cell skos:exactMatch CL:0000629 storage cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1369","subject_information_content":100.0} +CL:0002541 chorionic membrane mesenchymal stem cell biolink:Cell skos:exactMatch CL:0002541 chorionic membrane mesenchymal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1370","subject_information_content":100.0} +UMLS:C0229638 Neutrophilic metamyelocyte biolink:Cell skos:exactMatch SNOMEDCT:50134008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1371","identifierIndex":0} +CL:2000047 brainstem motor neuron biolink:Cell skos:exactMatch CL:2000047 brainstem motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1372","subject_information_content":100.0} +CL:0002411 Vgamma1.1-positive, Vdelta6.3-negative thymocyte biolink:Cell skos:exactMatch CL:0002411 Vgamma1.1-positive, Vdelta6.3-negative thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1373","subject_information_content":91.94953810872488} +CL:0008024 pancreatic endocrine cell biolink:Cell skos:exactMatch CL:0008024 pancreatic endocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1374","subject_information_content":88.2062864997332} +CL:0000108 cholinergic neuron biolink:Cell skos:exactMatch CL:0000108 cholinergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1375","subject_information_content":80.1558246084581} +UMLS:C0225467 Structure of middle cells of ethmoid sinus biolink:Cell skos:exactMatch SNOMEDCT:57232001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1376","identifierIndex":0} +CL:0002061 T-helper 9 cell biolink:Cell skos:exactMatch CL:0002061 T-helper 9 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1377","subject_information_content":100.0} +CL:4006000 fibroblast of breast biolink:Cell skos:exactMatch CL:4006000 fibroblast of breast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1378","subject_information_content":94.92072406280138} +UMLS:C1513938 Neoplastic Chondroblast-Like Cell biolink:Cell skos:exactMatch NCIT:C36986 Neoplastic Chondroblast-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1379","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514037 Neoplastic Myeloblast without Azurophilic Granules biolink:Cell skos:exactMatch NCIT:C37179 Neoplastic Myeloblast without Azurophilic Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1380","subject_information_content":100.0,"identifierIndex":0} +CL:0007010 preosteoblast biolink:Cell skos:exactMatch CL:0007010 preosteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1381","subject_information_content":100.0} +UMLS:C0596889 Mauthner's neuron biolink:Cell skos:exactMatch UMLS:C0596889 Mauthner's neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1382"} +UMLS:C1514085 Neoplastic Small Cell biolink:Cell skos:exactMatch NCIT:C37103 Neoplastic Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1383","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4518146 Population of all spermatozoa with double forms in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725251004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1384","identifierIndex":0} +UMLS:C1267863 Lymphocyte positive for both CD10 antigen and CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:117544002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1385","identifierIndex":0} +UMLS:C5157533 CD4 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157533 CD4 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1386"} +CL:0002299 type-2 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002299 type-2 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1387","subject_information_content":100.0} +UMLS:C1979635 Blasts.CD11b biolink:Cell skos:exactMatch UMLS:C1979635 Blasts.CD11b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1388"} +CL:2000096 fibroblast of the reticular layer of dermis biolink:Cell skos:exactMatch CL:2000096 fibroblast of the reticular layer of dermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1389","subject_information_content":100.0} +CL:0000237 keratinizing barrier epithelial cell biolink:Cell skos:exactMatch CL:0000237 keratinizing barrier epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1390","subject_information_content":80.1558246084581} +UMLS:C0682689 neuron type biolink:Cell skos:exactMatch UMLS:C0682689 neuron type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1391"} +UMLS:C5157563 CD41a cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157563 CD41a cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1392"} +UMLS:C4053969 Suppressive Monocyte biolink:Cell skos:exactMatch NCIT:C122732 Suppressive Monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1393","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5181218 Somatic cells | Milk | Microbiology biolink:Cell skos:exactMatch UMLS:C5181218 Somatic cells | Milk | Microbiology biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1394"} +CL:0002439 NKGA2-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002439 NKGA2-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1395","subject_information_content":100.0} +CL:0010014 type II pinealocyte biolink:Cell skos:exactMatch CL:0010014 type II pinealocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1396","subject_information_content":100.0} +CL:0002402 Peyer's patch B cell biolink:Cell skos:exactMatch CL:0002402 Peyer's patch B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1397","subject_information_content":100.0} +UMLS:C5417911 Autologous Anti-CD19 T-cell Receptor Fusion Construct T-cells TC-110 biolink:Cell skos:exactMatch NCIT:C172366 Autologous Anti-CD19 T-cell Receptor Fusion Construct T-cells TC-110 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1398","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12508 Cell biolink:Cell skos:exactMatch NCIT:C12508 Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1399","subject_information_content":54.504407133260116} +CL:0002069 type II vestibular sensory cell biolink:Cell skos:exactMatch CL:0002069 type II vestibular sensory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1400","subject_information_content":88.2062864997332} +CL:0002423 DN2a thymocyte biolink:Cell skos:exactMatch CL:0002423 DN2a thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1401","subject_information_content":100.0} +UMLS:C5204705 Tasadenoturev-infected Allogeneic Bone Marrow-derived Mesenchymal Stem Cells biolink:Cell skos:exactMatch NCIT:C159798 Tasadenoturev-infected Allogeneic Bone Marrow-derived Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1402","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182612 Epithelial cell of lacrimal canaliculus biolink:Cell skos:exactMatch UMLS:C1182612 Epithelial cell of lacrimal canaliculus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1403"} +UMLS:C1883044 Small Adenocarcinoma Cell with Scant Amount of Cytoplasm biolink:Cell skos:exactMatch NCIT:C61144 Small Adenocarcinoma Cell with Scant Amount of Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1404","subject_information_content":100.0,"identifierIndex":0} +CL:4023047 L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023047 L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1405","subject_information_content":100.0} +CL:2000005 brain macroglial cell biolink:Cell skos:exactMatch CL:2000005 brain macroglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1406","subject_information_content":88.2062864997332} +CL:1000483 Purkinje myocyte of internodal tract biolink:Cell skos:exactMatch CL:1000483 Purkinje myocyte of internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1407","subject_information_content":100.0} +CL:1001509 glycinergic neuron biolink:Cell skos:exactMatch CL:1001509 glycinergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1408","subject_information_content":100.0} +CL:0000761 type 9 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000761 type 9 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1409","subject_information_content":100.0} +UMLS:C4322820 CD103+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322820 CD103+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1410"} +UMLS:C2599885 Immature neutrophils biolink:Cell skos:exactMatch UMLS:C2599885 Immature neutrophils biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1411"} +CL:0007013 terminally differentiated odontoblast biolink:Cell skos:exactMatch CL:0007013 terminally differentiated odontoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1412","subject_information_content":100.0} +CL:0000612 eosinophilic myelocyte biolink:Cell skos:exactMatch CL:0000612 eosinophilic myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1413","subject_information_content":100.0} +CL:0011000 dorsal horn interneuron biolink:Cell skos:exactMatch CL:0011000 dorsal horn interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1414","subject_information_content":100.0} +UMLS:C0524978 Intestinal Secretin Cells biolink:Cell skos:exactMatch UMLS:C0524978 Intestinal Secretin Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1415"} +CL:0002661 luminal cell of lactiferous terminal ductal lobular unit biolink:Cell skos:exactMatch CL:0002661 luminal cell of lactiferous terminal ductal lobular unit biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1416","subject_information_content":100.0} +UMLS:C5157672 CD8+CD95+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157672 CD8+CD95+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1417"} +UMLS:C1518247 Malignant Tadpole Squamous Cell biolink:Cell skos:exactMatch NCIT:C36776 Malignant Tadpole Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1418","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1520164 Xanthoma Cell biolink:Cell skos:exactMatch NCIT:C36845 Xanthoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1419","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0945930 Cells.CD4+CD45RA+ biolink:Cell skos:exactMatch UMLS:C0945930 Cells.CD4+CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1420"} +UMLS:C0524459 Lower motor neuron biolink:Cell skos:exactMatch SNOMEDCT:91770004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1421","identifierIndex":0} +UMLS:C0038250 Stem cells biolink:Cell skos:exactMatch NCIT:C12662 Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1422","subject_information_content":73.15398369131682,"identifierIndex":0} +UMLS:C4727509 Genetically-engineered Immune Cell biolink:Cell skos:exactMatch NCIT:C154231 Genetically-engineered Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1423","subject_information_content":55.86110240946446,"identifierIndex":0} +UMLS:C5173436 Monocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173436 Monocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1424"} +UMLS:C0038250 Stem cells biolink:Cell skos:exactMatch MESH:D013234 Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1422","subject_information_content":73.15398369131682,"identifierIndex":1} +UMLS:C0596979 Muller Cells biolink:Cell skos:exactMatch UMLS:C0596979 Muller Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1425"} +CL:0000700 dopaminergic neuron biolink:Cell skos:exactMatch CL:0000700 dopaminergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1426","subject_information_content":91.94953810872488} +UMLS:C5216211 Erythrocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216211 Erythrocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1427"} +UMLS:C0038250 Stem cells biolink:Cell skos:exactMatch SNOMEDCT:419758009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1422","subject_information_content":73.15398369131682,"identifierIndex":2} +UMLS:C1518313 Nevus Cell B-Type biolink:Cell skos:exactMatch NCIT:C36865 Nevus Cell B-Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1428","subject_information_content":100.0,"identifierIndex":0} +CL:0000354 blastemal cell biolink:Cell skos:exactMatch CL:0000354 blastemal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1429","subject_information_content":100.0} +UMLS:C1879787 Basal Cell of the Squamous Epithelium biolink:Cell skos:exactMatch NCIT:C61604 Basal Cell of the Squamous Epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1430","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157290 CD127 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157290 CD127 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1431"} +UMLS:C2340197 Luminal cell of lactiferous terminal ductal lobular unit biolink:Cell skos:exactMatch UMLS:C2340197 Luminal cell of lactiferous terminal ductal lobular unit biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1432"} +UMLS:C4324118 CD28+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4324118 CD28+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1433"} +CL:1000715 kidney cortex collecting duct intercalated cell biolink:Cell skos:exactMatch CL:1000715 kidney cortex collecting duct intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1434","subject_information_content":100.0} +CL:0001058 plasmacytoid dendritic cell, human biolink:Cell skos:exactMatch CL:0001058 plasmacytoid dendritic cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1435","subject_information_content":100.0} +UMLS:C1441349 Abnormal blood cells.total biolink:Cell skos:exactMatch UMLS:C1441349 Abnormal blood cells.total biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1436"} +CL:0000452 thyroid hormone secreting cell biolink:Cell skos:exactMatch CL:0000452 thyroid hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1437","subject_information_content":100.0} +UMLS:C1514076 Neoplastic Round Cell biolink:Cell skos:exactMatch NCIT:C37099 Neoplastic Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1438","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1440324 Cells.CD49d biolink:Cell skos:exactMatch UMLS:C1440324 Cells.CD49d biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1439"} +UMLS:C5157235 CD10 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157235 CD10 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1440"} +CL:4023014 L5 vip cortical GABAergic interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023014 L5 vip cortical GABAergic interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1441","subject_information_content":100.0} +UMLS:C5157312 CD14+CD16+CD59+ cells | Serum | Cell markers biolink:Cell skos:exactMatch UMLS:C5157312 CD14+CD16+CD59+ cells | Serum | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1442"} +UMLS:C1512564 Hypogranular Promyelocyte biolink:Cell skos:exactMatch NCIT:C37074 Hypogranular Promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1443","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333827 Monocytoid cell biolink:Cell skos:exactMatch SNOMEDCT:35907002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1444","identifierIndex":0} +UMLS:C2936184 Fibroblast-Derived Induced Pluripotent Stem Cells biolink:Cell skos:exactMatch UMLS:C2936184 Fibroblast-Derived Induced Pluripotent Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1445"} +UMLS:C2953656 Set of glioblasts biolink:Cell skos:exactMatch UMLS:C2953656 Set of glioblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1446"} +CL:0002300 type-7 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002300 type-7 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1447","subject_information_content":100.0} +UMLS:C5155288 Blasts/100 cells | Lymph node | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155288 Blasts/100 cells | Lymph node | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1448"} +UMLS:C2924459 Lymphocytes.variant biolink:Cell skos:exactMatch UMLS:C2924459 Lymphocytes.variant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1449"} +UMLS:C1184142 Luminal cell of lactiferous duct biolink:Cell skos:exactMatch UMLS:C1184142 Luminal cell of lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1450"} +UMLS:C3827031 Activated Marrow Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C111759 Activated Marrow Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1451","subject_information_content":100.0,"identifierIndex":0} +CL:0000246 Mauthner neuron biolink:Cell skos:exactMatch CL:0000246 Mauthner neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1452","subject_information_content":100.0} +UMLS:C1881911 Mucinous Tall Columnar Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C54690 Mucinous Tall Columnar Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1453","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4300405 Cells.chromosome region 13q14 biolink:Cell skos:exactMatch UMLS:C4300405 Cells.chromosome region 13q14 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1454"} +CL:0002284 type X enteroendocrine cell biolink:Cell skos:exactMatch CL:0002284 type X enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1456","subject_information_content":100.0} +UMLS:C4287777 PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701 biolink:Cell skos:exactMatch NCIT:C128029 PRAME-targeting T-cell Receptor/Inducible Caspase 9 BPX-701 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1455","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170957 Leukocytes other | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170957 Leukocytes other | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1457"} +UMLS:C0444746 Endocyte biolink:Cell skos:exactMatch SNOMEDCT:262506003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1458","identifierIndex":0} +UMLS:C1515019 Subependymal Cell biolink:Cell skos:exactMatch NCIT:C41452 Subependymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1459","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440386 Cells.euploid+Cells.aneuploid.population 2 biolink:Cell skos:exactMatch UMLS:C1440386 Cells.euploid+Cells.aneuploid.population 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1460"} +UMLS:C0004827 Basophils biolink:Cell skos:exactMatch NCIT:C12531 Basophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1461","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0004827 Basophils biolink:Cell skos:exactMatch MESH:D001491 Basophils biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1461","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4329669 Circulating Myeloid Cell biolink:Cell skos:exactMatch NCIT:C129907 Circulating Myeloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1462","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157357 CD19+CD38+IgM- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157357 CD19+CD38+IgM- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1463"} +UMLS:C2326151 Set of erythrocytes biolink:Cell skos:exactMatch UMLS:C2326151 Set of erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1464"} +MESH:D010786 Photoreceptor Cells biolink:Cell skos:exactMatch MESH:D010786 Photoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1465"} +CL:0002583 subcutaneous preadipocyte biolink:Cell skos:exactMatch CL:0002583 subcutaneous preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1466","subject_information_content":100.0} +UMLS:C3899992 Autologous TNS9.3.55-transduced CD34-positive Cells biolink:Cell skos:exactMatch NCIT:C116734 Autologous TNS9.3.55-transduced CD34-positive Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1467","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5206807 WT1/PRAME/Survivin-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C162764 WT1/PRAME/Survivin-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1468","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157459 CD3+CD8+CD27+CD62L+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157459 CD3+CD8+CD27+CD62L+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1469"} +UMLS:C5380998 Cells.CD8.CMV specific biolink:Cell skos:exactMatch UMLS:C5380998 Cells.CD8.CMV specific biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1470"} +CL:0000968 Be cell biolink:Cell skos:exactMatch CL:0000968 Be cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1471","subject_information_content":91.94953810872488} +UMLS:C0314586 Colony-forming unit of eosinophilic lineage biolink:Cell skos:exactMatch SNOMEDCT:445115004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1472","identifierIndex":0} +UMLS:C5157353 CD19+CD27+IgD+IgM+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157353 CD19+CD27+IgD+IgM+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1473"} +UMLS:C1266875 Epidermal Langerhans cell biolink:Cell skos:exactMatch SNOMEDCT:127854005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1474","identifierIndex":0} +UMLS:C1440253 Cells.CD126 biolink:Cell skos:exactMatch UMLS:C1440253 Cells.CD126 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1475"} +CL:0010013 type I pinealocyte biolink:Cell skos:exactMatch CL:0010013 type I pinealocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1476","subject_information_content":100.0} +CL:0000920 CD8-positive, CD28-negative, alpha-beta regulatory T cell biolink:Cell skos:exactMatch CL:0000920 CD8-positive, CD28-negative, alpha-beta regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1477","subject_information_content":100.0} +UMLS:C2337177 Mesothelial cell of parietal pleura biolink:Cell skos:exactMatch UMLS:C2337177 Mesothelial cell of parietal pleura biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1478"} +CL:1001016 kidney loop of Henle ascending limb epithelial cell biolink:Cell skos:exactMatch CL:1001016 kidney loop of Henle ascending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1479","subject_information_content":88.2062864997332} +UMLS:C3871166 2000 erythrocytes biolink:Cell skos:exactMatch UMLS:C3871166 2000 erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1480"} +UMLS:C1440369 Cells.CD93 biolink:Cell skos:exactMatch UMLS:C1440369 Cells.CD93 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1481"} +UMLS:C1514202 Polygonal Brown Fat Cell biolink:Cell skos:exactMatch NCIT:C36967 Polygonal Brown Fat Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1482","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C2951827 Endothelial cell of endocardium of ventricle biolink:Cell skos:exactMatch UMLS:C2951827 Endothelial cell of endocardium of ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1483"} +CL:1001434 olfactory bulb interneuron biolink:Cell skos:exactMatch CL:1001434 olfactory bulb interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1484","subject_information_content":91.94953810872488} +UMLS:C0229608 Histioblast biolink:Cell skos:exactMatch SNOMEDCT:1605008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1485","identifierIndex":0} +CL:0002337 keratinocyte stem cell biolink:Cell skos:exactMatch CL:0002337 keratinocyte stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1486","subject_information_content":100.0} +CL:0000502 type D enteroendocrine cell biolink:Cell skos:exactMatch CL:0000502 type D enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1487","subject_information_content":88.2062864997332} +CL:0009061 intestinal crypt stem cell of anorectum biolink:Cell skos:exactMatch CL:0009061 intestinal crypt stem cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1488","subject_information_content":100.0} +UMLS:C0600531 U937 Cells biolink:Cell skos:exactMatch MESH:D020298 U937 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1489","identifierIndex":0} +UMLS:C1514739 Reactive mesothelial cells biolink:Cell skos:exactMatch UMLS:C1514739 Reactive mesothelial cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1490"} +UMLS:C1267989 Lymphocyte positive for CD103 antigen biolink:Cell skos:exactMatch SNOMEDCT:117429001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1491","identifierIndex":0} +UMLS:C1267581 Gastric mucous gland neck cell biolink:Cell skos:exactMatch SNOMEDCT:110605001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1492","identifierIndex":0} +UMLS:C5157407 CD24 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157407 CD24 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1493"} +NCIT:C12576 Enterochromaffin-Like Cell biolink:Cell skos:exactMatch NCIT:C12576 Enterochromaffin-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1494","subject_information_content":100.0} +UMLS:C2332975 Folliculostellate cell of pars distalis of adenohypophysis biolink:Cell skos:exactMatch UMLS:C2332975 Folliculostellate cell of pars distalis of adenohypophysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1495"} +UMLS:C5171870 Macrophages | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171870 Macrophages | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1496"} +UMLS:C1171322 Adult Stem Cells biolink:Cell skos:exactMatch UMLS:C1171322 Adult Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1497"} +CL:1001131 vasa recta ascending limb cell biolink:Cell skos:exactMatch CL:1001131 vasa recta ascending limb cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1498","subject_information_content":91.94953810872488} +UMLS:C1882991 Secretory Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C60313 Secretory Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1499","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4699465 Monotypic lambda plasma cells biolink:Cell skos:exactMatch UMLS:C4699465 Monotypic lambda plasma cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1500"} +UMLS:C5166081 Granulocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166081 Granulocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1501"} +MESH:D053058 Trophozoites biolink:Cell skos:exactMatch MESH:D053058 Trophozoites biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1502"} +UMLS:C5182912 Terminal deoxyribonucleotidyl transferase cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5182912 Terminal deoxyribonucleotidyl transferase cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1503"} +CL:0000393 electrically responsive cell biolink:Cell skos:exactMatch CL:0000393 electrically responsive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1504","subject_information_content":54.66841460642586} +UMLS:C4527316 Chimeric Antigen Receptor T-cells biolink:Cell skos:exactMatch NCIT:C137999 Chimeric Antigen Receptor T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1505","subject_information_content":58.277206549246216,"identifierIndex":0} +CL:0000972 class switched memory B cell biolink:Cell skos:exactMatch CL:0000972 class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1506","subject_information_content":80.1558246084581} +NCIT:C32140 Argentaffin Cell biolink:Cell skos:exactMatch NCIT:C32140 Argentaffin Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1507","subject_information_content":100.0} +UMLS:C1512899 Interphase Cell biolink:Cell skos:exactMatch NCIT:C32869 Interphase Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1508","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1717693 Chronic leukemia markers biolink:Cell skos:exactMatch UMLS:C1717693 Chronic leukemia markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1510"} +CL:0002003 CD34-positive, GlyA-negative erythroid progenitor cell biolink:Cell skos:exactMatch CL:0002003 CD34-positive, GlyA-negative erythroid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1509","subject_information_content":100.0} +UMLS:C1522374 Dendritic Cell - Langerhans Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C24191 Mouse Langerhans Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1511","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328464 Fibroblast of connective tissue of nonglandular part of prostate biolink:Cell skos:exactMatch UMLS:C2328464 Fibroblast of connective tissue of nonglandular part of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1512"} +UMLS:C0483193 CD7+CD3- biolink:Cell skos:exactMatch UMLS:C0483193 CD7+CD3- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1513"} +UMLS:C1517811 Leukemic Plasma Cell biolink:Cell skos:exactMatch NCIT:C41071 Leukemic Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1514","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440141 Blasts.CD13 biolink:Cell skos:exactMatch UMLS:C1440141 Blasts.CD13 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1515"} +CL:0000964 Bm2' B cell biolink:Cell skos:exactMatch CL:0000964 Bm2' B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1516","subject_information_content":100.0} +UMLS:C1440328 Cells.CD5+CD8+ biolink:Cell skos:exactMatch UMLS:C1440328 Cells.CD5+CD8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1517"} +CL:0000459 noradrenergic cell biolink:Cell skos:exactMatch CL:0000459 noradrenergic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1518","subject_information_content":88.2062864997332} +UMLS:C1514591 Pseudoxanthoma Cell biolink:Cell skos:exactMatch NCIT:C36740 Pseudoxanthoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1519","subject_information_content":100.0,"identifierIndex":0} +CL:1000287 myocyte of anterior internodal tract biolink:Cell skos:exactMatch CL:1000287 myocyte of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1520","subject_information_content":100.0} +CL:0000785 mature B cell biolink:Cell skos:exactMatch CL:0000785 mature B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1521","subject_information_content":69.63974591466652} +UMLS:C3282454 HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 25 mL INTRAVENOUS INJECTION [HemaCord] biolink:Cell skos:exactMatch UMLS:C3282454 HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 25 mL INTRAVENOUS INJECTION [HemaCord] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1522"} +CL:2000059 prostate gland microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000059 prostate gland microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1523","subject_information_content":100.0} +UMLS:C1182789 Epithelial cell of visceral layer of glomerular capsule biolink:Cell skos:exactMatch UMLS:C1182789 Epithelial cell of visceral layer of glomerular capsule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1524"} +UMLS:C1182459 Differentiated muscle cell biolink:Cell skos:exactMatch UMLS:C1182459 Differentiated muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1525"} +UMLS:C2326252 Monopoietic cell biolink:Cell skos:exactMatch UMLS:C2326252 Monopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1526"} +CL:0002121 CD24-negative CD38-negative IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002121 CD24-negative CD38-negative IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1527","subject_information_content":100.0} +UMLS:C5380994 Cells.CD8.HLA-B8 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5380994 Cells.CD8.HLA-B8 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1528"} +UMLS:C0947286 Cell positive for CD14 antigen biolink:Cell skos:exactMatch SNOMEDCT:116752009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1529","identifierIndex":0} +UMLS:C2736938 Cells.CD8+CD45RO+ biolink:Cell skos:exactMatch UMLS:C2736938 Cells.CD8+CD45RO+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1530"} +UMLS:C0333856 Non-cleaved cell biolink:Cell skos:exactMatch SNOMEDCT:63584005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1531","identifierIndex":0} +UMLS:C5177778 Polymorphonuclear cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177778 Polymorphonuclear cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1532"} +CL:0000011 migratory trunk neural crest cell biolink:Cell skos:exactMatch CL:0000011 migratory trunk neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1533","subject_information_content":100.0} +UMLS:C0752062 Posterior Horn Cells biolink:Cell skos:exactMatch NCIT:C12640 Posterior Horn Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1534","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0752062 Posterior Horn Cells biolink:Cell skos:exactMatch MESH:D020671 Posterior Horn Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1534","subject_information_content":100.0,"identifierIndex":1} +CL:0000437 gonadtroph biolink:Cell skos:exactMatch CL:0000437 gonadtroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1535","subject_information_content":100.0} +UMLS:C5206589 Autologous CD138-specific CAR T-cells biolink:Cell skos:exactMatch NCIT:C162482 Autologous CD138-specific CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1536","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0008572 Chromatophore biolink:Cell skos:exactMatch NCIT:C12581 Chromatophore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1537","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1441343 100 lymphocytes biolink:Cell skos:exactMatch UMLS:C1441343 100 lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1538"} +UMLS:C0008572 Chromatophore biolink:Cell skos:exactMatch MESH:D002856 Chromatophores biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1537","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:0000869 tonsillar macrophage biolink:Cell skos:exactMatch CL:0000869 tonsillar macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1539","subject_information_content":100.0} +UMLS:C1179516 Epithelial cell of pancreas biolink:Cell skos:exactMatch UMLS:C1179516 Epithelial cell of pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1540"} +UMLS:C3656575 Cells.CD158e biolink:Cell skos:exactMatch UMLS:C3656575 Cells.CD158e biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1541"} +UMLS:C5157284 CD123 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157284 CD123 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1542"} +UMLS:C0014792 Erythrocytes biolink:Cell skos:exactMatch SNOMEDCT:41898006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1543","identifierIndex":0} +UMLS:C0546506 P.B. reticulum cell biolink:Cell skos:exactMatch UMLS:C0546506 P.B. reticulum cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1544"} +CL:4028001 pulmonary capillary endothelial cell biolink:Cell skos:exactMatch CL:4028001 pulmonary capillary endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1545"} +UMLS:C1519221 Secretory cell biolink:Cell skos:exactMatch NCIT:C13055 Secretory Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1546","subject_information_content":70.5028418856209,"identifierIndex":0} +UMLS:C1511439 CH01 biolink:Cell skos:exactMatch NCIT:C20285 CH01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1547","subject_information_content":100.0,"identifierIndex":0} +CL:0000876 splenic white pulp macrophage biolink:Cell skos:exactMatch CL:0000876 splenic white pulp macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1548","subject_information_content":94.92072406280138} +CL:0000833 eosinophilic promyelocyte biolink:Cell skos:exactMatch CL:0000833 eosinophilic promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1549","subject_information_content":100.0} +CL:0000596 sexual spore biolink:Cell skos:exactMatch CL:0000596 sexual spore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1550","subject_information_content":89.84144812560278} +UMLS:C1267929 Lymphocyte positive for both CD45 antigen and CD14 antigen biolink:Cell skos:exactMatch SNOMEDCT:117372008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1551","identifierIndex":0} +CL:1001569 hippocampal interneuron biolink:Cell skos:exactMatch CL:1001569 hippocampal interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1552","subject_information_content":94.92072406280138} +CL:0000423 tip cell biolink:Cell skos:exactMatch CL:0000423 tip cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1553","subject_information_content":94.92072406280138} +CL:1000510 kidney glomerular epithelial cell biolink:Cell skos:exactMatch CL:1000510 kidney glomerular epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1554","subject_information_content":85.74066969721673} +UMLS:C5157477 CD30 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157477 CD30 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1555"} +UMLS:C1182626 Epithelial cell of paranasal sinus part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182626 Epithelial cell of paranasal sinus part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1556"} +UMLS:C5181368 Spermatozoa Progressive | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5181368 Spermatozoa Progressive | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1557"} +UMLS:C1184144 Luminal cell of alveolus of lactiferous gland biolink:Cell skos:exactMatch UMLS:C1184144 Luminal cell of alveolus of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1558"} +UMLS:C1954356 X linked heterotaxy biolink:Cell skos:exactMatch UMLS:C1954356 X linked heterotaxy biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1559"} +UMLS:C4518172 Population of all fetal erythrocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725441003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1560","identifierIndex":0} +CL:0000822 B-2 B cell biolink:Cell skos:exactMatch CL:0000822 B-2 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1561","subject_information_content":86.87026217152628} +UMLS:C3899973 idecabtagene vicleucel biolink:Cell skos:exactMatch UMLS:C5442136 bb2121 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1562","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3496569 A12 dopamine cells biolink:Cell skos:exactMatch UMLS:C3496569 A12 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1563"} +UMLS:C5237351 Allogeneic CS1-specific Universal CAR-expressing T-lymphocytes UCARTCS1A biolink:Cell skos:exactMatch NCIT:C165661 Allogeneic CS1-specific Universal CAR-expressing T-lymphocytes UCARTCS1A biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1564","subject_information_content":100.0,"identifierIndex":0} +CL:0002188 glomerular endothelial cell biolink:Cell skos:exactMatch CL:0002188 glomerular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1565","subject_information_content":94.92072406280138} +UMLS:C1512308 HL-60/MX1 biolink:Cell skos:exactMatch NCIT:C20230 HL-60/MX1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1566","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708923 Malignant Transitional Cell with Eccentrically Placed Large Nucleus and Small Nucleolus biolink:Cell skos:exactMatch NCIT:C54555 Malignant Transitional Cell with Eccentrically Placed Large Nucleus and Small Nucleolus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1567","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3899973 idecabtagene vicleucel biolink:Cell skos:exactMatch NCIT:C117729 Idecabtagene Vicleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1562","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0333810 Knizocyte biolink:Cell skos:exactMatch SNOMEDCT:84082000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1568","identifierIndex":0} +MESH:D006367 HeLa Cells biolink:Cell skos:exactMatch MESH:D006367 HeLa Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1569"} +UMLS:C5418086 Allogeneic Third-party Suicide Gene-transduced Anti-HLA-DPB1*0401 CD4+ T-cells CTL 19 biolink:Cell skos:exactMatch NCIT:C174401 Allogeneic Third-party Suicide Gene-transduced Anti-HLA-DPB1*0401 CD4+ T-cells CTL 19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1570","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086901 Therapeutic gamma delta T-lymphocytes biolink:Cell skos:exactMatch NCIT:C124644 Therapeutic gamma delta T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1571","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5206845 Autologous Anti-CD19 CAR-CD28 T-cells ET019002 biolink:Cell skos:exactMatch NCIT:C162856 Autologous Anti-CD19 CAR-CD28 T-cells ET019002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1572","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0546508 P.B. lymphoblast biolink:Cell skos:exactMatch UMLS:C0546508 P.B. lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1573"} +UMLS:C3899973 idecabtagene vicleucel biolink:Cell skos:exactMatch MESH:C000715380 idecabtagene vicleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1562","subject_information_content":100.0,"identifierIndex":2} +UMLS:C2337780 Dendritic reticular cell biolink:Cell skos:exactMatch UMLS:C2337780 Dendritic reticular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1574"} +CL:4023038 L6b glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023038 L6b glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1575","subject_information_content":94.92072406280138} +CL:2000063 ovarian fibroblast biolink:Cell skos:exactMatch CL:2000063 ovarian fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1576","subject_information_content":100.0} +UMLS:C0229537 Pituitary beta cell biolink:Cell skos:exactMatch SNOMEDCT:37514005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1577","identifierIndex":0} +UMLS:C5174104 Myelocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174104 Myelocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1578"} +CL:0002595 smooth muscle cell of the subclavian artery biolink:Cell skos:exactMatch CL:0002595 smooth muscle cell of the subclavian artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1579","subject_information_content":94.92072406280138} +UMLS:C5216278 Mononuclear cells|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216278 Mononuclear cells|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1580"} +UMLS:C3899973 idecabtagene vicleucel biolink:Cell skos:exactMatch SNOMEDCT:1156047000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1562","subject_information_content":100.0,"identifierIndex":3} +UMLS:C5178301 Promonocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178301 Promonocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1582"} +UMLS:C1267965 Lymphocyte positive for CD71 antigen biolink:Cell skos:exactMatch SNOMEDCT:116846003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1581","identifierIndex":0} +UMLS:C1512084 Ductal Carcinoma Cell biolink:Cell skos:exactMatch NCIT:C36858 Ductal Carcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1583","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183428 Solocyte biolink:Cell skos:exactMatch UMLS:C1183428 Solocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1584"} +CL:0002051 CD38-high pre-BCR positive cell biolink:Cell skos:exactMatch CL:0002051 CD38-high pre-BCR positive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1585","subject_information_content":100.0} +UMLS:C1517815 Mouse Follicular Center Cell biolink:Cell skos:exactMatch NCIT:C22578 Mouse Follicular Center Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1586","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515881 Activated Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C39609 Activated Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1587","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0011003 magnocellular neurosecretory cell biolink:Cell skos:exactMatch CL:0011003 magnocellular neurosecretory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1588","subject_information_content":91.94953810872488} +UMLS:C1511468 CY82 biolink:Cell skos:exactMatch NCIT:C20242 CY82 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1589","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3899973 idecabtagene vicleucel biolink:Cell skos:exactMatch SNOMEDCT:1156050002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1562","subject_information_content":100.0,"identifierIndex":4} +UMLS:C1704617 Perivascular Epithelioid Cell biolink:Cell skos:exactMatch NCIT:C45634 Perivascular Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1590","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513971 Neoplastic Germ Cell biolink:Cell skos:exactMatch NCIT:C36903 Neoplastic Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1591","subject_information_content":80.66139376001811,"identifierIndex":0} +UMLS:C1515275 Terminal Ductal Lobular Unit Cell biolink:Cell skos:exactMatch NCIT:C33756 Terminal Ductal Lobular Unit Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1592","subject_information_content":100.0,"identifierIndex":0} +CL:0002239 ooblast biolink:Cell skos:exactMatch CL:0002239 ooblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1593","subject_information_content":100.0} +UMLS:C1292101 IgM B lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:115607006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1594","identifierIndex":0} +CL:1001021 kidney loop of Henle descending limb epithelial cell biolink:Cell skos:exactMatch CL:1001021 kidney loop of Henle descending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1595","subject_information_content":91.94953810872488} +UMLS:C1440278 Cells.CD29 biolink:Cell skos:exactMatch UMLS:C1440278 Cells.CD29 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1596"} +UMLS:C2337445 Type EC2 enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2337445 Type EC2 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1597"} +CL:0002053 CD22-positive, CD38-low small pre-B cell biolink:Cell skos:exactMatch CL:0002053 CD22-positive, CD38-low small pre-B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1598","subject_information_content":100.0} +UMLS:C5426632 Cells.CD3+CD14-CD45+DOCK8+ biolink:Cell skos:exactMatch UMLS:C5426632 Cells.CD3+CD14-CD45+DOCK8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1599"} +UMLS:C1707838 EBV-Transformed Late Germinal Center/Post-Germinal Center B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C45694 EBV-Transformed Late Germinal Center/Post-Germinal Center B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1600","subject_information_content":100.0,"identifierIndex":0} +CL:2000066 cardiac ventricle fibroblast biolink:Cell skos:exactMatch CL:2000066 cardiac ventricle fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1601","subject_information_content":100.0} +UMLS:C4684891 Anti-K-RAS G12V mTCR-transduced Autologous Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C142888 Anti-K-RAS G12V mTCR-transduced Autologous Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1602","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182605 Ciliated columnar cell of tracheobronchial tree biolink:Cell skos:exactMatch NCIT:C32317 Ciliated Bronchial Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1603","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0946499 Cells.CD4+CD29+ biolink:Cell skos:exactMatch UMLS:C0946499 Cells.CD4+CD29+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1604"} +UMLS:C0017670 Glomus jugulare biolink:Cell skos:exactMatch MESH:D005924 Glomus Jugulare biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1605","identifierIndex":0} +UMLS:C3896829 axicabtagene ciloleucel biolink:Cell skos:exactMatch SNOMEDCT:764088001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1606","identifierIndex":0} +CL:0002357 fetal derived definitive erythrocyte biolink:Cell skos:exactMatch CL:0002357 fetal derived definitive erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1607","subject_information_content":100.0} +CL:1000334 enterocyte of epithelium of small intestine biolink:Cell skos:exactMatch CL:1000334 enterocyte of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1608","subject_information_content":85.74066969721673} +UMLS:C1440299 Cells.CD35 biolink:Cell skos:exactMatch UMLS:C1440299 Cells.CD35 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1610"} +CL:0002327 mammary gland epithelial cell biolink:Cell skos:exactMatch CL:0002327 mammary gland epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1611","subject_information_content":81.79098623432766} +CL:0005000 spinal cord interneuron biolink:Cell skos:exactMatch CL:0005000 spinal cord interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1612","subject_information_content":89.84144812560278} +UMLS:C1518750 Mouse Ovarian Follicular Cell biolink:Cell skos:exactMatch NCIT:C22661 Mouse Ovarian Follicular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1613","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0018496 Auditory Hair Cell biolink:Cell skos:exactMatch NCIT:C12629 Cochlear Hair Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1609","subject_information_content":86.87026217152628,"identifierIndex":0} +CL:0002092 bone marrow cell biolink:Cell skos:exactMatch CL:0002092 bone marrow cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1614","subject_information_content":80.1558246084581} +CL:1001517 stomach enteroendocrine cell biolink:Cell skos:exactMatch CL:1001517 stomach enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1615","subject_information_content":100.0} +UMLS:C0018496 Auditory Hair Cell biolink:Cell skos:exactMatch MESH:D006198 Hair Cells, Auditory biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1609","subject_information_content":86.87026217152628,"identifierIndex":1} +CL:0002165 phalangeal cell biolink:Cell skos:exactMatch CL:0002165 phalangeal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1616","subject_information_content":91.94953810872488} +UMLS:C5419630 LMP2-specific T Cell Receptor-transduced Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C172395 LMP2-specific T Cell Receptor-transduced Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1617","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3178845 Wharton Jelly Cells biolink:Cell skos:exactMatch UMLS:C3178845 Wharton Jelly Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1618"} +UMLS:C0524979 Enteroendocrine Cell biolink:Cell skos:exactMatch UMLS:C0524979 Enteroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1619"} +UMLS:C1182621 Epithelial cell of wall of inferior part of anal canal biolink:Cell skos:exactMatch UMLS:C1182621 Epithelial cell of wall of inferior part of anal canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1620"} +UMLS:C0018496 Auditory Hair Cell biolink:Cell skos:exactMatch SNOMEDCT:52148002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1609","subject_information_content":86.87026217152628,"identifierIndex":2} +NCIT:C32271 Cell of the Epidermis biolink:Cell skos:exactMatch NCIT:C32271 Cell of the Epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1621","subject_information_content":84.76217218840416} +UMLS:C4322818 CD99+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322818 CD99+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1622"} +UMLS:C0228078 Partly differentiated neural cell biolink:Cell skos:exactMatch SNOMEDCT:71609000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1623","identifierIndex":0} +NCIT:C12565 Alveolar Macrophage biolink:Cell skos:exactMatch NCIT:C12565 Alveolar Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1624","subject_information_content":100.0} +CL:1000311 adipocyte of epicardial fat of left ventricle biolink:Cell skos:exactMatch CL:1000311 adipocyte of epicardial fat of left ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1625","subject_information_content":100.0} +UMLS:C0684134 exciter neuron biolink:Cell skos:exactMatch UMLS:C0684134 exciter neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1626"} +UMLS:C5216311 Polymorphonuclear cells|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216311 Polymorphonuclear cells|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1627"} +UMLS:C5420485 CD20-CD19 Compound CAR T Cells biolink:Cell skos:exactMatch NCIT:C173960 CD20-CD19 Compound CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1628","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333859 Convoluted cell biolink:Cell skos:exactMatch SNOMEDCT:33873001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1629","identifierIndex":0} +UMLS:C4510888 Blast cell positive for CD123 antigen biolink:Cell skos:exactMatch SNOMEDCT:724307004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1630","identifierIndex":0} +CL:1001431 kidney collecting duct principal cell biolink:Cell skos:exactMatch CL:1001431 kidney collecting duct principal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1631","subject_information_content":88.2062864997332} +UMLS:C1516595 Classical Reed-Sternberg Cell biolink:Cell skos:exactMatch NCIT:C39720 Classical Reed-Sternberg Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1632","subject_information_content":91.94953810872488,"identifierIndex":0} +NCIT:C12618 Oligodendrocyte biolink:Cell skos:exactMatch NCIT:C12618 Oligodendrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1633","subject_information_content":100.0} +UMLS:C0043036 Warthin-Finkeldey giant cell biolink:Cell skos:exactMatch SNOMEDCT:54943009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1634","identifierIndex":0} +UMLS:C1512490 Horizontal Cell of Cajal biolink:Cell skos:exactMatch NCIT:C32745 Horizontal Cell of Cajal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1635","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733635 Autologous CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C155294 Autologous CD30CAR-CD28-CD3zeta-expressing T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1636","subject_information_content":100.0,"identifierIndex":0} +CL:0007007 notochordal sheath cell biolink:Cell skos:exactMatch CL:0007007 notochordal sheath cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1637","subject_information_content":100.0} +MESH:D009475 Neurons, Afferent biolink:Cell skos:exactMatch MESH:D009475 Neurons, Afferent biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1638"} +UMLS:C1267833 Lymphocyte positive for both CD3 antigen and CD8 antigen biolink:Cell skos:exactMatch SNOMEDCT:116725004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1639","identifierIndex":0} +UMLS:C1955385 Spermatozoa.short tail biolink:Cell skos:exactMatch UMLS:C1955385 Spermatozoa.short tail biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1640"} +UMLS:C4725099 Autologous CD38-4SCAR-expressing T-cells 4SCAR38 biolink:Cell skos:exactMatch NCIT:C148523 Autologous CD38-4SCAR-expressing T-cells 4SCAR38 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1642","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0206513 Type 2 vestibular sensory cell biolink:Cell skos:exactMatch UMLS:C0206513 Type 2 vestibular sensory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1643"} +UMLS:C0225336 Endothelial Cells biolink:Cell skos:exactMatch NCIT:C12865 Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1644","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225336 Endothelial Cells biolink:Cell skos:exactMatch MESH:D042783 Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1644","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0206436 Photoreceptor Cells, Invertebrate biolink:Cell skos:exactMatch NCIT:C12635 Photoreceptors, Invertebrate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1641","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225336 Endothelial Cells biolink:Cell skos:exactMatch SNOMEDCT:45709008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1644","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0206436 Photoreceptor Cells, Invertebrate biolink:Cell skos:exactMatch MESH:D017956 Photoreceptor Cells, Invertebrate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1641","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0003315 Antigen-Presenting Cells biolink:Cell skos:exactMatch UMLS:C0003315 Antigen-Presenting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1645"} +UMLS:C1181301 Inactive chief cell of parathyroid gland biolink:Cell skos:exactMatch UMLS:C1181301 Inactive chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1646"} +UMLS:C1718725 Cells.CD1c+CD22+ biolink:Cell skos:exactMatch UMLS:C1718725 Cells.CD1c+CD22+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1647"} +CL:0009070 corticomedullary thymic epithelial cell biolink:Cell skos:exactMatch CL:0009070 corticomedullary thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1648"} +UMLS:C0333846 Binucleated plasmablast biolink:Cell skos:exactMatch SNOMEDCT:11908008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1649","identifierIndex":0} +UMLS:C3847843 Basophil positive for CD63 antigen biolink:Cell skos:exactMatch SNOMEDCT:724247008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1650","identifierIndex":0} +UMLS:C1518369 Non-Keratinizing Malignant Squamous Cell biolink:Cell skos:exactMatch NCIT:C36792 Non-Keratinizing Malignant Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1651","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0009062 germinal center T cell biolink:Cell skos:exactMatch CL:0009062 germinal center T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1652","subject_information_content":100.0} +UMLS:C1708921 Malignant Thyrotroph Cell biolink:Cell skos:exactMatch NCIT:C45948 Malignant Thyrotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1653","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5169606 Irregularly contracted cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5169606 Irregularly contracted cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1654"} +UMLS:C4727180 Cytokine-treated Veto Cells biolink:Cell skos:exactMatch NCIT:C153337 Cytokine-treated Veto Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1655","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5172546 Metamyelocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172546 Metamyelocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1656"} +CL:0000623 natural killer cell biolink:Cell skos:exactMatch CL:0000623 natural killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1657","subject_information_content":75.5821178228195} +UMLS:C0440740 Granulocyte-specific biolink:Cell skos:exactMatch SNOMEDCT:256910006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1658","identifierIndex":0} +CL:0002437 mature CD8 single-positive thymocyte biolink:Cell skos:exactMatch CL:0002437 mature CD8 single-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1659","subject_information_content":100.0} +UMLS:C1711354 Malignant Mesenchymal Spindle Cell biolink:Cell skos:exactMatch NCIT:C49056 Malignant Mesenchymal Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1660","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5160676 Columnar cells/100 cells | Bronchial | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5160676 Columnar cells/100 cells | Bronchial | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1661"} +UMLS:C1180254 Epithelial cell of gallbladder biolink:Cell skos:exactMatch UMLS:C1180254 Epithelial cell of gallbladder biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1662"} +UMLS:C1956157 Suppressor T-Lymphocytes, CD8-Positive biolink:Cell skos:exactMatch UMLS:C1956157 Suppressor T-Lymphocytes, CD8-Positive biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1663"} +UMLS:C1517725 Neoplastic Large Erythroblast biolink:Cell skos:exactMatch NCIT:C37059 Neoplastic Large Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1664","subject_information_content":100.0,"identifierIndex":0} +CL:4023001 static beta motor neuron biolink:Cell skos:exactMatch CL:4023001 static beta motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1665","subject_information_content":100.0} +UMLS:C1708883 Malignant Hyperchromatic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C54245 Malignant Hyperchromatic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1666","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5238462 Fas Ligand-treated Allogeneic Mobilized Peripheral Blood Cells biolink:Cell skos:exactMatch NCIT:C167326 Fas Ligand-treated Allogeneic Mobilized Peripheral Blood Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1667","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4725929 Autologous EGFR-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies biolink:Cell skos:exactMatch NCIT:C150695 Autologous EGFR-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1668","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881554 Malignant Giant Germ Cell biolink:Cell skos:exactMatch NCIT:C61385 Malignant Giant Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1669","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4764285 Autologous Cytoplasmic Activated PD-1 CAR T-cells biolink:Cell skos:exactMatch NCIT:C158599 Autologous Cytoplasmic Activated PD-1 CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1670","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157550 CD4+CD45RO+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157550 CD4+CD45RO+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1671"} +CL:0002466 small intestine serosal dendritic cell biolink:Cell skos:exactMatch CL:0002466 small intestine serosal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1672","subject_information_content":100.0} +UMLS:C1512333 Hamster Cell Line biolink:Cell skos:exactMatch NCIT:C20221 Hamster Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1673","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000669 pericyte cell biolink:Cell skos:exactMatch CL:0000669 pericyte cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1674","subject_information_content":82.42859222307153} +UMLS:C1267829 T lymphocyte positive for CD16 antigen and negative for CD57 antigen biolink:Cell skos:exactMatch SNOMEDCT:115415001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1675","identifierIndex":0} +UMLS:C2324104 Diffuse cone bipolar cell biolink:Cell skos:exactMatch UMLS:C2324104 Diffuse cone bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1676"} +UMLS:C1440832 Islet cell 512 biolink:Cell skos:exactMatch UMLS:C1440832 Islet cell 512 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1677"} +UMLS:C1518194 Malignant Mesothelial Cell biolink:Cell skos:exactMatch NCIT:C36831 Malignant Mesothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1678","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1515146 TE03 biolink:Cell skos:exactMatch NCIT:C20296 TE03 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1679","subject_information_content":100.0,"identifierIndex":0} +CL:0002528 mature CD14-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002528 mature CD14-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1680","subject_information_content":100.0} +CL:0008027 rod bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0008027 rod bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1681","subject_information_content":100.0} +UMLS:C5417934 Allogeneic CRISPR-Cas9 Engineered Anti-BCMA T Cells CTX120 biolink:Cell skos:exactMatch NCIT:C172741 Allogeneic CRISPR-Cas9 Engineered Anti-BCMA T Cells CTX120 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1682","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2339990 Motor Neurons, Alpha biolink:Cell skos:exactMatch UMLS:C2339990 Motor Neurons, Alpha biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1683"} +UMLS:C1254546 Anisocyte (cell) biolink:Cell skos:exactMatch UMLS:C1254546 Anisocyte (cell) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1684"} +UMLS:C0682634 Leukocyte precursor biolink:Cell skos:exactMatch UMLS:C0682634 Leukocyte precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1685"} +CL:0002500 P enteroendocrine cell biolink:Cell skos:exactMatch CL:0002500 P enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1686","subject_information_content":100.0} +CL:0009032 B cell of appendix biolink:Cell skos:exactMatch CL:0009032 B cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1687","subject_information_content":100.0} +UMLS:C4304496 Population of all sickle cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719692009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1688","identifierIndex":0} +UMLS:C1183362 Type-6 epithelial cell of thymus biolink:Cell skos:exactMatch UMLS:C1183362 Type-6 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1689"} +CL:0002517 interrenal epinephrin secreting cell biolink:Cell skos:exactMatch CL:0002517 interrenal epinephrin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1690","subject_information_content":100.0} +UMLS:C1512106 Dysplastic Megakaryocyte biolink:Cell skos:exactMatch NCIT:C37046 Dysplastic Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1691","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C4527420 T-cell Receptor-engineered T-cells biolink:Cell skos:exactMatch NCIT:C138180 T-cell Receptor-engineered T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1692","subject_information_content":68.56017306259972,"identifierIndex":0} +UMLS:C1519220 Secretory-Stage Ameloblast biolink:Cell skos:exactMatch NCIT:C33524 Secretory-Stage Ameloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1693","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881551 Malignant Epithelial Oval Cell biolink:Cell skos:exactMatch NCIT:C60991 Malignant Epithelial Oval Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1694","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0002563 intestinal epithelial cell biolink:Cell skos:exactMatch CL:0002563 intestinal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1695","subject_information_content":67.44493484597689} +UMLS:C0228008 Primary spermatocyte biolink:Cell skos:exactMatch SNOMEDCT:49904001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1696","identifierIndex":0} +UMLS:C5216208 Erythrocytes.nucleated|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216208 Erythrocytes.nucleated|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1697"} +UMLS:C5171661 Lymphocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171661 Lymphocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1698"} +UMLS:C5157320 CD15 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157320 CD15 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1699"} +UMLS:C1440333 Cells.CD54 biolink:Cell skos:exactMatch UMLS:C1440333 Cells.CD54 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1700"} +CL:1000372 transitional myocyte of atrial part of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000372 transitional myocyte of atrial part of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1701","subject_information_content":100.0} +UMLS:C5382941 Interferon-gamma producing HLA-B35 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382941 Interferon-gamma producing HLA-B35 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1702"} +CL:2000045 foreskin melanocyte biolink:Cell skos:exactMatch CL:2000045 foreskin melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1703","subject_information_content":94.92072406280138} +UMLS:C1519466 Spindle Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37092 Spindle Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1704","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5171864 Macrophages | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171864 Macrophages | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1705"} +MESH:D007694 Killer Cells, Natural biolink:Cell skos:exactMatch MESH:D007694 Killer Cells, Natural biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1706"} +UMLS:C2709135 Frozen erythrocytes pediatric units biolink:Cell skos:exactMatch UMLS:C2709135 Frozen erythrocytes pediatric units biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1707"} +UMLS:C5426635 Cells.CD3-CD14-CD45+CD56+DOCK8+ biolink:Cell skos:exactMatch UMLS:C5426635 Cells.CD3-CD14-CD45+CD56+DOCK8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1708"} +UMLS:C1441142 Reticulocytes.mature biolink:Cell skos:exactMatch UMLS:C1441142 Reticulocytes.mature biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1709"} +UMLS:C4053520 Interferon Beta-secreting Mesenchymal Stem Cells biolink:Cell skos:exactMatch NCIT:C123724 Interferon Beta-secreting Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1710","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177460 Plasma cells with abnormal marker pattern | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177460 Plasma cells with abnormal marker pattern | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1711"} +CL:1000427 adrenal cortex chromaffin cell biolink:Cell skos:exactMatch CL:1000427 adrenal cortex chromaffin cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1712","subject_information_content":100.0} +UMLS:C1514275 Postradiation Dysplastic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36804 Postradiation Dysplastic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1713","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000102 polymodal neuron biolink:Cell skos:exactMatch CL:0000102 polymodal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1714","subject_information_content":100.0} +MESH:D000078404 Epidermal Cells biolink:Cell skos:exactMatch MESH:D000078404 Epidermal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1716"} +MESH:D001339 Autonomic Fibers, Preganglionic biolink:Cell skos:exactMatch MESH:D001339 Autonomic Fibers, Preganglionic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1717"} +UMLS:C5157518 CD3-CD16+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157518 CD3-CD16+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1718"} +UMLS:C5427285 Nucleated cells | Sputum | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5427285 Nucleated cells | Sputum | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1719"} +UMLS:C1979665 Cells.CD19+CD43+ biolink:Cell skos:exactMatch UMLS:C1979665 Cells.CD19+CD43+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1720"} +MESH:D009836 Oligodendroglia biolink:Cell skos:exactMatch MESH:D009836 Oligodendroglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1721"} +UMLS:C5154481 Basophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154481 Basophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1722"} +CL:0000829 basophilic myeloblast biolink:Cell skos:exactMatch CL:0000829 basophilic myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1723","subject_information_content":100.0} +NCIT:C12570 Osteoclast biolink:Cell skos:exactMatch NCIT:C12570 Osteoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1724","subject_information_content":100.0} +CL:0000487 oenocyte biolink:Cell skos:exactMatch CL:0000487 oenocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1725","subject_information_content":100.0} +UMLS:C4330725 Myelodysplastic Syndrome Clone biolink:Cell skos:exactMatch NCIT:C130199 Myelodysplastic Syndrome Clone biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1726","subject_information_content":100.0,"identifierIndex":0} +CL:0002652 endothelial cell of high endothelial venule biolink:Cell skos:exactMatch CL:0002652 endothelial cell of high endothelial venule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1727","subject_information_content":100.0} +UMLS:C4322813 CD44+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322813 CD44+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1715"} +UMLS:C1514736 Reactive Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36809 Reactive Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1728","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C0598800 Pericytes biolink:Cell skos:exactMatch UMLS:C0598800 Pericytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1729"} +UMLS:C4322674 CD8+CD56+ NK lymphocyte biolink:Cell skos:exactMatch UMLS:C4322674 CD8+CD56+ NK lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1730"} +UMLS:C2736931 Cells.CD19+CD56+ biolink:Cell skos:exactMatch UMLS:C2736931 Cells.CD19+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1731"} +UMLS:C2334042 Microfold cell of epithelium proper of ileum biolink:Cell skos:exactMatch UMLS:C2334042 Microfold cell of epithelium proper of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1732"} +CL:0000038 erythroid progenitor cell biolink:Cell skos:exactMatch CL:0000038 erythroid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1733","subject_information_content":89.84144812560278} +CL:0002070 type I vestibular sensory cell biolink:Cell skos:exactMatch CL:0002070 type I vestibular sensory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1734","subject_information_content":88.2062864997332} +UMLS:C4531900 Plasma cells.monotypic population biolink:Cell skos:exactMatch UMLS:C4531900 Plasma cells.monotypic population biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1735"} +NCIT:C13161 Juxtaglomerular Cell biolink:Cell skos:exactMatch NCIT:C13161 Juxtaglomerular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1736","subject_information_content":100.0} +UMLS:C5182508 Synovial lining cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5182508 Synovial lining cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1737"} +CL:0002036 Slamf1-positive multipotent progenitor cell biolink:Cell skos:exactMatch CL:0002036 Slamf1-positive multipotent progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1738","subject_information_content":100.0} +UMLS:C1708919 Malignant Stellate Cell biolink:Cell skos:exactMatch NCIT:C53989 Malignant Stellate Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1739","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515148 TE06 biolink:Cell skos:exactMatch NCIT:C20300 TE06 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1740","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708861 Malignant Adrenal Cortical Cell biolink:Cell skos:exactMatch NCIT:C48363 Malignant Adrenal Cortical Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1741","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267834 Lymphocyte positive for both CD3 antigen and DR antigen biolink:Cell skos:exactMatch SNOMEDCT:117524008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1742","identifierIndex":0} +UMLS:C4296891 L cell, Glucagon-like peptide-producing and PP/PYY-producing NETs biolink:Cell skos:exactMatch UMLS:C4296891 L cell, Glucagon-like peptide-producing and PP/PYY-producing NETs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1743"} +UMLS:C5157445 CD3+CD45+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157445 CD3+CD45+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1744"} +UMLS:C1440347 Cells.CD66e biolink:Cell skos:exactMatch UMLS:C1440347 Cells.CD66e biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1745"} +UMLS:C1513999 Neoplastic Large Cell with Abundant Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37106 Neoplastic Large Cell with Abundant Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1746","subject_information_content":100.0,"identifierIndex":0} +CL:2000018 endothelial cell of coronary artery biolink:Cell skos:exactMatch CL:2000018 endothelial cell of coronary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1747","subject_information_content":100.0} +UMLS:C0882840 CD3- CD16+ cells biolink:Cell skos:exactMatch UMLS:C0882840 CD3- CD16+ cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1748"} +CL:0002518 kidney epithelial cell biolink:Cell skos:exactMatch CL:0002518 kidney epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1749","subject_information_content":66.18110663087931} +UMLS:C4525936 Neural Stem Cells-expressing CRAd-S-pk7 biolink:Cell skos:exactMatch NCIT:C135612 Neural Stem Cells-expressing CRAd-S-pk7 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1750","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3896611 ROR1 CAR-specific Autologous T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C117237 ROR1 CAR-specific Autologous T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1751","subject_information_content":100.0,"identifierIndex":0} +CL:0002148 dental pulp cell biolink:Cell skos:exactMatch CL:0002148 dental pulp cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1752","subject_information_content":100.0} +UMLS:C5382747 CD107a+b expressing HLA-A2 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382747 CD107a+b expressing HLA-A2 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1753"} +UMLS:C0815001 neuron by chemical response biolink:Cell skos:exactMatch UMLS:C0815001 neuron by chemical response biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1754"} +UMLS:C5216303 Nucleated cells|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216303 Nucleated cells|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1755"} +UMLS:C2333553 Type L enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2333553 Type L enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1756"} +UMLS:C1516497 Chondrocyte-like Cell biolink:Cell skos:exactMatch NCIT:C36982 Chondrocyte-like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1757","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511469 CY91 biolink:Cell skos:exactMatch NCIT:C20243 CY91 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1758","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5148040 CD14 Monocytes biolink:Cell skos:exactMatch UMLS:C5148040 CD14 Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1759"} +UMLS:C5401590 IL15-NK Cell biolink:Cell skos:exactMatch UMLS:C5401590 IL15-NK Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1760"} +UMLS:C5157555 CD4+CD45RO+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157555 CD4+CD45RO+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1761"} +CL:0000917 Tc1 cell biolink:Cell skos:exactMatch CL:0000917 Tc1 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1762","subject_information_content":100.0} +UMLS:C4510907 Blast cell positive for CD14 antigen biolink:Cell skos:exactMatch SNOMEDCT:724252003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1763","identifierIndex":0} +UMLS:C1519000 Peripheral Epidermotropic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38323 Peripheral Epidermotropic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1764","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4684961 Tabelecleucel biolink:Cell skos:exactMatch NCIT:C143140 Tabelecleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1765","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709183 Neoplastic Lipoblast biolink:Cell skos:exactMatch NCIT:C48878 Neoplastic Lipoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1766","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0007001 skeletogenic cell biolink:Cell skos:exactMatch CL:0007001 skeletogenic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1767","subject_information_content":100.0} +UMLS:C5216232 Leukocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216232 Leukocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1768"} +UMLS:C5157498 CD34+CD117+ blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157498 CD34+CD117+ blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1769"} +UMLS:C5157600 CD5+CD23+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157600 CD5+CD23+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1770"} +CL:0000114 surface ectodermal cell biolink:Cell skos:exactMatch CL:0000114 surface ectodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1771","subject_information_content":100.0} +UMLS:C1882048 Neoplastic Epithelial Cell with Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C62102 Neoplastic Epithelial Cell with Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1772","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5174655 Neutrophils.vacuolated | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174655 Neutrophils.vacuolated | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1773"} +CL:0000756 type 4 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000756 type 4 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1774","subject_information_content":100.0} +UMLS:C1267953 Lymphocyte positive for CD62E antigen biolink:Cell skos:exactMatch SNOMEDCT:117394000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1775","identifierIndex":0} +UMLS:C5177455 Plasma cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177455 Plasma cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1776"} +UMLS:C3494452 Central Pattern Generator Neurons biolink:Cell skos:exactMatch UMLS:C3494452 Central Pattern Generator Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1777"} +UMLS:C4733637 Autologous HPV-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C155880 Autologous HPV-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1778","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512137 ESO-1 Reactive Autologous Peripheral Blood Lymphocyte biolink:Cell skos:exactMatch NCIT:C38119 ESO-1 Reactive Autologous Peripheral Blood Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1779","subject_information_content":100.0,"identifierIndex":0} +CL:0002072 nodal myocyte biolink:Cell skos:exactMatch CL:0002072 nodal myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1780","subject_information_content":86.87026217152628} +CL:0002316 supporting cell of vestibular epithelium biolink:Cell skos:exactMatch CL:0002316 supporting cell of vestibular epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1781","subject_information_content":91.94953810872488} +UMLS:C1510723 Abnormal Erythroid Precursor biolink:Cell skos:exactMatch NCIT:C37053 Abnormal Erythroid Precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1782","subject_information_content":82.42859222307153,"identifierIndex":0} +CL:0010008 cardiac endothelial cell biolink:Cell skos:exactMatch CL:0010008 cardiac endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1783","subject_information_content":89.84144812560278} +UMLS:C5163716 Erythrocytes | Duodenal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163716 Erythrocytes | Duodenal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1784"} +CL:0000040 monoblast biolink:Cell skos:exactMatch CL:0000040 monoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1785","subject_information_content":100.0} +UMLS:C0814996 Stomach cell biolink:Cell skos:exactMatch UMLS:C0814996 Stomach cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1786"} +UMLS:C0228088 Bergmann Glia biolink:Cell skos:exactMatch SNOMEDCT:55306009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1787","identifierIndex":0} +CL:0002242 nucleate cell biolink:Cell skos:exactMatch CL:0002242 nucleate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1788","subject_information_content":53.89634895151067} +UMLS:C3899815 CD30 CAR-expressing Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C116738 CD30 CAR-expressing Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1789","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1257774 Granulocyte Precursor Cells biolink:Cell skos:exactMatch MESH:D042381 Granulocyte Precursor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1790","identifierIndex":0} +CL:0000617 GABAergic neuron biolink:Cell skos:exactMatch CL:0000617 GABAergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1791","subject_information_content":71.94430466897393} +UMLS:C5157637 CD64 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157637 CD64 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1792"} +UMLS:C4759709 Meiotic cell biolink:Cell skos:exactMatch SNOMEDCT:55164002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1793","identifierIndex":0} +UMLS:C1517536 Geron ES Cell Line biolink:Cell skos:exactMatch NCIT:C20255 Geron ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1794","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C0747205 PANCYTOSIS biolink:Cell skos:exactMatch UMLS:C0747205 PANCYTOSIS biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1795"} +UMLS:C5157310 CD14 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157310 CD14 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1796"} +UMLS:C5160254 Clue cells | Vaginal | Microbiology biolink:Cell skos:exactMatch UMLS:C5160254 Clue cells | Vaginal | Microbiology biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1797"} +UMLS:C1516839 Endocrine-Stromal Cell biolink:Cell skos:exactMatch NCIT:C41608 Endocrine-Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1798","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:0000240 stratified squamous epithelial cell biolink:Cell skos:exactMatch CL:0000240 stratified squamous epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1799","subject_information_content":78.81980028025117} +UMLS:C5170953 Leukocytes other | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170953 Leukocytes other | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1800"} +UMLS:C1708898 Malignant Parathyroid Gland Cell biolink:Cell skos:exactMatch NCIT:C48266 Malignant Parathyroid Gland Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1801","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C2336229 Transitional myocyte of anterior internodal tract biolink:Cell skos:exactMatch UMLS:C2336229 Transitional myocyte of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1802"} +UMLS:C5216246 Lymphocytes.plasmacytoid|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216246 Lymphocytes.plasmacytoid|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1803"} +UMLS:C5163719 Erythrocytes | Gastric fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163719 Erythrocytes | Gastric fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1804"} +UMLS:C1522238 Thyroid Gland - Follicular Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22652 Mouse Thyroid Gland Follicular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1805","subject_information_content":100.0,"identifierIndex":0} +CL:1000695 kidney interstitial alternatively activated macrophage biolink:Cell skos:exactMatch CL:1000695 kidney interstitial alternatively activated macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1806","subject_information_content":100.0} +UMLS:C1440049 Abnormal blood cells.CD13 biolink:Cell skos:exactMatch UMLS:C1440049 Abnormal blood cells.CD13 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1807"} +CL:0000052 totipotent stem cell biolink:Cell skos:exactMatch CL:0000052 totipotent stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1808","subject_information_content":94.92072406280138} +UMLS:C0022827 L Cells biolink:Cell skos:exactMatch MESH:D007739 L Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1809","identifierIndex":0} +UMLS:C4085965 Anti-CD3/Anti-EGFR-bispecific Monoclonal Antibody-armed Activated Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C125185 Anti-CD3/Anti-EGFR-bispecific Monoclonal Antibody-armed Activated Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1810","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0227525 Hepatocyte biolink:Cell skos:exactMatch MESH:D022781 Hepatocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1811","identifierIndex":0} +UMLS:C2323448 Endocrine-paracrine cell of prostatic gland biolink:Cell skos:exactMatch UMLS:C2323448 Endocrine-paracrine cell of prostatic gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1812"} +UMLS:C5427570 Cones.left biolink:Cell skos:exactMatch UMLS:C5427570 Cones.left biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1813"} +CL:0000159 seromucus secreting cell biolink:Cell skos:exactMatch CL:0000159 seromucus secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1814","subject_information_content":73.74052434305256} +UMLS:C1514224 Poorly Differentiated Neoplastic Astrocyte biolink:Cell skos:exactMatch NCIT:C37137 Poorly Differentiated Neoplastic Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1815","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440266 Cells.CD19+CD38+ biolink:Cell skos:exactMatch UMLS:C1440266 Cells.CD19+CD38+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1816"} +UMLS:C2826113 M87o-Transduced CD34+ Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C82351 M87o-Transduced CD34+ Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1817","subject_information_content":100.0,"identifierIndex":0} +CL:0002516 interrenal chromaffin cell biolink:Cell skos:exactMatch CL:0002516 interrenal chromaffin cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1818","subject_information_content":91.94953810872488} +UMLS:C5549471 CD154 cells | T cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5549471 CD154 cells | T cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1819"} +UMLS:C1441143 Reticulocytes.mid biolink:Cell skos:exactMatch UMLS:C1441143 Reticulocytes.mid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1820"} +CL:0002629 mature microglial cell biolink:Cell skos:exactMatch CL:0002629 mature microglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1821","subject_information_content":100.0} +UMLS:C1516943 Epithelial Receptor Cell biolink:Cell skos:exactMatch NCIT:C13145 Epithelial Receptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1822","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C1257741 BALB 3T3 Cells biolink:Cell skos:exactMatch MESH:D041702 BALB 3T3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1823","identifierIndex":0} +UMLS:C1254549 Stippled Erythrocyte biolink:Cell skos:exactMatch UMLS:C1254549 Stippled Erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1824"} +UMLS:C1512638 Immature Peripheral Gamma/Delta Cell of Cytotoxic Type biolink:Cell skos:exactMatch NCIT:C38326 Immature Peripheral Gamma/Delta Cell of Cytotoxic Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1825","subject_information_content":100.0,"identifierIndex":0} +CL:0000676 cap cell biolink:Cell skos:exactMatch CL:0000676 cap cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1826","subject_information_content":100.0} +UMLS:C5170938 Leukocytes | Semen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170938 Leukocytes | Semen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1827"} +UMLS:C5163723 Erythrocytes | Prostatic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163723 Erythrocytes | Prostatic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1828"} +NCIT:C33578 Somatotroph Cell biolink:Cell skos:exactMatch NCIT:C33578 Somatotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1829","subject_information_content":100.0} +UMLS:C2324975 Enterocyte of epithelium proper of large intestine biolink:Cell skos:exactMatch UMLS:C2324975 Enterocyte of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1830"} +UMLS:C4744501 M1 Macrophage biolink:Cell skos:exactMatch NCIT:C156004 M1 Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1831","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3826997 Carboxylesterase-expressing Allogeneic Neural Stem Cells biolink:Cell skos:exactMatch NCIT:C113657 Carboxylesterase-expressing Allogeneic Neural Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1832","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2338897 Paneth cell of epithelium of large intestine biolink:Cell skos:exactMatch UMLS:C2338897 Paneth cell of epithelium of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1833"} +UMLS:C1518113 MB01 biolink:Cell skos:exactMatch NCIT:C20275 MB01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1834","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5206808 CD3+/CD19+ Cell-depleted Unrelated or Partially Matched Donor-derived Allogeneic Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C162765 CD3+/CD19+ Cell-depleted Unrelated or Partially Matched Donor-derived Allogeneic Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1835","subject_information_content":100.0,"identifierIndex":0} +CL:0002572 vertebral mesenchymal stem cell biolink:Cell skos:exactMatch CL:0002572 vertebral mesenchymal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1836","subject_information_content":100.0} +UMLS:C5446933 Allogeneic NKG2D-OX40-CD3zeta-CAR-mbIL-15-expressing Natural Killer Cells NKX101 biolink:Cell skos:exactMatch NCIT:C176027 Allogeneic NKG2D-OX40-CD3zeta-CAR-mbIL-15-expressing Natural Killer Cells NKX101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1837","subject_information_content":100.0,"identifierIndex":0} +CL:0000708 leptomeningeal cell biolink:Cell skos:exactMatch CL:0000708 leptomeningeal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1838","subject_information_content":100.0} +UMLS:C5157426 CD3 cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157426 CD3 cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1839"} +UMLS:C0882795 Cells.CD15 biolink:Cell skos:exactMatch UMLS:C0882795 Cells.CD15 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1840"} +UMLS:C5417935 Autologous Anti-CD19 Chimeric Antigen Receptor T-cells AUTO1 biolink:Cell skos:exactMatch NCIT:C172746 Obecabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1841","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157917 Cell type | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157917 Cell type | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1842"} +UMLS:C1517735 Centroblast biolink:Cell skos:exactMatch NCIT:C32932 Centroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1843","subject_information_content":100.0,"identifierIndex":0} +CL:1000276 smooth muscle fiber of duodenum biolink:Cell skos:exactMatch CL:1000276 smooth muscle fiber of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1844","subject_information_content":100.0} +CL:0002408 immature Vgamma2-negative thymocyte biolink:Cell skos:exactMatch CL:0002408 immature Vgamma2-negative thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1845","subject_information_content":100.0} +CL:0000333 migratory neural crest cell biolink:Cell skos:exactMatch CL:0000333 migratory neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1846","subject_information_content":88.2062864997332} +CL:0000328 myelin accumulating cell biolink:Cell skos:exactMatch CL:0000328 myelin accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1847","subject_information_content":94.92072406280138} +CL:0001003 mature CD8_alpha-negative CD11b-positive dendritic cell biolink:Cell skos:exactMatch CL:0001003 mature CD8_alpha-negative CD11b-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1848","subject_information_content":100.0} +CL:0000039 germ line cell biolink:Cell skos:exactMatch CL:0000039 germ line cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1849","subject_information_content":72.61093186874301} +UMLS:C0872372 Totipotent Stem Cells biolink:Cell skos:exactMatch NCIT:C12978 Totipotent Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1850","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0872372 Totipotent Stem Cells biolink:Cell skos:exactMatch MESH:D039901 Totipotent Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1850","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C0016390 Foam Cells biolink:Cell skos:exactMatch NCIT:C12560 Foam Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1851","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0016390 Foam Cells biolink:Cell skos:exactMatch MESH:D005487 Foam Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1851","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0016390 Foam Cells biolink:Cell skos:exactMatch SNOMEDCT:16980002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1851","subject_information_content":100.0,"identifierIndex":2} +UMLS:C2329779 Enterocyte of epithelium proper of small intestine biolink:Cell skos:exactMatch UMLS:C2329779 Enterocyte of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1852"} +CL:0002364 cortical thymic epithelial cell biolink:Cell skos:exactMatch CL:0002364 cortical thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1853","subject_information_content":88.2062864997332} +UMLS:C1516096 B-Immunoblast biolink:Cell skos:exactMatch NCIT:C34033 B-Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1854","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1520127 Warthin-Finkeldey Polykaryocyte biolink:Cell skos:exactMatch NCIT:C36812 Warthin-Finkeldey Polykaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1855","subject_information_content":100.0,"identifierIndex":0} +CL:0000651 mucous neck cell biolink:Cell skos:exactMatch CL:0000651 mucous neck cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1856","subject_information_content":94.92072406280138} +CL:0000157 surfactant secreting cell biolink:Cell skos:exactMatch CL:0000157 surfactant secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1857","subject_information_content":91.94953810872488} +UMLS:C3495990 Acg noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3495990 Acg noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1858"} +UMLS:C0682547 Eosinophilic cell biolink:Cell skos:exactMatch UMLS:C0682547 Eosinophilic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1859"} +UMLS:C4528182 Derived Synovial Fluid Cell biolink:Cell skos:exactMatch NCIT:C138971 Derived Synovial Fluid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1860","subject_information_content":100.0,"identifierIndex":0} +CL:0000807 DN3 thymocyte biolink:Cell skos:exactMatch CL:0000807 DN3 thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1861","subject_information_content":100.0} +CL:0000497 red sensitive photoreceptor cell biolink:Cell skos:exactMatch CL:0000497 red sensitive photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1862","subject_information_content":100.0} +UMLS:C5171962 Malignant cells | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171962 Malignant cells | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1863"} +CL:0002421 nucleated reticulocyte biolink:Cell skos:exactMatch CL:0002421 nucleated reticulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1864","subject_information_content":100.0} +UMLS:C1514084 Neoplastic Small B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38702 Neoplastic Small B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1865","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0000839 myeloid lineage restricted progenitor cell biolink:Cell skos:exactMatch CL:0000839 myeloid lineage restricted progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1866","subject_information_content":71.04589370819471} +UMLS:C4322812 CD43+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322812 CD43+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1867"} +UMLS:C1979675 Cells.CD56+CD57+ biolink:Cell skos:exactMatch UMLS:C1979675 Cells.CD56+CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1868"} +UMLS:C2924227 Cells.CD7+CD34+ biolink:Cell skos:exactMatch UMLS:C2924227 Cells.CD7+CD34+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1869"} +CL:0000983 IgM plasmablast biolink:Cell skos:exactMatch CL:0000983 IgM plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1870","subject_information_content":100.0} +UMLS:C1179475 Stem cell of gastric gland biolink:Cell skos:exactMatch UMLS:C1179475 Stem cell of gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1871"} +CL:0000225 anucleate cell biolink:Cell skos:exactMatch CL:0000225 anucleate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1872","subject_information_content":82.42859222307153} +CL:4023022 canopy lamp5 GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023022 canopy lamp5 GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1873","subject_information_content":100.0} +CL:0002416 mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte biolink:Cell skos:exactMatch CL:0002416 mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1874","subject_information_content":100.0} +CL:0000526 afferent neuron biolink:Cell skos:exactMatch CL:0000526 afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1875","subject_information_content":67.44493484597689} +CL:0000686 cerebrospinal fluid secreting cell biolink:Cell skos:exactMatch CL:0000686 cerebrospinal fluid secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1876","subject_information_content":100.0} +UMLS:C5382750 CD107a+b expressing HLA-B8 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382750 CD107a+b expressing HLA-B8 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1877"} +UMLS:C1267937 Lymphocyte positive for CD49B antigen biolink:Cell skos:exactMatch SNOMEDCT:117380001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1878","identifierIndex":0} +CL:0000388 tendon cell biolink:Cell skos:exactMatch CL:0000388 tendon cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1879","subject_information_content":100.0} +UMLS:C0545579 Marrow proplasmacyte biolink:Cell skos:exactMatch UMLS:C0545579 Marrow proplasmacyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1880"} +CL:1000433 epithelial cell of lacrimal canaliculus biolink:Cell skos:exactMatch CL:1000433 epithelial cell of lacrimal canaliculus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1881","subject_information_content":100.0} +UMLS:C5401592 Allogenic Human Umbilical Derived Mesenchymal Stem Cells in Conditioned Media biolink:Cell skos:exactMatch UMLS:C5401592 Allogenic Human Umbilical Derived Mesenchymal Stem Cells in Conditioned Media biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1882"} +CL:0002268 P/D1 enteroendocrine cell biolink:Cell skos:exactMatch CL:0002268 P/D1 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1883","subject_information_content":91.94953810872488} +UMLS:C5401610 CAP-1002 biolink:Cell skos:exactMatch UMLS:C5401610 CAP-1002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1884"} +UMLS:C2327049 Non-keratinized squamous cell biolink:Cell skos:exactMatch UMLS:C2327049 Non-keratinized squamous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1885"} +UMLS:C1711388 Neoplastic Dendritic Cell biolink:Cell skos:exactMatch NCIT:C43271 Neoplastic Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1886","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0000076 squamous epithelial cell biolink:Cell skos:exactMatch CL:0000076 squamous epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1887","subject_information_content":66.62989049773527} +UMLS:C1518268 Neoplastic Neuroblast biolink:Cell skos:exactMatch NCIT:C37145 Neoplastic Neuroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1888","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516901 Eosinophilic Meningothelial Cell biolink:Cell skos:exactMatch NCIT:C37159 Eosinophilic Meningothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1889","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328888 Cholinergic amacrine cell of retina biolink:Cell skos:exactMatch UMLS:C2328888 Cholinergic amacrine cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1890"} +UMLS:C1978611 Cells.CD3+CD8+CD57+ biolink:Cell skos:exactMatch UMLS:C1978611 Cells.CD3+CD8+CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1891"} +UMLS:C1510727 Abnormal Intermediate Type Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C36802 Abnormal Intermediate Type Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1892","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000866 thymic macrophage biolink:Cell skos:exactMatch CL:0000866 thymic macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1893","subject_information_content":91.94953810872488} +UMLS:C2599947 Purkinje cell cytoplasmic type 1 biolink:Cell skos:exactMatch UMLS:C2599947 Purkinje cell cytoplasmic type 1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1894"} +UMLS:C5172548 Metamyelocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172548 Metamyelocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1895"} +CL:0002440 Ly49D-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002440 Ly49D-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1896","subject_information_content":100.0} +UMLS:C1267923 Lymphocyte positive for CD42C antigen biolink:Cell skos:exactMatch SNOMEDCT:117367004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1897","identifierIndex":0} +UMLS:C5157532 CD4 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157532 CD4 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1898"} +CL:1000280 smooth muscle cell of colon biolink:Cell skos:exactMatch CL:1000280 smooth muscle cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1899","subject_information_content":86.87026217152628} +UMLS:C5177624 Platelets agranular | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177624 Platelets agranular | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1900"} +CL:0000800 mature gamma-delta T cell biolink:Cell skos:exactMatch CL:0000800 mature gamma-delta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1901","subject_information_content":83.89907621744979} +UMLS:C1440373 Cells.CD97 biolink:Cell skos:exactMatch UMLS:C1440373 Cells.CD97 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1902"} +CL:0002164 external pillar cell of cochlea biolink:Cell skos:exactMatch CL:0002164 external pillar cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1903","subject_information_content":100.0} +UMLS:C5216310 Polymorphonuclear cells|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216310 Polymorphonuclear cells|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1904"} +UMLS:C5175145 Nucleated cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175145 Nucleated cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1905"} +CL:0002620 skin fibroblast biolink:Cell skos:exactMatch CL:0002620 skin fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1906","subject_information_content":81.79098623432766} +UMLS:C1979149 Blasts.CD135 biolink:Cell skos:exactMatch UMLS:C1979149 Blasts.CD135 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1907"} +UMLS:C1711304 Malignant Somatotroph Cell biolink:Cell skos:exactMatch NCIT:C45941 Malignant Somatotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1908","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328087 Paravertebral ganglion neuron biolink:Cell skos:exactMatch UMLS:C2328087 Paravertebral ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1909"} +UMLS:C1513872 Naive Pregerminal Center B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38337 Naive Pregerminal Center B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1910","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3896577 LMP1/BARF1/EBNA1-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C118956 LMP1/BARF1/EBNA1-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1911","subject_information_content":100.0,"identifierIndex":0} +CL:0002087 nongranular leukocyte biolink:Cell skos:exactMatch CL:0002087 nongranular leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1912","subject_information_content":89.84144812560278} +UMLS:C4300409 Cells.CD3+CD8+CD45RO+ biolink:Cell skos:exactMatch UMLS:C4300409 Cells.CD3+CD8+CD45RO+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1913"} +CL:1000746 glomerular cell biolink:Cell skos:exactMatch CL:1000746 glomerular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1914","subject_information_content":82.42859222307153} +CL:0000208 pH receptor cell biolink:Cell skos:exactMatch CL:0000208 pH receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1915","subject_information_content":100.0} +CL:0000938 CD16-negative, CD56-bright natural killer cell, human biolink:Cell skos:exactMatch CL:0000938 CD16-negative, CD56-bright natural killer cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1916","subject_information_content":100.0} +CL:0000445 apoptosis fated cell biolink:Cell skos:exactMatch CL:0000445 apoptosis fated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1917","subject_information_content":100.0} +UMLS:C2697996 Allogeneic LMP1/LMP2-Specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C78201 Allogeneic LMP1/LMP2-Specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1918","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0599409 sensory transducer cell biolink:Cell skos:exactMatch UMLS:C0599409 sensory transducer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1919"} +UMLS:C5157309 CD14 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157309 CD14 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1920"} +UMLS:C1257771 Burst-Forming Units, Erythroid biolink:Cell skos:exactMatch UMLS:C1257771 Burst-Forming Units, Erythroid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1921"} +CL:0002187 basal cell of epidermis biolink:Cell skos:exactMatch CL:0002187 basal cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1922","subject_information_content":94.92072406280138} +UMLS:C2350467 Invariant Natural Killer T-Cells biolink:Cell skos:exactMatch NCIT:C115216 Invariant Natural Killer T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1923","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157651 CD7+CD3- | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157651 CD7+CD3- | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1924"} +UMLS:C5157328 CD16+CD56+CD3- | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157328 CD16+CD56+CD3- | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1925"} +UMLS:C0229579 Structure of thyroid parafollicular cell biolink:Cell skos:exactMatch NCIT:C33261 C-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1926","subject_information_content":100.0,"identifierIndex":0} +CL:1000291 myocyte of posterior internodal tract biolink:Cell skos:exactMatch CL:1000291 myocyte of posterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1927","subject_information_content":100.0} +UMLS:C5163445 Eosinophils | Sputum | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163445 Eosinophils | Sputum | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1928"} +UMLS:C0524977 Intestinal L Cells biolink:Cell skos:exactMatch UMLS:C0524977 Intestinal L Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1929"} +MESH:D010141 Pacinian Corpuscles biolink:Cell skos:exactMatch MESH:D010141 Pacinian Corpuscles biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1930"} +UMLS:C0872357 oval cell biolink:Cell skos:exactMatch UMLS:C0872357 oval cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1931"} +UMLS:C5157297 CD13 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157297 CD13 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1932"} +UMLS:C1513797 Mouse Myoepitheliocyte biolink:Cell skos:exactMatch NCIT:C22697 Mouse Myoepitheliocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1933","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5205962 Autologous Anti-SLAMF7 CAR-expressing T-cells biolink:Cell skos:exactMatch NCIT:C161635 Autologous Anti-SLAMF7 CAR-expressing T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1934","subject_information_content":100.0,"identifierIndex":0} +CL:0000534 primary interneuron biolink:Cell skos:exactMatch CL:0000534 primary interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1935","subject_information_content":100.0} +UMLS:C0229579 Structure of thyroid parafollicular cell biolink:Cell skos:exactMatch SNOMEDCT:50552001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1926","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1517642 KA42 biolink:Cell skos:exactMatch NCIT:C20272 KA42 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1936","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440239 Cell positive for CD107a antigen biolink:Cell skos:exactMatch SNOMEDCT:725723007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1937","identifierIndex":0} +CL:0002022 Ly-76 high positive erythrocyte biolink:Cell skos:exactMatch CL:0002022 Ly-76 high positive erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1938","subject_information_content":100.0} +CL:0002341 basal cell of prostate epithelium biolink:Cell skos:exactMatch CL:0002341 basal cell of prostate epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1939","subject_information_content":89.84144812560278} +UMLS:C2984032 Anti-HER2-CAR Autologous CMV-Specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C91091 Anti-HER2-CAR Autologous CMV-Specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1940","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5173470 Monocytes+Macrophages | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173470 Monocytes+Macrophages | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1941"} +CL:1000486 basal cell of urothelium biolink:Cell skos:exactMatch CL:1000486 basal cell of urothelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1942","subject_information_content":100.0} +CL:0002255 stromal cell of endometrium biolink:Cell skos:exactMatch CL:0002255 stromal cell of endometrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1943","subject_information_content":100.0} +CL:1000597 papillary tips cell biolink:Cell skos:exactMatch CL:1000597 papillary tips cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1944","subject_information_content":100.0} +UMLS:C1708899 Malignant Parathyroid Gland Chief Cell biolink:Cell skos:exactMatch NCIT:C48269 Malignant Parathyroid Gland Chief Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1945","subject_information_content":100.0,"identifierIndex":0} +CL:0000300 gamete biolink:Cell skos:exactMatch CL:0000300 gamete biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1946","subject_information_content":82.42859222307153} +CL:0000249 hatching gland cell biolink:Cell skos:exactMatch CL:0000249 hatching gland cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1947","subject_information_content":100.0} +CL:0000954 small pre-B-II cell biolink:Cell skos:exactMatch CL:0000954 small pre-B-II cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1948","subject_information_content":94.92072406280138} +CL:0000602 pressoreceptor cell biolink:Cell skos:exactMatch CL:0000602 pressoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1949","subject_information_content":100.0} +UMLS:C1254948 C5 Lymphocyte biolink:Cell skos:exactMatch UMLS:C1254948 C5 Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1950"} +CL:0011021 fibroblast of upper back skin biolink:Cell skos:exactMatch CL:0011021 fibroblast of upper back skin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1951","subject_information_content":100.0} +UMLS:C5157432 CD3+CD25+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157432 CD3+CD25+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1952"} +UMLS:C5181452 S-phase cells | XXX | Molecular pathology biolink:Cell skos:exactMatch UMLS:C5181452 S-phase cells | XXX | Molecular pathology biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1953"} +UMLS:C5212878 Neutrophils.CD64 biolink:Cell skos:exactMatch UMLS:C5212878 Neutrophils.CD64 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1954"} +UMLS:C1519986 Villous Lymphocyte biolink:Cell skos:exactMatch NCIT:C38727 Villous Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1955","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0946500 Cells.CD4+CD45+ biolink:Cell skos:exactMatch UMLS:C0946500 Cells.CD4+CD45+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1956"} +UMLS:C5216245 Lymphocytes.immunoblastic|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216245 Lymphocytes.immunoblastic|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1957"} +UMLS:C1515267 Tendinocyte biolink:Cell skos:exactMatch NCIT:C33747 Tendinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1958","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401597 Human Menstrual Blood-derived Stem Cells biolink:Cell skos:exactMatch UMLS:C5401597 Human Menstrual Blood-derived Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1959"} +UMLS:C0882793 Cells.CD14+CD16+CD59+ biolink:Cell skos:exactMatch UMLS:C0882793 Cells.CD14+CD16+CD59+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1960"} +UMLS:C1510964 Atypical Spindle Melanocyte biolink:Cell skos:exactMatch NCIT:C36868 Atypical Spindle Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1961","subject_information_content":100.0,"identifierIndex":0} +CL:0002592 smooth muscle cell of the coronary artery biolink:Cell skos:exactMatch CL:0002592 smooth muscle cell of the coronary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1962","subject_information_content":100.0} +UMLS:C1518220 Malignant Neuroendocrine Large Cell biolink:Cell skos:exactMatch NCIT:C36821 Malignant Neuroendocrine Large Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1963","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0002590 smooth muscle cell of the brain vasculature biolink:Cell skos:exactMatch CL:0002590 smooth muscle cell of the brain vasculature biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1964","subject_information_content":100.0} +UMLS:C5184821 Variant lymphocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184821 Variant lymphocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1965"} +UMLS:C1513925 Neoplastic Astrocyte biolink:Cell skos:exactMatch NCIT:C37127 Neoplastic Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1966","subject_information_content":81.79098623432766,"identifierIndex":0} +CL:0000751 rod bipolar cell biolink:Cell skos:exactMatch CL:0000751 rod bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1967","subject_information_content":94.92072406280138} +UMLS:C2330808 Mammosomatotroph biolink:Cell skos:exactMatch UMLS:C2330808 Mammosomatotroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1968"} +UMLS:C0228071 Ganglion cell biolink:Cell skos:exactMatch UMLS:C0228071 Ganglion cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1969"} +UMLS:C0031760 Photoreceptors biolink:Cell skos:exactMatch UMLS:C0031760 Photoreceptors biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1970"} +UMLS:C1708916 Malignant Spindle Endothelial Cell biolink:Cell skos:exactMatch NCIT:C53405 Malignant Spindle Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1971","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440276 Cells.CD27 biolink:Cell skos:exactMatch UMLS:C1440276 Cells.CD27 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1972"} +UMLS:C5157280 CD122 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157280 CD122 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1973"} +UMLS:C4322826 CD16+CD56+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322826 CD16+CD56+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1974"} +UMLS:C5178304 Promonocytes/100 leukocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178304 Promonocytes/100 leukocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1975"} +UMLS:C1513989 Neoplastic Immunoblast biolink:Cell skos:exactMatch NCIT:C37009 Neoplastic Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1976","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0009001 compound eye retinal cell biolink:Cell skos:exactMatch CL:0009001 compound eye retinal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1977","subject_information_content":100.0} +UMLS:C5221144 Mesothelial cells|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5221144 Mesothelial cells|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1978"} +UMLS:C1182691 Epithelial cell of gland of skin biolink:Cell skos:exactMatch UMLS:C1182691 Epithelial cell of gland of skin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1979"} +UMLS:C1514030 Neoplastic Multinucleated Giant Cell biolink:Cell skos:exactMatch NCIT:C36819 Neoplastic Multinucleated Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1980","subject_information_content":83.1270105625346,"identifierIndex":0} +UMLS:C2332053 Type Mo enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2332053 Type Mo enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1981"} +UMLS:C0022688 Natural Killer Cells biolink:Cell skos:exactMatch UMLS:C0022688 Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1982"} +UMLS:C1440261 Cells.CD16-CD34+ biolink:Cell skos:exactMatch UMLS:C1440261 Cells.CD16-CD34+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1983"} +CL:0000627 transporting cell biolink:Cell skos:exactMatch CL:0000627 transporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1984","subject_information_content":81.79098623432766} +CL:1000477 cardiac pacemaker cell of sinoatrial node biolink:Cell skos:exactMatch CL:1000477 cardiac pacemaker cell of sinoatrial node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1985","subject_information_content":100.0} +UMLS:C5187200 RBC^Fetus biolink:Cell skos:exactMatch UMLS:C5187200 RBC^Fetus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1986"} +UMLS:C1515138 Precursor T-Lymphoblast biolink:Cell skos:exactMatch NCIT:C33930 Precursor T-Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1987","subject_information_content":100.0,"identifierIndex":0} +CL:0002673 tongue muscle cell biolink:Cell skos:exactMatch CL:0002673 tongue muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1988","subject_information_content":100.0} +UMLS:C2347433 Adipose-Derived Regenerative Cells biolink:Cell skos:exactMatch NCIT:C73997 Adipose-Derived Regenerative Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1989","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2332839 Purkinje myocyte of interventricular septum biolink:Cell skos:exactMatch UMLS:C2332839 Purkinje myocyte of interventricular septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1990"} +CL:1000379 type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell skos:exactMatch CL:1000379 type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1991","subject_information_content":100.0} +UMLS:C1512121 EG Cell Line biolink:Cell skos:exactMatch NCIT:C20231 EG Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1992","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514180 Pleomorphic Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C36946 Pleomorphic Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1993","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4696681 Cells.CD19+CD38+IgM- biolink:Cell skos:exactMatch UMLS:C4696681 Cells.CD19+CD38+IgM- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1994"} +UMLS:C0333771 Coil/whorled fibers biolink:Cell skos:exactMatch SNOMEDCT:487002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1995","identifierIndex":0} +UMLS:C1317119 Immature basophils biolink:Cell skos:exactMatch UMLS:C1317119 Immature basophils biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1996"} +CL:0000998 CD8_alpha-negative CD11b-negative dendritic cell biolink:Cell skos:exactMatch CL:0000998 CD8_alpha-negative CD11b-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1997","subject_information_content":91.94953810872488} +UMLS:C5157427 CD3 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157427 CD3 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1998"} +UMLS:C5205974 Gene-edited Autologous Neoantigen-targeted NeoTCR-P1 T-cells biolink:Cell skos:exactMatch NCIT:C161651 Gene-edited Autologous Neoantigen-targeted NeoTCR-P1 T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#1999","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517304 Foveolar cell biolink:Cell skos:exactMatch NCIT:C32632 Foveolar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2000","subject_information_content":100.0,"identifierIndex":0} +CL:0000216 Sertoli cell biolink:Cell skos:exactMatch CL:0000216 Sertoli cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2001","subject_information_content":100.0} +CL:2000087 dentate gyrus of hippocampal formation basket cell biolink:Cell skos:exactMatch CL:2000087 dentate gyrus of hippocampal formation basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2002","subject_information_content":100.0} +CL:2000056 Meynert cell biolink:Cell skos:exactMatch CL:2000056 Meynert cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2003","subject_information_content":100.0} +UMLS:C4524911 3D-expanded Placenta-derived Cells PLX-R18 biolink:Cell skos:exactMatch NCIT:C133823 3D-expanded Placenta-derived Cells PLX-R18 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2004","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0026610 Motor Neurons, Gamma biolink:Cell skos:exactMatch NCIT:C12646 Gamma Motor Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2005","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515879 Activated Lymphocyte biolink:Cell skos:exactMatch NCIT:C32049 Activated Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2006","subject_information_content":83.1270105625346,"identifierIndex":0} +CL:0002094 interstitial cell of ovary biolink:Cell skos:exactMatch CL:0002094 interstitial cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2007","subject_information_content":100.0} +UMLS:C5163709 Erythrocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163709 Erythrocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2008"} +UMLS:C1440145 Blasts.CD20 biolink:Cell skos:exactMatch UMLS:C1440145 Blasts.CD20 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2009"} +UMLS:C5172360 Megakaryocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172360 Megakaryocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2010"} +CL:0007003 preodontoblast biolink:Cell skos:exactMatch CL:0007003 preodontoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2011","subject_information_content":100.0} +UMLS:C0026610 Motor Neurons, Gamma biolink:Cell skos:exactMatch MESH:D009047 Motor Neurons, Gamma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2005","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5161802 Cytoplasmic CD3 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5161802 Cytoplasmic CD3 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2012"} +CL:0000482 juvenile hormone secreting cell biolink:Cell skos:exactMatch CL:0000482 juvenile hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2013","subject_information_content":100.0} +UMLS:C1510717 Abnormal Cytotrophoblastic Cell biolink:Cell skos:exactMatch NCIT:C36801 Abnormal Cytotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2014","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5418869 Anti-CD19 iCAR NK Cells biolink:Cell skos:exactMatch NCIT:C170903 Anti-CD19 iCAR NK Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2015","subject_information_content":100.0,"identifierIndex":0} +CL:0008033 decidual pericyte biolink:Cell skos:exactMatch CL:0008033 decidual pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2016","subject_information_content":100.0} +UMLS:C1267981 Lymphocyte positive for CD94 antigen biolink:Cell skos:exactMatch SNOMEDCT:117421003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2017","identifierIndex":0} +UMLS:C4524566 Hematopoietic Progenitor Cells from Cord Blood biolink:Cell skos:exactMatch NCIT:C133329 Hematopoietic Progenitor Cells from Cord Blood biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2018","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2329995 Stratified amacrine cell of retina biolink:Cell skos:exactMatch UMLS:C2329995 Stratified amacrine cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2019"} +UMLS:C1179017 Endothelial cell of vein biolink:Cell skos:exactMatch UMLS:C1179017 Endothelial cell of vein biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2020"} +CL:0002047 Fraction B precursor B cell biolink:Cell skos:exactMatch CL:0002047 Fraction B precursor B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2021","subject_information_content":100.0} +UMLS:C1267903 Lymphocyte positive for CD30 antigen biolink:Cell skos:exactMatch SNOMEDCT:117574005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2022","identifierIndex":0} +UMLS:C3496533 A13 dopamine cells biolink:Cell skos:exactMatch UMLS:C3496533 A13 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2023"} +CL:0000095 neuron associated cell biolink:Cell skos:exactMatch CL:0000095 neuron associated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2024","subject_information_content":71.94430466897393} +UMLS:C5179533 Reticulocytes.mid | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179533 Reticulocytes.mid | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2025"} +UMLS:C0229618 Large lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:54969003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2026","identifierIndex":0} +UMLS:C0432610 Giant metamyelocyte biolink:Cell skos:exactMatch SNOMEDCT:259711002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2027","identifierIndex":0} +UMLS:C4517923 Population of all round cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:732289008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2028","identifierIndex":0} +UMLS:C4087054 Donor-derived WT1/PRAME/NY-ESO-1/Survivin-specific T-lymphocytes biolink:Cell skos:exactMatch NCIT:C123817 Donor-derived WT1/PRAME/NY-ESO-1/Survivin-specific T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2029","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440244 Cells.CD118 biolink:Cell skos:exactMatch UMLS:C1440244 Cells.CD118 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2030"} +CL:0002155 echinocyte biolink:Cell skos:exactMatch CL:0002155 echinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2031","subject_information_content":100.0} +UMLS:C1709190 Neoplastic Parathyroid Gland Chief Cell biolink:Cell skos:exactMatch NCIT:C48268 Neoplastic Parathyroid Gland Chief Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2032","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000174 steroid hormone secreting cell biolink:Cell skos:exactMatch CL:0000174 steroid hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2033","subject_information_content":79.23864834624368} +UMLS:C2981832 HER2Bi-Armed Activated T Cells biolink:Cell skos:exactMatch NCIT:C88317 HER2Bi-Armed Activated T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2034","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267836 Lymphocyte positive for both CD3 antigen and IL2R1 antigen biolink:Cell skos:exactMatch SNOMEDCT:117526005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2035","identifierIndex":0} +UMLS:C0225340 Transitional Epithelial Cells biolink:Cell skos:exactMatch NCIT:C12866 Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2036","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0005021 mesenchymal lymphangioblast biolink:Cell skos:exactMatch CL:0005021 mesenchymal lymphangioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2037","subject_information_content":100.0} +UMLS:C4322733 CD56+ NK cell biolink:Cell skos:exactMatch UMLS:C4322733 CD56+ NK cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2038"} +CL:4023004 nuclear bag fiber biolink:Cell skos:exactMatch CL:4023004 nuclear bag fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2039","subject_information_content":91.94953810872488} +CL:0000391 podocyte (sensu Diptera) biolink:Cell skos:exactMatch CL:0000391 podocyte (sensu Diptera) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2040","subject_information_content":89.84144812560278} +CL:0000365 animal zygote biolink:Cell skos:exactMatch CL:0000365 animal zygote biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2041","subject_information_content":100.0} +UMLS:C1517818 Mouse Pre-T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C22580 Mouse Pre-T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2042","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229652 Basophilic megakaryocyte biolink:Cell skos:exactMatch SNOMEDCT:75790005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2043","identifierIndex":0} +UMLS:C0815002 GABAergic Neurons biolink:Cell skos:exactMatch MESH:D059330 GABAergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2044","identifierIndex":0} +UMLS:C0483183 CD16-CD57- biolink:Cell skos:exactMatch UMLS:C0483183 CD16-CD57- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2045"} +UMLS:C0225340 Transitional Epithelial Cells biolink:Cell skos:exactMatch SNOMEDCT:3028004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2036","subject_information_content":89.84144812560278,"identifierIndex":1} +CL:1000410 myocyte of atrioventricular node biolink:Cell skos:exactMatch CL:1000410 myocyte of atrioventricular node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2046","subject_information_content":94.92072406280138} +CL:2000081 melanocyte of skin of face biolink:Cell skos:exactMatch CL:2000081 melanocyte of skin of face biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2047","subject_information_content":100.0} +UMLS:C2336440 Secondary motor neuron biolink:Cell skos:exactMatch UMLS:C2336440 Secondary motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2048"} +CL:0000413 haploid cell biolink:Cell skos:exactMatch CL:0000413 haploid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2049","subject_information_content":80.66139376001811} +UMLS:C0229216 Amacrine Cells biolink:Cell skos:exactMatch NCIT:C12626 Amacrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2050","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157296 CD13 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157296 CD13 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2051"} +UMLS:C2347257 CD3/CD28 Costimulated Autologous T-Cells biolink:Cell skos:exactMatch NCIT:C74017 CD3/CD28 Costimulated Autologous T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2052","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1510735 Abnormal Syncytiotrophoblastic Cell biolink:Cell skos:exactMatch NCIT:C36800 Abnormal Syncytiotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2053","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1522254 Ovary - Theca Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22666 Mouse Theca Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2054","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2362084 Washed packed erythrocytes biolink:Cell skos:exactMatch UMLS:C2362084 Washed packed erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2055"} +UMLS:C5157385 CD20+FMC7+ cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157385 CD20+FMC7+ cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2056"} +UMLS:C5157428 CD3+CD16+CD56+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157428 CD3+CD16+CD56+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2057"} +UMLS:C4055262 Central Memory Immune Cell biolink:Cell skos:exactMatch NCIT:C122730 Central Memory Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2058","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5186823 Monocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186823 Monocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2059"} +UMLS:C0229216 Amacrine Cells biolink:Cell skos:exactMatch MESH:D025042 Amacrine Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2050","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1440322 Cells.CD49b biolink:Cell skos:exactMatch UMLS:C1440322 Cells.CD49b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2060"} +UMLS:C2333134 Neuron of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2333134 Neuron of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2061"} +UMLS:C5151699 Acute leukemia markers | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5151699 Acute leukemia markers | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2062"} +UMLS:C5419552 Buccal Cell Sample biolink:Cell skos:exactMatch NCIT:C172264 Buccal Cell Sample biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2063","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267944 Lymphocyte positive for CD52 antigen biolink:Cell skos:exactMatch SNOMEDCT:117387003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2064","identifierIndex":0} +CL:0000995 CD34-positive, CD38-positive common myeloid progenitor OR CD34-positive, CD38-positive common lymphoid progenitor biolink:Cell skos:exactMatch CL:0000995 CD34-positive, CD38-positive common myeloid progenitor OR CD34-positive, CD38-positive common lymphoid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2065","subject_information_content":91.94953810872488} +UMLS:C1267977 Lymphocyte positive for CD87 antigen biolink:Cell skos:exactMatch SNOMEDCT:117417005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2066","identifierIndex":0} +UMLS:C1440399 Cells.t(11;14)(q13;q32)(CCND1,IGH) biolink:Cell skos:exactMatch UMLS:C1440399 Cells.t(11;14)(q13;q32)(CCND1,IGH) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2067"} +UMLS:C0229216 Amacrine Cells biolink:Cell skos:exactMatch SNOMEDCT:9475001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2050","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0029048 Oogonia biolink:Cell skos:exactMatch NCIT:C12600 Primary Oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2069","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216248 Lymphocytes.variant|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216248 Lymphocytes.variant|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2068"} +UMLS:C5417833 Autologous CRISPR-edited Anti-CD19 CAR T Cells XYF19 biolink:Cell skos:exactMatch NCIT:C170914 Autologous CRISPR-edited Anti-CD19 CAR T Cells XYF19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2070","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328960 Hippocampal interneuron biolink:Cell skos:exactMatch UMLS:C2328960 Hippocampal interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2071"} +UMLS:C4304490 Population of all blast cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719698008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2072","identifierIndex":0} +UMLS:C1519467 Spindle Melanocyte biolink:Cell skos:exactMatch NCIT:C36869 Spindle Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2073","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000122 stellate neuron biolink:Cell skos:exactMatch CL:0000122 stellate neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2074","subject_information_content":91.94953810872488} +UMLS:C1267979 Lymphocyte positive for CD91 antigen biolink:Cell skos:exactMatch SNOMEDCT:117419008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2075","identifierIndex":0} +CL:0011102 parasympathetic neuron biolink:Cell skos:exactMatch CL:0011102 parasympathetic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2076","subject_information_content":100.0} +UMLS:C0029048 Oogonia biolink:Cell skos:exactMatch MESH:D009867 Oogonia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2069","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5175602 Other cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175602 Other cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2077"} +MESH:D009441 Neurilemma biolink:Cell skos:exactMatch MESH:D009441 Neurilemma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2078"} +UMLS:C0030559 Parietal Cells, Gastric biolink:Cell skos:exactMatch UMLS:C0030559 Parietal Cells, Gastric biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2079"} +CL:1000394 myoepithelial cell of intralobular lactiferous duct biolink:Cell skos:exactMatch CL:1000394 myoepithelial cell of intralobular lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2080","subject_information_content":100.0} +UMLS:C5394900 Entire platelet biolink:Cell skos:exactMatch SNOMEDCT:836278004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2081","identifierIndex":0} +UMLS:C1514716 Raji Cell biolink:Cell skos:exactMatch NCIT:C36741 Raji Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2082","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177340 Pincer cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177340 Pincer cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2083"} +UMLS:C0333736 Alzheimer type II glial cell biolink:Cell skos:exactMatch SNOMEDCT:29209006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2084","identifierIndex":0} +UMLS:C0432613 Eosinophilic myeloblast biolink:Cell skos:exactMatch SNOMEDCT:259719000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2085","identifierIndex":0} +UMLS:C0029048 Oogonia biolink:Cell skos:exactMatch SNOMEDCT:78829006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2069","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1267900 Lymphocyte positive for CD27 antigen biolink:Cell skos:exactMatch SNOMEDCT:117571002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2086","identifierIndex":0} +CL:1000279 smooth muscle cell of large intestine biolink:Cell skos:exactMatch CL:1000279 smooth muscle cell of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2087","subject_information_content":83.89907621744979} +UMLS:C5446937 Autologous Anti-NY-ESO-1 TCR/CD8alpha-expressing T-cells GSK3901961 biolink:Cell skos:exactMatch NCIT:C176040 Autologous Anti-NY-ESO-1 TCR/CD8alpha-expressing T-cells GSK3901961 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2088","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512642 Immature T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38325 Immature T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2089","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5173439 Monocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173439 Monocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2090"} +UMLS:C5449009 Abecma biolink:Cell skos:exactMatch UMLS:C5449009 Abecma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2091"} +UMLS:C4322819 CD198+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322819 CD198+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2092"} +CL:1000307 fibroblast of dense regular elastic tissue biolink:Cell skos:exactMatch CL:1000307 fibroblast of dense regular elastic tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2093","subject_information_content":100.0} +UMLS:C1511447 Mouse Undifferentiated Brain Cell biolink:Cell skos:exactMatch NCIT:C22624 Mouse Undifferentiated Brain Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2094","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0391864 Cytomegaly biolink:Cell skos:exactMatch NCIT:C36735 Cytomegalic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2095","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512131 ES02 biolink:Cell skos:exactMatch NCIT:C20250 ES02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2096","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157470 CD3+HLA-DR+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157470 CD3+HLA-DR+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2097"} +CL:0000613 basophil progenitor cell biolink:Cell skos:exactMatch CL:0000613 basophil progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2098","subject_information_content":94.92072406280138} +CL:0000033 apocrine cell biolink:Cell skos:exactMatch CL:0000033 apocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2099","subject_information_content":100.0} +UMLS:C0036770 Structure of sertoli cell biolink:Cell skos:exactMatch UMLS:C0036770 Structure of sertoli cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2100"} +UMLS:C1518184 Malignant Thyroid Gland Oncocyte biolink:Cell skos:exactMatch NCIT:C37097 Malignant Thyroid Gland Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2101","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1179136 Type II taste bud cell biolink:Cell skos:exactMatch UMLS:C1179136 Type II taste bud cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2102"} +UMLS:C5171751 Lymphocytes+Monocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171751 Lymphocytes+Monocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2103"} +UMLS:C5157611 CD55 Granulocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157611 CD55 Granulocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2104"} +UMLS:C0391864 Cytomegaly biolink:Cell skos:exactMatch SNOMEDCT:125392001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2095","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5421165 Lenzumestrocel biolink:Cell skos:exactMatch NCIT:C175108 Lenzumestrocel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2105","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267799 CYCD3+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117503003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2106","identifierIndex":0} +MESH:D013102 Spherocytes biolink:Cell skos:exactMatch MESH:D013102 Spherocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2107"} +UMLS:C1514177 Pleomorphic Plasma Cell biolink:Cell skos:exactMatch NCIT:C37083 Pleomorphic Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2108","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513975 Neoplastic Glandular Cell with Enlarged Nucleus biolink:Cell skos:exactMatch NCIT:C37122 Neoplastic Glandular Cell with Enlarged Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2110","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157507 CD36 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157507 CD36 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2109"} +UMLS:C4726578 Autologous Anti-Muc1/CD33/CD38/CD56/CD123 Gene-engineered CAR-T Cells biolink:Cell skos:exactMatch NCIT:C151954 Autologous Anti-Muc1/CD33/CD38/CD56/CD123 Gene-engineered CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2111","subject_information_content":100.0,"identifierIndex":0} +CL:0000730 leading edge cell biolink:Cell skos:exactMatch CL:0000730 leading edge cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2112","subject_information_content":100.0} +UMLS:C5380986 Cells.CD8.CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5380986 Cells.CD8.CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2113"} +CL:0000918 Tc2 cell biolink:Cell skos:exactMatch CL:0000918 Tc2 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2114","subject_information_content":100.0} +UMLS:C4725081 Allogeneic interleukin-17-producing CD8-positive T-cells biolink:Cell skos:exactMatch NCIT:C148499 Allogeneic interleukin-17-producing CD8-positive T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2115","subject_information_content":100.0,"identifierIndex":0} +CL:0000116 pioneer neuron biolink:Cell skos:exactMatch CL:0000116 pioneer neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2116","subject_information_content":100.0} +UMLS:C4553719 Autologous iC9-CARCD19 T Cells biolink:Cell skos:exactMatch NCIT:C146823 Autologous iCASP9-CD19-expressing T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2117","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1637798 Leukocyte component of blood biolink:Cell skos:exactMatch SNOMEDCT:419030006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2118","identifierIndex":0} +CL:4023042 L6 corticothalamic-projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023042 L6 corticothalamic-projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2119","subject_information_content":94.92072406280138} +UMLS:C2736928 CD154+ cell biolink:Cell skos:exactMatch SNOMEDCT:732273005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2120","identifierIndex":0} +UMLS:C1979677 Cells.CD81 biolink:Cell skos:exactMatch UMLS:C1979677 Cells.CD81 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2121"} +UMLS:C1517809 Leukemic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C41068 Leukemic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2122","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517107 Faggot Cell biolink:Cell skos:exactMatch NCIT:C37052 Faggot Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2123","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0486534 Cells other than spermatozoa biolink:Cell skos:exactMatch UMLS:C0486534 Cells other than spermatozoa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2124"} +UMLS:C1517812 Leukemic Small Lymphocyte with Clumped Chromatin biolink:Cell skos:exactMatch NCIT:C41066 Leukemic Small Lymphocyte with Clumped Chromatin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2125","subject_information_content":100.0,"identifierIndex":0} +CL:0002597 smooth muscle cell of bladder biolink:Cell skos:exactMatch CL:0002597 smooth muscle cell of bladder biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2126","subject_information_content":100.0} +CL:0000175 luteal cell biolink:Cell skos:exactMatch CL:0000175 luteal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2127","subject_information_content":91.94953810872488} +UMLS:C0333839 Lipid histiocyte biolink:Cell skos:exactMatch SNOMEDCT:76237002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2128","identifierIndex":0} +CL:0002226 non-nucleated secondary lens fiber biolink:Cell skos:exactMatch CL:0002226 non-nucleated secondary lens fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2129","subject_information_content":100.0} +CL:0002456 CD8_alpha-positive plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0002456 CD8_alpha-positive plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2130","subject_information_content":100.0} +CL:1001124 kidney cortex peritubular capillary cell biolink:Cell skos:exactMatch CL:1001124 kidney cortex peritubular capillary cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2131","subject_information_content":100.0} +UMLS:C4512518 Entire infantile diploetic mastoid cell biolink:Cell skos:exactMatch SNOMEDCT:727281006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2132","identifierIndex":0} +UMLS:C0483186 CD19+SmIg kappa+ biolink:Cell skos:exactMatch UMLS:C0483186 CD19+SmIg kappa+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2133"} +CL:1000347 enterocyte of colon biolink:Cell skos:exactMatch CL:1000347 enterocyte of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2134","subject_information_content":100.0} +UMLS:C0037863 Spermatocytes biolink:Cell skos:exactMatch NCIT:C12605 Spermatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2136","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440055 Abnormal blood cells.CD5 biolink:Cell skos:exactMatch UMLS:C1440055 Abnormal blood cells.CD5 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2137"} +UMLS:C5157234 CD10 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157234 CD10 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2138"} +CL:0002604 astrocyte of the hippocampus biolink:Cell skos:exactMatch CL:0002604 astrocyte of the hippocampus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2139","subject_information_content":100.0} +UMLS:C1179491 Epithelial cell of Malassez biolink:Cell skos:exactMatch UMLS:C1179491 Epithelial cell of Malassez biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2140"} +UMLS:C1522117 Leukocyte - Lymphocyte - B-Lymphocyte - Plasma Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22577 Mouse Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2135","subject_information_content":100.0,"identifierIndex":0} +CL:0000516 perineuronal satellite cell biolink:Cell skos:exactMatch CL:0000516 perineuronal satellite cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2141","subject_information_content":100.0} +UMLS:C4267792 Cells.CD25+CD127- biolink:Cell skos:exactMatch UMLS:C4267792 Cells.CD25+CD127- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2142"} +UMLS:C0037863 Spermatocytes biolink:Cell skos:exactMatch MESH:D013090 Spermatocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2136","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5401596 Dental Mesenchymal Pulp Stem Cells biolink:Cell skos:exactMatch UMLS:C5401596 Dental Mesenchymal Pulp Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2143"} +UMLS:C4322825 CD8+CD57+ T Lymphocyte biolink:Cell skos:exactMatch UMLS:C4322825 CD8+CD57+ T Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2144"} +UMLS:C4511888 Population of all atypical lymphocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726506006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2145","identifierIndex":0} +CL:0002385 blastoconidium biolink:Cell skos:exactMatch CL:0002385 blastoconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2146","subject_information_content":91.94953810872488} +UMLS:C0369715 Myelocytes biolink:Cell skos:exactMatch UMLS:C0369715 Myelocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2147"} +UMLS:C4683473 Autologous Anti-CD19 Chimeric Antigen Receptor T-cells C-CAR011 biolink:Cell skos:exactMatch NCIT:C141050 Autologous Anti-CD19 Chimeric Antigen Receptor T-cells C-CAR011 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2148","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2333855 Parasympathetic preganglionic neuron biolink:Cell skos:exactMatch UMLS:C2333855 Parasympathetic preganglionic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2149"} +UMLS:C0014355 Argentaffin Cell biolink:Cell skos:exactMatch NCIT:C12575 Enterochromaffin Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2150","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4518150 Population of all spermatozoa with bent midpiece in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725239001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2151","identifierIndex":0} +UMLS:C1440277 CD28+ cell biolink:Cell skos:exactMatch SNOMEDCT:732270008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2152","identifierIndex":0} +UMLS:C0225368 Chondroblasts biolink:Cell skos:exactMatch NCIT:C32306 Chondroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2153","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401604 Umbilical Cord Blood Hematopoietic Stem Cells biolink:Cell skos:exactMatch UMLS:C5401604 Umbilical Cord Blood Hematopoietic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2154"} +UMLS:C1513981 Neoplastic Granulosa Cell biolink:Cell skos:exactMatch NCIT:C36894 Neoplastic Granulosa Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2155","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0222677 Cell of bone biolink:Cell skos:exactMatch NCIT:C48762 Bone Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2156","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C1513984 Neoplastic Histiocyte biolink:Cell skos:exactMatch NCIT:C36888 Neoplastic Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2157","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0022686 Killer Cells biolink:Cell skos:exactMatch UMLS:C0022686 Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2158"} +UMLS:C0014355 Argentaffin Cell biolink:Cell skos:exactMatch MESH:D004759 Enterochromaffin Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2150","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1444183 Cleidoic ovum biolink:Cell skos:exactMatch UMLS:C1444183 Cleidoic ovum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2159"} +UMLS:C5163545 Epithelial cells | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163545 Epithelial cells | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2160"} +CL:0000210 photoreceptor cell biolink:Cell skos:exactMatch CL:0000210 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2161","subject_information_content":77.69020780594161} +UMLS:C0225368 Chondroblasts biolink:Cell skos:exactMatch SNOMEDCT:17512002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2153","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0222677 Cell of bone biolink:Cell skos:exactMatch SNOMEDCT:3400000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2156","subject_information_content":85.74066969721673,"identifierIndex":1} +UMLS:C5171665 Lymphocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171665 Lymphocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2162"} +UMLS:C1181541 Type I cell of paraganglion biolink:Cell skos:exactMatch UMLS:C1181541 Type I cell of paraganglion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2163"} +UMLS:C5177461 Plasma cells.abnormal marker pattern/Cells counted | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177461 Plasma cells.abnormal marker pattern/Cells counted | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2164"} +UMLS:C1280428 Entire delta Cell of islet biolink:Cell skos:exactMatch SNOMEDCT:247952004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2165","identifierIndex":0} +UMLS:C5205547 Autologous Anti-mesothelin T-cell Receptor Fusion Construct T-cells TC-210 biolink:Cell skos:exactMatch NCIT:C160780 Gavocabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2166","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514046 Neoplastic Neuroendocrine Polygonal Cell with Cytoplasmic Eosinophilic Globules biolink:Cell skos:exactMatch NCIT:C36934 Neoplastic Neuroendocrine Polygonal Cell with Cytoplasmic Eosinophilic Globules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2167","subject_information_content":100.0,"identifierIndex":0} +CL:0002112 B220-positive CD38-negative unswitched memory B cell biolink:Cell skos:exactMatch CL:0002112 B220-positive CD38-negative unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2168","subject_information_content":94.92072406280138} +UMLS:C2986568 Neoplastic Eosinophilic Spindle Cell biolink:Cell skos:exactMatch NCIT:C94551 Neoplastic Eosinophilic Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2169","subject_information_content":100.0,"identifierIndex":0} +CL:0009019 nephrogenic zone cell biolink:Cell skos:exactMatch CL:0009019 nephrogenic zone cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2170","subject_information_content":100.0} +UMLS:C0553711 Blood band cell biolink:Cell skos:exactMatch UMLS:C0553711 Blood band cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2171"} +MESH:D000072737 Myeloid-Derived Suppressor Cells biolink:Cell skos:exactMatch MESH:D000072737 Myeloid-Derived Suppressor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2172"} +CL:0002476 bone marrow macrophage biolink:Cell skos:exactMatch CL:0002476 bone marrow macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2173","subject_information_content":100.0} +CL:0000134 mesenchymal stem cell biolink:Cell skos:exactMatch CL:0000134 mesenchymal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2174","subject_information_content":78.04773462533598} +UMLS:C1708370 Histiocytic and Dendritic Cell biolink:Cell skos:exactMatch NCIT:C43251 Histiocytic and Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2175","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:1001096 kidney afferent arteriole endothelial cell biolink:Cell skos:exactMatch CL:1001096 kidney afferent arteriole endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2176","subject_information_content":100.0} +UMLS:C5178678 Pseudo Pelger Huet cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178678 Pseudo Pelger Huet cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2177"} +CL:0000697 R4 photoreceptor cell biolink:Cell skos:exactMatch CL:0000697 R4 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2178","subject_information_content":100.0} +UMLS:C1513301 Mikulicz Cell biolink:Cell skos:exactMatch NCIT:C36738 Mikulicz Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2179","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1882044 Neoplastic Apocrine Cell with Eosinophilic Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C62207 Neoplastic Apocrine Cell with Eosinophilic Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2180","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2350827 Ciliary Photoreceptor Cells biolink:Cell skos:exactMatch UMLS:C2350827 Ciliary Photoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2181"} +UMLS:C4525866 Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718 biolink:Cell skos:exactMatch NCIT:C135534 Autologous MAGE-A3/A6-specific TCR Gene-engineered Lymphocytes KITE-718 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2182","subject_information_content":100.0,"identifierIndex":0} +CL:0005025 visceromotor neuron biolink:Cell skos:exactMatch CL:0005025 visceromotor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2183","subject_information_content":94.92072406280138} +UMLS:C1518243 Malignant Small Undifferentiated Cell biolink:Cell skos:exactMatch NCIT:C36944 Malignant Small Undifferentiated Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2184","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170929 Leukocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170929 Leukocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2185"} +UMLS:C5171862 Macrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171862 Macrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2186"} +CL:0007008 notochordal vacuole cell biolink:Cell skos:exactMatch CL:0007008 notochordal vacuole cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2187","subject_information_content":100.0} +UMLS:C0017527 Giant Cells, Foreign-Body biolink:Cell skos:exactMatch NCIT:C12561 Foreign Body Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2188","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0017527 Giant Cells, Foreign-Body biolink:Cell skos:exactMatch MESH:D015743 Giant Cells, Foreign-Body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2188","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0017527 Giant Cells, Foreign-Body biolink:Cell skos:exactMatch SNOMEDCT:21386001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2188","subject_information_content":100.0,"identifierIndex":2} +CL:0002622 prostate stromal cell biolink:Cell skos:exactMatch CL:0002622 prostate stromal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2189","subject_information_content":100.0} +CL:0000965 Bm3 B cell biolink:Cell skos:exactMatch CL:0000965 Bm3 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2191","subject_information_content":100.0} +CL:0000128 oligodendrocyte biolink:Cell skos:exactMatch CL:0000128 oligodendrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2190","subject_information_content":94.92072406280138} +UMLS:C3825466 Paraneurons biolink:Cell skos:exactMatch UMLS:C3825466 Paraneurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2192"} +UMLS:C5157596 CD5+CD19+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157596 CD5+CD19+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2193"} +UMLS:C1507170 Cells.CD3+CD62L+ biolink:Cell skos:exactMatch UMLS:C1507170 Cells.CD3+CD62L+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2194"} +UMLS:C5175150 Nucleated cells | Dialysis fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175150 Nucleated cells | Dialysis fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2195"} +UMLS:C1267913 Lymphocyte positive for CD36 antigen biolink:Cell skos:exactMatch SNOMEDCT:117582005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2196","identifierIndex":0} +CL:0000757 type 5 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000757 type 5 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2197","subject_information_content":100.0} +CL:0000031 neuroblast (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000031 neuroblast (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2198","subject_information_content":89.84144812560278} +UMLS:C1267866 Lymphocyte positive for CD11A antigen biolink:Cell skos:exactMatch SNOMEDCT:117547009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2199","identifierIndex":0} +UMLS:C0229615 Pyroninophilic lymphoid cell biolink:Cell skos:exactMatch SNOMEDCT:20472006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2200","identifierIndex":0} +UMLS:C2335688 Transitional myocyte of posterior internodal tract biolink:Cell skos:exactMatch UMLS:C2335688 Transitional myocyte of posterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2201"} +UMLS:C5157382 CD20+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157382 CD20+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2202"} +UMLS:C1882058 Neoplastic Sertoli Cell with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C61418 Neoplastic Sertoli Cell with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2203","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225699 Type-I Pneumocytes biolink:Cell skos:exactMatch NCIT:C13144 Alveolar Cell Type I biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2204","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225699 Type-I Pneumocytes biolink:Cell skos:exactMatch NCIT:C32054 Alveolar Cell Type I biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2204","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0225699 Type-I Pneumocytes biolink:Cell skos:exactMatch SNOMEDCT:34826000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2204","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1440263 Cells.CD17 biolink:Cell skos:exactMatch UMLS:C1440263 Cells.CD17 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2205"} +UMLS:C1180243 Endothelial cell of venule biolink:Cell skos:exactMatch UMLS:C1180243 Endothelial cell of venule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2206"} +CL:0000831 mast cell progenitor biolink:Cell skos:exactMatch CL:0000831 mast cell progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2207","subject_information_content":94.92072406280138} +CL:0002447 CD94-negative natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002447 CD94-negative natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2208","subject_information_content":100.0} +UMLS:C2324943 Delayed type hypersensitivity-related T lymphocyte biolink:Cell skos:exactMatch UMLS:C2324943 Delayed type hypersensitivity-related T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2209"} +UMLS:C1267879 Lymphocyte positive for CD16B antigen biolink:Cell skos:exactMatch SNOMEDCT:117556001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2210","identifierIndex":0} +UMLS:C5417953 Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240 biolink:Cell skos:exactMatch UMLS:C5421408 Allogeneic Red Cells Expressing 4-1BBL and IL-15TP biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2211","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5417953 Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240 biolink:Cell skos:exactMatch NCIT:C172990 Engineered Red Blood Cells Co-expressing 4-1BBL and IL-15TP RTX-240 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2211","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5168980 Immature granulocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168980 Immature granulocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2212"} +UMLS:C1517817 Leukocyte - Lymphocyte - Immature T-Lymphocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22579 Mouse Immature T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2213","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440246 Cells.CD11b+CD56+ biolink:Cell skos:exactMatch UMLS:C1440246 Cells.CD11b+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2214"} +UMLS:C1267842 Lymphocyte positive for both CD4 antigen and CD69 antigen biolink:Cell skos:exactMatch SNOMEDCT:117529003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2215","identifierIndex":0} +CL:0000888 lymph node tingible body macrophage biolink:Cell skos:exactMatch CL:0000888 lymph node tingible body macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2216","subject_information_content":100.0} +UMLS:C1181725 Type II cell of adrenal cortex biolink:Cell skos:exactMatch UMLS:C1181725 Type II cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2217"} +UMLS:C5216288 Neutrophils.segmented|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216288 Neutrophils.segmented|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2218"} +CL:0002138 endothelial cell of lymphatic vessel biolink:Cell skos:exactMatch CL:0002138 endothelial cell of lymphatic vessel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2219","subject_information_content":91.94953810872488} +UMLS:C5177472 Plasma cells/100 leukocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177472 Plasma cells/100 leukocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2220"} +UMLS:C1541584 Autologous Expanded Mesenchymal Stem Cells OTI-010 biolink:Cell skos:exactMatch NCIT:C2534 Autologous Expanded Mesenchymal Stem Cells OTI-010 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2221","subject_information_content":100.0,"identifierIndex":0} +CL:0002127 innate effector T cell biolink:Cell skos:exactMatch CL:0002127 innate effector T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2222","subject_information_content":100.0} +CL:2000053 splenic endothelial cell biolink:Cell skos:exactMatch CL:2000053 splenic endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2223","subject_information_content":94.92072406280138} +CL:0002678 memory regulatory T cell biolink:Cell skos:exactMatch CL:0002678 memory regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2224","subject_information_content":94.92072406280138} +UMLS:C1440284 Cells.CD3+CD4+CD45RO-CD45RA+ biolink:Cell skos:exactMatch UMLS:C1440284 Cells.CD3+CD4+CD45RO-CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2225"} +UMLS:C1440404 Cells.t(12;21)(p13;q22.3)(ETV6,RUNX1) biolink:Cell skos:exactMatch UMLS:C1440404 Cells.t(12;21)(p13;q22.3)(ETV6,RUNX1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2226"} +CL:0002010 pre-conventional dendritic cell biolink:Cell skos:exactMatch CL:0002010 pre-conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2227","subject_information_content":100.0} +UMLS:C1182655 Mesothelial cell of anterior chamber of eye biolink:Cell skos:exactMatch UMLS:C1182655 Mesothelial cell of anterior chamber of eye biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2228"} +UMLS:C0229470 Pillar cell biolink:Cell skos:exactMatch NCIT:C33322 Pillar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2229","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229470 Pillar cell biolink:Cell skos:exactMatch SNOMEDCT:55842008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2229","subject_information_content":100.0,"identifierIndex":1} +CL:0002281 type S enteroendocrine cell biolink:Cell skos:exactMatch CL:0002281 type S enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2230","subject_information_content":100.0} +UMLS:C5382745 CD107a+b expressing Cytomegalovirus-specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382745 CD107a+b expressing Cytomegalovirus-specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2231"} +UMLS:C1708907 Malignant Small Round Cell biolink:Cell skos:exactMatch NCIT:C53487 Malignant Small Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2232","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4727163 Autologous Tumor Infiltrating Lymphocytes MDA-TIL biolink:Cell skos:exactMatch NCIT:C153312 Autologous Tumor Infiltrating Lymphocytes MDA-TIL biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2233","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4725796 Autologous Anti-EGFRvIII 4SCAR-IgT Cells biolink:Cell skos:exactMatch NCIT:C150518 Autologous Anti-EGFRvIII 4SCAR-IgT Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2234","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440384 Cells.euploid+Cells.aneuploid biolink:Cell skos:exactMatch UMLS:C1440384 Cells.euploid+Cells.aneuploid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2235"} +CL:0002632 epithelial cell of lower respiratory tract biolink:Cell skos:exactMatch CL:0002632 epithelial cell of lower respiratory tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2236","subject_information_content":75.84861432617468} +UMLS:C0427533 Hypogranular white blood cell biolink:Cell skos:exactMatch SNOMEDCT:250292003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2237","identifierIndex":0} +UMLS:C0206190 Macrophages, Peritoneal biolink:Cell skos:exactMatch NCIT:C12566 Peritoneal Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2238","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0206190 Macrophages, Peritoneal biolink:Cell skos:exactMatch MESH:D017737 Macrophages, Peritoneal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2238","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1267882 Lymphocyte negative for CD16 antigen and positive for CD57 antigen biolink:Cell skos:exactMatch SNOMEDCT:117559008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2239","identifierIndex":0} +UMLS:C4518164 Population of all spermatozoa with abnormal head in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725222003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2240","identifierIndex":0} +UMLS:C3176905 Cells.cytoplasmic CD22 biolink:Cell skos:exactMatch UMLS:C3176905 Cells.cytoplasmic CD22 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2241"} +UMLS:C1706981 Bone Marrow Stem Cell with Potential to Differentiate to Granulocytic Lineage biolink:Cell skos:exactMatch NCIT:C42716 Bone Marrow Stem Cell with Potential to Differentiate to Granulocytic Lineage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2242","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5154515 Basophils+Eosinophils+Monocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154515 Basophils+Eosinophils+Monocytes/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2243"} +CL:0000480 secretin stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000480 secretin stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2244","subject_information_content":100.0} +UMLS:C4267708 100 cells.CD3+CD8+ biolink:Cell skos:exactMatch UMLS:C4267708 100 cells.CD3+CD8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2245"} +UMLS:C4300400 Cells.chromosome region 7q31 deletion biolink:Cell skos:exactMatch UMLS:C4300400 Cells.chromosome region 7q31 deletion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2246"} +UMLS:C1517807 Leukemic Hematopoietic Stem Cell biolink:Cell skos:exactMatch NCIT:C41069 Leukemic Hematopoietic Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2247","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519111 Round Cell with Primitive Myoblastic Differentiation biolink:Cell skos:exactMatch NCIT:C36951 Round Cell with Primitive Myoblastic Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2248","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3890720 PC-3 cell line biolink:Cell skos:exactMatch UMLS:C3890720 PC-3 cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2249"} +UMLS:C3495992 C3 adrenaline cells biolink:Cell skos:exactMatch UMLS:C3495992 C3 adrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2250"} +UMLS:C0524984 Somatostatin-Secreting Cells biolink:Cell skos:exactMatch NCIT:C12574 Delta Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2251","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5159803 Chronic leukemia markers | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5159803 Chronic leukemia markers | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2252"} +UMLS:C5157506 CD36 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157506 CD36 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2253"} +UMLS:C5157335 CD16-CD57+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157335 CD16-CD57+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2254"} +UMLS:C0487470 Round Cells biolink:Cell skos:exactMatch UMLS:C0487470 Round Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2255"} +CL:0000675 female gamete biolink:Cell skos:exactMatch CL:0000675 female gamete biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2256","subject_information_content":94.92072406280138} +UMLS:C1182693 Dark cell of eccrine sweat gland biolink:Cell skos:exactMatch UMLS:C1182693 Dark cell of eccrine sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2257"} +UMLS:C1514890 Reserve Cell biolink:Cell skos:exactMatch NCIT:C33916 Reserve Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2258","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0524984 Somatostatin-Secreting Cells biolink:Cell skos:exactMatch MESH:D019864 Somatostatin-Secreting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2251","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C4322185 Epithelial cell of exocervix biolink:Cell skos:exactMatch UMLS:C4322185 Epithelial cell of exocervix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2259"} +CL:3000000 ciliated epithelial cell of esophagus biolink:Cell skos:exactMatch CL:3000000 ciliated epithelial cell of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2260","subject_information_content":100.0} +CL:0000694 R3 photoreceptor cell biolink:Cell skos:exactMatch CL:0000694 R3 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2261","subject_information_content":100.0} +UMLS:C1515996 Anti-gp100 TCR Retroviral Vector-Transduced Autologous PBL biolink:Cell skos:exactMatch NCIT:C38136 Anti-gp100 TCR Retroviral Vector-Transduced Autologous PBL biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2262","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440287 Cells.CD3+CD8+CD45RO+CD45RA- biolink:Cell skos:exactMatch UMLS:C1440287 Cells.CD3+CD8+CD45RO+CD45RA- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2263"} +CL:0002266 type D cell of small intestine biolink:Cell skos:exactMatch CL:0002266 type D cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2264","subject_information_content":100.0} +UMLS:C4727117 Hematopoietic Immune Cell biolink:Cell skos:exactMatch NCIT:C153245 Hematopoietic Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2265","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5237484 Anti-B7-H3 CAR T-cells biolink:Cell skos:exactMatch NCIT:C165844 Anti-B7-H3 CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2266","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0553257 Epithelial cell of renal tubule biolink:Cell skos:exactMatch NCIT:C33455 Renal Cortical Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2267","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163441 Eosinophils | Nose | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163441 Eosinophils | Nose | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2268"} +UMLS:C5206608 Autologous BCMA-targeted CAR T Cells LCAR-B4822M biolink:Cell skos:exactMatch NCIT:C162506 Autologous BCMA-targeted CAR T Cells LCAR-B4822M biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2269","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5174638 Neutrophils.dysplastic | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174638 Neutrophils.dysplastic | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2270"} +CL:0007016 adaxial cell biolink:Cell skos:exactMatch CL:0007016 adaxial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2271","subject_information_content":100.0} +UMLS:C1514161 Mouse Platelet biolink:Cell skos:exactMatch NCIT:C22568 Mouse Platelet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2272","subject_information_content":100.0,"identifierIndex":0} +CL:0002073 transitional myocyte biolink:Cell skos:exactMatch CL:0002073 transitional myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2273","subject_information_content":78.81980028025117} +CL:0001047 CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell biolink:Cell skos:exactMatch CL:0001047 CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2274","subject_information_content":89.84144812560278} +UMLS:C5426962 Erythrocytes | Lower respiratory specimen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5426962 Erythrocytes | Lower respiratory specimen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2275"} +UMLS:C4277737 Grid Cells biolink:Cell skos:exactMatch MESH:D000071038 Grid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2276","identifierIndex":0} +CL:0000987 IgA plasma cell biolink:Cell skos:exactMatch CL:0000987 IgA plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2277","subject_information_content":100.0} +CL:0000467 adrenocorticotropic hormone secreting cell biolink:Cell skos:exactMatch CL:0000467 adrenocorticotropic hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2278","subject_information_content":94.92072406280138} +CL:0007021 alarm substance cell biolink:Cell skos:exactMatch CL:0007021 alarm substance cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2279","subject_information_content":100.0} +UMLS:C0947287 CD16 cells biolink:Cell skos:exactMatch UMLS:C0947287 CD16 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2280"} +UMLS:C5184818 Variant lymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184818 Variant lymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2282"} +UMLS:C4086006 Autologous Cytotoxic T-lymphocytes Induced with MUC1 Peptide-pulsed Dendritic Cells biolink:Cell skos:exactMatch NCIT:C124998 Autologous Cytotoxic T-lymphocytes Induced with MUC1 Peptide-pulsed Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2283","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516866 Endosteal cell biolink:Cell skos:exactMatch NCIT:C32521 Endosteal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2281","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0242245 Dendritic Cells, Follicular biolink:Cell skos:exactMatch UMLS:C0242245 Dendritic Cells, Follicular biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2284"} +UMLS:C0024265 Null cell biolink:Cell skos:exactMatch MESH:D008215 Lymphocytes, Null biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2286","identifierIndex":0} +UMLS:C1268002 Lymphocyte positive for CD128 antigen biolink:Cell skos:exactMatch SNOMEDCT:117442001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2285","identifierIndex":0} +UMLS:C3831438 Autologous Cultured Acute Myeloid Leukemia-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C111996 Autologous Cultured Acute Myeloid Leukemia-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2287","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5446544 Autologous Universal CAR-expressing T-lymphocytes UniCAR02-T biolink:Cell skos:exactMatch NCIT:C175463 Autologous Universal CAR-expressing T-lymphocytes UniCAR02-T biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2288","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2330614 Transitional myocyte of atrial part of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2330614 Transitional myocyte of atrial part of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2289"} +UMLS:C0427529 Smear cell biolink:Cell skos:exactMatch SNOMEDCT:250288005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2290","identifierIndex":0} +CL:0009039 colon goblet cell biolink:Cell skos:exactMatch CL:0009039 colon goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2291","subject_information_content":100.0} +UMLS:C1317736 Progressive spermatozoa biolink:Cell skos:exactMatch SNOMEDCT:726586008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2292","identifierIndex":0} +UMLS:C4323915 Set of trunk neural crest cells biolink:Cell skos:exactMatch UMLS:C4323915 Set of trunk neural crest cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2293"} +UMLS:C1709208 Neoplastic Thyroid Gland Follicular Clear Cell biolink:Cell skos:exactMatch NCIT:C47832 Neoplastic Thyroid Gland Follicular Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2294","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0024265 Null cell biolink:Cell skos:exactMatch SNOMEDCT:54991005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2286","identifierIndex":1} +UMLS:C1524103 CNS - Brain - Glial Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22613 Mouse Glial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2295","subject_information_content":100.0,"identifierIndex":0} +CL:0002384 uninucleate macroconidium biolink:Cell skos:exactMatch CL:0002384 uninucleate macroconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2296","subject_information_content":91.94953810872488} +UMLS:C2327104 Velate protoplasmic astrocyte biolink:Cell skos:exactMatch UMLS:C2327104 Velate protoplasmic astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2297"} +CL:0002102 CD38-negative naive B cell biolink:Cell skos:exactMatch CL:0002102 CD38-negative naive B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2298","subject_information_content":100.0} +UMLS:C5174120 Myeloperoxidase cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5174120 Myeloperoxidase cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2299"} +UMLS:C1517816 Leukocyte - Lymphocyte - Immature B-Lymphocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22573 Mouse Immature B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2300","subject_information_content":100.0,"identifierIndex":0} +CL:0000567 polymodal nocireceptor biolink:Cell skos:exactMatch CL:0000567 polymodal nocireceptor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2301","subject_information_content":100.0} +UMLS:C4687728 Allogeneic Double Negative T Cells biolink:Cell skos:exactMatch NCIT:C147134 Allogeneic Double Negative T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2302","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171584 Lymphoblasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171584 Lymphoblasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2303"} +CL:0002370 respiratory goblet cell biolink:Cell skos:exactMatch CL:0002370 respiratory goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2304","subject_information_content":86.87026217152628} +UMLS:C1512166 Squamous cell of ectocervix biolink:Cell skos:exactMatch NCIT:C33915 Ectocervical Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2305","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157519 CD3-CD16+CD56+ (Natural killer) cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157519 CD3-CD16+CD56+ (Natural killer) cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2306"} +CL:1000606 kidney nerve cell biolink:Cell skos:exactMatch CL:1000606 kidney nerve cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2307","subject_information_content":100.0} +UMLS:C2984196 Therapeutic Allogeneic Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C91374 Therapeutic Allogeneic Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2308","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2334089 Epithelial cell of thyroid gland biolink:Cell skos:exactMatch UMLS:C2334089 Epithelial cell of thyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2309"} +UMLS:C1706984 Bone Marrow Stem Cell Committed to the Megakaryocytic Lineage biolink:Cell skos:exactMatch NCIT:C43221 Bone Marrow Stem Cell Committed to the Megakaryocytic Lineage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2310","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157288 CD126 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157288 CD126 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2311"} +CL:1001516 intestinal enteroendocrine cell biolink:Cell skos:exactMatch CL:1001516 intestinal enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2312","subject_information_content":83.89907621744979} +UMLS:C1514103 Neoplastic Striated Muscle Cell biolink:Cell skos:exactMatch NCIT:C36947 Neoplastic Striated Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2313","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C0005821 Blood Platelets biolink:Cell skos:exactMatch NCIT:C12520 Platelet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2314","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2363032 Epithelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C2363032 Epithelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2315"} +UMLS:C1514053 Neoplastic Oligodendrocyte biolink:Cell skos:exactMatch NCIT:C37141 Neoplastic Oligodendrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2316","subject_information_content":100.0,"identifierIndex":0} +CL:0000137 osteocyte biolink:Cell skos:exactMatch CL:0000137 osteocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2317","subject_information_content":94.92072406280138} +UMLS:C1514113 Neoplastic Thyroid Gland Follicular Cell biolink:Cell skos:exactMatch NCIT:C36835 Neoplastic Thyroid Gland Follicular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2318","subject_information_content":84.76217218840416,"identifierIndex":0} +CL:0000215 barrier cell biolink:Cell skos:exactMatch CL:0000215 barrier cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2319","subject_information_content":65.69006245177746} +UMLS:C0086574 Lymphoid Cells biolink:Cell skos:exactMatch UMLS:C0086574 Lymphoid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2320"} +UMLS:C5205117 Cord Blood-derived CMV/AdV/EBV/BKV-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C160294 Cord Blood-derived CMV/AdV/EBV/BKV-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2321","subject_information_content":100.0,"identifierIndex":0} +CL:0002249 primitive cardiac myocyte biolink:Cell skos:exactMatch CL:0002249 primitive cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2322","subject_information_content":100.0} +UMLS:C4072765 Cells.ALK gene rearrangements biolink:Cell skos:exactMatch UMLS:C4072765 Cells.ALK gene rearrangements biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2323"} +UMLS:C0005821 Blood Platelets biolink:Cell skos:exactMatch MESH:D001792 Blood Platelets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2314","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C5157295 CD13 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157295 CD13 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2324"} +UMLS:C0018207 granulosa cell biolink:Cell skos:exactMatch NCIT:C12587 Granulosa Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2325","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1183932 Luminal cell of prostatic acinus biolink:Cell skos:exactMatch UMLS:C1183932 Luminal cell of prostatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2326"} +UMLS:C5401603 CYNK-001 biolink:Cell skos:exactMatch NCIT:C173877 Taniraleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2327","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3896693 Bone Marrow-Derived Cell biolink:Cell skos:exactMatch NCIT:C116388 Bone Marrow-Derived Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2328","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000251 extramedullary cell biolink:Cell skos:exactMatch CL:0000251 extramedullary cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2329","subject_information_content":100.0} +UMLS:C5155165 Blasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155165 Blasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2330"} +UMLS:C5157467 CD3+HLA-DR+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157467 CD3+HLA-DR+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2331"} +UMLS:C0005821 Blood Platelets biolink:Cell skos:exactMatch SNOMEDCT:16378004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2314","subject_information_content":94.92072406280138,"identifierIndex":2} +UMLS:C1512103 Dysplastic Ganglion Cell biolink:Cell skos:exactMatch NCIT:C42085 Dysplastic Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2332","subject_information_content":100.0,"identifierIndex":0} +CL:0009038 colon macrophage biolink:Cell skos:exactMatch CL:0009038 colon macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2333","subject_information_content":100.0} +UMLS:C0018207 granulosa cell biolink:Cell skos:exactMatch NCIT:C41607 Ovarian Granulosa Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2325","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1180382 Regular cardiac myocyte biolink:Cell skos:exactMatch UMLS:C1180382 Regular cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2334"} +UMLS:C1179871 Myocyte of sinuatrial node biolink:Cell skos:exactMatch UMLS:C1179871 Myocyte of sinuatrial node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2335"} +CL:0000891 foam cell biolink:Cell skos:exactMatch CL:0000891 foam cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2336","subject_information_content":91.94953810872488} +UMLS:C0882791 Cell positive for CD13 antigen biolink:Cell skos:exactMatch SNOMEDCT:116751002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2337","identifierIndex":0} +UMLS:C0018207 granulosa cell biolink:Cell skos:exactMatch MESH:D006107 Granulosa Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2325","subject_information_content":91.94953810872488,"identifierIndex":2} +UMLS:C1513376 Moderately Differentiated Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36797 Moderately Differentiated Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2338","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4329369 Autologous Cytokine-induced Killer Cells biolink:Cell skos:exactMatch UMLS:C4329369 Autologous Cytokine-induced Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2339"} +UMLS:C5216236 Leukocytes|NCnc|Pt|Gast fld biolink:Cell skos:exactMatch UMLS:C5216236 Leukocytes|NCnc|Pt|Gast fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2340"} +UMLS:C1861193 THROMBOCYTE B biolink:Cell skos:exactMatch UMLS:C1861193 THROMBOCYTE B biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2341"} +UMLS:C5380999 Cells.CD8.HLA-B35 CMV specific biolink:Cell skos:exactMatch UMLS:C5380999 Cells.CD8.HLA-B35 CMV specific biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2342"} +UMLS:C5174620 Neutrophils | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174620 Neutrophils | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2343"} +CL:0002481 peritubular myoid cell biolink:Cell skos:exactMatch CL:0002481 peritubular myoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2344","subject_information_content":100.0} +UMLS:C5157317 CD15 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157317 CD15 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2345"} +UMLS:C3849991 Glandular Epithelial Cells biolink:Cell skos:exactMatch UMLS:C3849991 Glandular Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2346"} +UMLS:C0684127 stage II megakaryocyte biolink:Cell skos:exactMatch UMLS:C0684127 stage II megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2347"} +UMLS:C0225668 Clara cell biolink:Cell skos:exactMatch NCIT:C13143 Club Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2348","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519720 Type I Epithelial Receptor Cell biolink:Cell skos:exactMatch NCIT:C33824 Type I Epithelial Receptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2349","subject_information_content":100.0,"identifierIndex":0} +CL:4023013 corticothalamic-projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023013 corticothalamic-projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2350","subject_information_content":91.94953810872488} +CL:0002545 thoracic aorta endothelial cell biolink:Cell skos:exactMatch CL:0002545 thoracic aorta endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2351","subject_information_content":100.0} +UMLS:C1708911 Malignant Spindle-Shaped Fibroblast biolink:Cell skos:exactMatch NCIT:C49021 Malignant Spindle-Shaped Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2352","subject_information_content":100.0,"identifierIndex":0} +CL:0002382 multinucleate conidium biolink:Cell skos:exactMatch CL:0002382 multinucleate conidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2353","subject_information_content":89.84144812560278} +UMLS:C5417851 Autologous Anti-B7-H3/CD19 CAR T-cells SCRI-CARB7H3(s)x19 biolink:Cell skos:exactMatch NCIT:C171318 Autologous Anti-B7-H3/CD19 CAR T-cells SCRI-CARB7H3(s)x19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2354","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4240445 Vascular smooth muscle cell of aorta biolink:Cell skos:exactMatch UMLS:C4240445 Vascular smooth muscle cell of aorta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2355"} +UMLS:C4329351 Antineoplastic Immune Cell biolink:Cell skos:exactMatch NCIT:C129826 Antineoplastic Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2356","subject_information_content":53.68238203658339,"identifierIndex":0} +UMLS:C0225668 Clara cell biolink:Cell skos:exactMatch SNOMEDCT:77810002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2348","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1955926 Pro-B Lymphocytes biolink:Cell skos:exactMatch UMLS:C1955926 Pro-B Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2357"} +CL:1000803 kidney inner medulla interstitial cell biolink:Cell skos:exactMatch CL:1000803 kidney inner medulla interstitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2358","subject_information_content":100.0} +CL:0000198 pain receptor cell biolink:Cell skos:exactMatch CL:0000198 pain receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2359","subject_information_content":91.94953810872488} +UMLS:C2713244 Pooled platelet concentrate biolink:Cell skos:exactMatch UMLS:C2713244 Pooled platelet concentrate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2360"} +CL:0005014 auditory epithelial supporting cell biolink:Cell skos:exactMatch CL:0005014 auditory epithelial supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2361","subject_information_content":79.23864834624368} +CL:0009018 lymphocyte of large intestine lamina propria biolink:Cell skos:exactMatch CL:0009018 lymphocyte of large intestine lamina propria biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2362","subject_information_content":100.0} +UMLS:C1708906 Malignant Small Osteoblast biolink:Cell skos:exactMatch NCIT:C53956 Malignant Small Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2363","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2339402 Supporting cell of cochlea biolink:Cell skos:exactMatch UMLS:C2339402 Supporting cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2364"} +CL:0000993 mature CD11c-low plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000993 mature CD11c-low plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2365","subject_information_content":100.0} +UMLS:C5417766 Temferon biolink:Cell skos:exactMatch UMLS:C5417766 Temferon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2366"} +UMLS:C4726562 Anti-CD19/CD20/CD22/CD30 CAR-T Cells biolink:Cell skos:exactMatch NCIT:C151935 Anti-CD19/CD20/CD22/CD30 CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2367","subject_information_content":100.0,"identifierIndex":0} +CL:2000024 spinal cord medial motor column neuron biolink:Cell skos:exactMatch CL:2000024 spinal cord medial motor column neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2368","subject_information_content":100.0} +CL:0000228 multinucleate cell biolink:Cell skos:exactMatch CL:0000228 multinucleate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2369","subject_information_content":74.37813033179641} +UMLS:C1514048 Neoplastic Neuroepithelial Cell biolink:Cell skos:exactMatch NCIT:C37125 Neoplastic Neuroepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2370","subject_information_content":73.15398369131682,"identifierIndex":0} +UMLS:C0440745 Pigment cell biolink:Cell skos:exactMatch SNOMEDCT:256892003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2371","identifierIndex":0} +CL:1000352 basal cell of epithelium of lobular bronchiole biolink:Cell skos:exactMatch CL:1000352 basal cell of epithelium of lobular bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2372","subject_information_content":89.84144812560278} +CL:0000535 secondary neuron biolink:Cell skos:exactMatch CL:0000535 secondary neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2373","subject_information_content":94.92072406280138} +MESH:D001338 Autonomic Fibers, Postganglionic biolink:Cell skos:exactMatch MESH:D001338 Autonomic Fibers, Postganglionic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2374"} +UMLS:C2340471 Late promyelocyte biolink:Cell skos:exactMatch UMLS:C2340471 Late promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2375"} +CL:0000960 T3 B cell biolink:Cell skos:exactMatch CL:0000960 T3 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2376","subject_information_content":100.0} +UMLS:C1440140 Blasts.CD10 biolink:Cell skos:exactMatch UMLS:C1440140 Blasts.CD10 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2377"} +CL:0000453 Langerhans cell biolink:Cell skos:exactMatch CL:0000453 Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2378","subject_information_content":84.76217218840416} +CL:0011008 embryonic hemocyte biolink:Cell skos:exactMatch CL:0011008 embryonic hemocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2379","subject_information_content":100.0} +CL:0000871 splenic macrophage biolink:Cell skos:exactMatch CL:0000871 splenic macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2380","subject_information_content":86.87026217152628} +CL:1001435 periglomerular cell biolink:Cell skos:exactMatch CL:1001435 periglomerular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2381","subject_information_content":100.0} +CL:0000985 IgG plasma cell biolink:Cell skos:exactMatch CL:0000985 IgG plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2382","subject_information_content":100.0} +UMLS:C5216286 Neutrophils.band form|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216286 Neutrophils.band form|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2383"} +CL:0000957 large pre-B-II cell biolink:Cell skos:exactMatch CL:0000957 large pre-B-II cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2384","subject_information_content":89.84144812560278} +UMLS:C0598786 Ground Glass Hepatocyte biolink:Cell skos:exactMatch NCIT:C83011 Ground Glass Hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2385","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4288077 Omidubicel biolink:Cell skos:exactMatch NCIT:C127119 Omidubicel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2386","subject_information_content":100.0,"identifierIndex":0} +CL:1000286 smooth muscle cell of rectum biolink:Cell skos:exactMatch CL:1000286 smooth muscle cell of rectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2387","subject_information_content":100.0} +CL:0000164 enteroendocrine cell biolink:Cell skos:exactMatch CL:0000164 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2388","subject_information_content":73.74052434305256} +UMLS:C5179517 Reticulocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179517 Reticulocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2389"} +UMLS:C5157311 CD14 Monocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157311 CD14 Monocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2390"} +CL:0000679 glutamatergic neuron biolink:Cell skos:exactMatch CL:0000679 glutamatergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2391","subject_information_content":72.10536271718298} +UMLS:C0312739 Granular null cell biolink:Cell skos:exactMatch SNOMEDCT:67124000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2392","identifierIndex":0} +CL:0000476 thyrotroph biolink:Cell skos:exactMatch CL:0000476 thyrotroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2393","subject_information_content":100.0} +CL:4023005 dynamic nuclear bag fiber biolink:Cell skos:exactMatch CL:4023005 dynamic nuclear bag fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2394","subject_information_content":100.0} +UMLS:C3847488 Cells.CD3-CD4+ biolink:Cell skos:exactMatch UMLS:C3847488 Cells.CD3-CD4+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2395"} +CL:0002025 CD34-positive, CD41-positive, CD42-negative megakaryocyte progenitor cell biolink:Cell skos:exactMatch CL:0002025 CD34-positive, CD41-positive, CD42-negative megakaryocyte progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2396","subject_information_content":100.0} +UMLS:C3640942 Recombinant Human MUC1-Oxidized Polymannose-pulsed Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C102782 Recombinant Human MUC1-Oxidized Polymannose-pulsed Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2397","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5420765 BCMA CART Cells Secreting Mutant PD-1Fc Fusion Protein biolink:Cell skos:exactMatch NCIT:C174413 BCMA CART Cells Secreting Mutant PD-1Fc Fusion Protein biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2398","subject_information_content":100.0,"identifierIndex":0} +CL:1000424 chromaffin cell of paraaortic body biolink:Cell skos:exactMatch CL:1000424 chromaffin cell of paraaortic body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2400","subject_information_content":100.0} +UMLS:C1514012 Neoplastic Mast Cell biolink:Cell skos:exactMatch NCIT:C37062 Neoplastic Mast Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2399","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5170955 Leukocytes other | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170955 Leukocytes other | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2401"} +CL:0002355 primitive red blood cell biolink:Cell skos:exactMatch CL:0002355 primitive red blood cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2402","subject_information_content":100.0} +CL:0000432 reticular cell biolink:Cell skos:exactMatch CL:0000432 reticular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2403","subject_information_content":94.92072406280138} +CL:1000348 basal cell of epithelium of trachea biolink:Cell skos:exactMatch CL:1000348 basal cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2404","subject_information_content":100.0} +UMLS:C0221279 Burr cell biolink:Cell skos:exactMatch SNOMEDCT:51384001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2405","identifierIndex":0} +UMLS:C1513713 Adenocarcinoma Cell with Intracytoplasmic Mucin biolink:Cell skos:exactMatch NCIT:C37117 Adenocarcinoma Cell with Intracytoplasmic Mucin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2406","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C2324226 Nonkeratinized cell of epithelium of inferior part of anal canal biolink:Cell skos:exactMatch UMLS:C2324226 Nonkeratinized cell of epithelium of inferior part of anal canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2407"} +UMLS:C5239343 Autologous Anti-B7-H3 CAR Retroviral Vector-transduced T Cells biolink:Cell skos:exactMatch NCIT:C169051 Autologous Anti-B7-H3 CAR Retroviral Vector-transduced T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2408","subject_information_content":100.0,"identifierIndex":0} +CL:0002532 CD16-positive myeloid dendritic cell biolink:Cell skos:exactMatch CL:0002532 CD16-positive myeloid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2409","subject_information_content":91.94953810872488} +UMLS:C1440304 Cells.CD4+CD69+ biolink:Cell skos:exactMatch UMLS:C1440304 Cells.CD4+CD69+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2410"} +UMLS:C5157468 CD3+HLA-DR+ cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157468 CD3+HLA-DR+ cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2411"} +UMLS:C5155146 Bladder cells | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5155146 Bladder cells | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2412"} +UMLS:C2337273 Transitional myocyte of atrial septal branch of anterior internodal tract biolink:Cell skos:exactMatch UMLS:C2337273 Transitional myocyte of atrial septal branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2413"} +UMLS:C1513949 Neoplastic Ductal Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36877 Neoplastic Ductal Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2414","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5418067 Autologous Anti-BCMA CAR T-cells PHE885 biolink:Cell skos:exactMatch NCIT:C174124 Autologous Anti-BCMA CAR T-cells PHE885 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2415","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0034143 Purkinje Cells biolink:Cell skos:exactMatch NCIT:C12651 Purkinje Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2416","subject_information_content":100.0,"identifierIndex":0} +CL:0000570 parafollicular cell biolink:Cell skos:exactMatch CL:0000570 parafollicular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2417","subject_information_content":100.0} +UMLS:C5174093 Myeloblasts/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174093 Myeloblasts/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2418"} +UMLS:C0882846 Cell positive for CD33 antigen biolink:Cell skos:exactMatch SNOMEDCT:116825007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2419","identifierIndex":0} +CL:0009010 transit amplifying cell biolink:Cell skos:exactMatch CL:0009010 transit amplifying cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2420","subject_information_content":88.2062864997332} +CL:0000310 iron accumulating cell biolink:Cell skos:exactMatch CL:0000310 iron accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2421","subject_information_content":100.0} +CL:0002487 cutaneous/subcutaneous mechanoreceptor cell biolink:Cell skos:exactMatch CL:0002487 cutaneous/subcutaneous mechanoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2422","subject_information_content":91.94953810872488} +CL:0000067 ciliated epithelial cell biolink:Cell skos:exactMatch CL:0000067 ciliated epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2423","subject_information_content":75.07654867125949} +UMLS:C5549357 Normoblasts.total biolink:Cell skos:exactMatch UMLS:C5549357 Normoblasts.total biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2424"} +UMLS:C1717666 Cells.CD4+CD45RA+CD45RB+CD45RC+ biolink:Cell skos:exactMatch UMLS:C1717666 Cells.CD4+CD45RA+CD45RB+CD45RC+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2425"} +UMLS:C0034143 Purkinje Cells biolink:Cell skos:exactMatch MESH:D011689 Purkinje Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2416","subject_information_content":100.0,"identifierIndex":1} +CL:2000011 dermis lymphatic vessel endothelial cell biolink:Cell skos:exactMatch CL:2000011 dermis lymphatic vessel endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2426","subject_information_content":94.92072406280138} +UMLS:C1517715 Lacunar Reed-Sternberg Cell biolink:Cell skos:exactMatch NCIT:C37023 Lacunar Reed-Sternberg Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2427","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3832086 Human Cord Blood Hematopoietic Progenitor Cell 500000000 in 35 mL INTRAVENOUS INJECTION, SOLUTION [ALLOCORD] biolink:Cell skos:exactMatch UMLS:C3832086 Human Cord Blood Hematopoietic Progenitor Cell 500000000 in 35 mL INTRAVENOUS INJECTION, SOLUTION [ALLOCORD] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2428"} +CL:0002529 CD1a-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002529 CD1a-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2429","subject_information_content":91.94953810872488} +UMLS:C1317543 Immature monocytes biolink:Cell skos:exactMatch NCIT:C13120 Immature Monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2430","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000764 erythroid lineage cell biolink:Cell skos:exactMatch CL:0000764 erythroid lineage cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2431","subject_information_content":73.94695619694993} +UMLS:C1513065 Neoplastic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37005 Neoplastic Medium-Sized B-Lymphocyte with Basophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2432","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5417933 Allogeneic Anti-CD19 CAR T-cells ALLO-501A biolink:Cell skos:exactMatch NCIT:C172708 Allogeneic Anti-CD19 CAR T-cells ALLO-501A biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2433","subject_information_content":100.0,"identifierIndex":0} +CL:0000306 crystallin accumulating cell biolink:Cell skos:exactMatch CL:0000306 crystallin accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2434","subject_information_content":81.20444558259193} +UMLS:C0034143 Purkinje Cells biolink:Cell skos:exactMatch SNOMEDCT:83626009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2416","subject_information_content":100.0,"identifierIndex":2} +UMLS:C2325127 Type II enteric ganglion neuron biolink:Cell skos:exactMatch UMLS:C2325127 Type II enteric ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2435"} +UMLS:C1511062 Basaloid cell biolink:Cell skos:exactMatch NCIT:C32190 Basaloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2436","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216216 Erythrocytes|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216216 Erythrocytes|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2437"} +UMLS:C5417828 Autologous 1928T2z CAR T-cells WZTL-002 biolink:Cell skos:exactMatch NCIT:C170905 Autologous 1928T2z CAR T-cells WZTL-002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2438","subject_information_content":100.0,"identifierIndex":0} +MESH:D008407 Mast Cells biolink:Cell skos:exactMatch MESH:D008407 Mast Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2439"} +CL:0002567 light melanocyte biolink:Cell skos:exactMatch CL:0002567 light melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2440","subject_information_content":100.0} +UMLS:C2924226 Cells.CD5+CD23+ biolink:Cell skos:exactMatch UMLS:C2924226 Cells.CD5+CD23+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2441"} +CL:0002576 perineural cell biolink:Cell skos:exactMatch CL:0002576 perineural cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2442","subject_information_content":100.0} +UMLS:C4764273 Allogeneic Anti-CD19-CAR T-cells PBCAR0191 biolink:Cell skos:exactMatch NCIT:C158558 Azercabtagene Zapreleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2443","subject_information_content":100.0,"identifierIndex":0} +CL:1000123 metanephric nephron tubule epithelial cell biolink:Cell skos:exactMatch CL:1000123 metanephric nephron tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2444","subject_information_content":100.0} +UMLS:C5419239 Avoplacel biolink:Cell skos:exactMatch NCIT:C171652 Avoplacel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2445","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0684104 glomerul(o) biolink:Cell skos:exactMatch UMLS:C0684104 glomerul(o) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2446"} +UMLS:C1512104 Dysplastic Glandular Cell biolink:Cell skos:exactMatch NCIT:C36794 Dysplastic Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2447","subject_information_content":69.75699395529519,"identifierIndex":0} +CL:0000636 Mueller cell biolink:Cell skos:exactMatch CL:0000636 Mueller cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2448","subject_information_content":100.0} +CL:0001040 non-terminally differentiated osteoblast biolink:Cell skos:exactMatch CL:0001040 non-terminally differentiated osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2449","subject_information_content":100.0} +UMLS:C1180350 Taste bud cell biolink:Cell skos:exactMatch NCIT:C13147 Taste Bud Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2450","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C1708862 Malignant Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C53644 Malignant Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2451","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0000387 hemocyte (sensu Arthropoda) biolink:Cell skos:exactMatch CL:0000387 hemocyte (sensu Arthropoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2452","subject_information_content":79.68289625120555} +CL:0002107 IgD-negative CD38-positive IgG memory B cell biolink:Cell skos:exactMatch CL:0002107 IgD-negative CD38-positive IgG memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2453","subject_information_content":100.0} +CL:0000894 DN1 thymic pro-T cell biolink:Cell skos:exactMatch CL:0000894 DN1 thymic pro-T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2454","subject_information_content":100.0} +UMLS:C1512107 Dysplastic Neutrophil biolink:Cell skos:exactMatch NCIT:C37031 Dysplastic Neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2455","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C4055424 Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01 biolink:Cell skos:exactMatch NCIT:C121536 Autologous NKG2D CAR-CD3zeta-DAP10-expressing T-Lymphocytes CYAD-01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2456","subject_information_content":100.0,"identifierIndex":0} +CL:0009073 medullary thymic epithelial cell type 3 biolink:Cell skos:exactMatch CL:0009073 medullary thymic epithelial cell type 3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2457"} +UMLS:C4696000 Cells.CD3+CD4+CD27-CD45RO+CD62L- biolink:Cell skos:exactMatch UMLS:C4696000 Cells.CD3+CD4+CD27-CD45RO+CD62L- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2458"} +UMLS:C1181052 Thyroid Gland Follicular Cell biolink:Cell skos:exactMatch NCIT:C33783 Thyroid Gland Follicular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2459","subject_information_content":100.0,"identifierIndex":0} +MESH:D019858 Enteroendocrine Cells biolink:Cell skos:exactMatch MESH:D019858 Enteroendocrine Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2460"} +UMLS:C1267854 Lymphocyte positive for both CD8 antigen and CD25 antigen biolink:Cell skos:exactMatch SNOMEDCT:116735005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2461","identifierIndex":0} +UMLS:C5180576 Segmented neutrophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180576 Segmented neutrophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2462"} +CL:0009006 enteroendocrine cell of small intestine biolink:Cell skos:exactMatch CL:0009006 enteroendocrine cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2463","subject_information_content":91.94953810872488} +CL:0000152 exocrine cell biolink:Cell skos:exactMatch CL:0000152 exocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2464","subject_information_content":78.42360399800205} +CL:0002591 smooth muscle cell of the pulmonary artery biolink:Cell skos:exactMatch CL:0002591 smooth muscle cell of the pulmonary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2465","subject_information_content":100.0} +CL:0002142 dark cell of eccrine sweat gland biolink:Cell skos:exactMatch CL:0002142 dark cell of eccrine sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2466","subject_information_content":100.0} +UMLS:C5165605 Germ cells.immature | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5165605 Germ cells.immature | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2467"} +UMLS:C1513965 Neoplastic Fetal Epithelial Cell biolink:Cell skos:exactMatch NCIT:C37113 Neoplastic Fetal Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2468","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181052 Thyroid Gland Follicular Cell biolink:Cell skos:exactMatch MESH:D000072637 Thyroid Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2459","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1257975 Mesenchymal Stem Cells biolink:Cell skos:exactMatch NCIT:C43423 Mesenchymal Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2469","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000003 native cell biolink:Cell skos:exactMatch CL:0000003 native cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2470","subject_information_content":42.84460723960885} +UMLS:C5216264 Malignant cells|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216264 Malignant cells|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2471"} +CL:0000837 hematopoietic multipotent progenitor cell biolink:Cell skos:exactMatch CL:0000837 hematopoietic multipotent progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2472","subject_information_content":88.2062864997332} +CL:0000253 eurydendroid cell biolink:Cell skos:exactMatch CL:0000253 eurydendroid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2473","subject_information_content":100.0} +CL:1000409 myocyte of sinoatrial node biolink:Cell skos:exactMatch CL:1000409 myocyte of sinoatrial node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2474","subject_information_content":91.94953810872488} +CL:0002275 pancreatic PP cell biolink:Cell skos:exactMatch CL:0002275 pancreatic PP cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2475","subject_information_content":100.0} +CL:0002115 B220-positive CD38-positive unswitched memory B cell biolink:Cell skos:exactMatch CL:0002115 B220-positive CD38-positive unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2476","subject_information_content":94.92072406280138} +UMLS:C1979232 Blasts.CD34+CD117+ biolink:Cell skos:exactMatch UMLS:C1979232 Blasts.CD34+CD117+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2477"} +UMLS:C5163551 Epithelial cells.parabasal | Vaginal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163551 Epithelial cells.parabasal | Vaginal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2478"} +UMLS:C1257975 Mesenchymal Stem Cells biolink:Cell skos:exactMatch MESH:D059630 Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2469","subject_information_content":94.92072406280138,"identifierIndex":1} +MESH:D017154 Stromal Cells biolink:Cell skos:exactMatch MESH:D017154 Stromal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2479"} +UMLS:C5175645 Oval macrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175645 Oval macrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2480"} +UMLS:C1440050 Abnormal blood cells.CD14 biolink:Cell skos:exactMatch UMLS:C1440050 Abnormal blood cells.CD14 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2481"} +UMLS:C5157454 CD3+CD8+ (T8 suppressor cells) cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157454 CD3+CD8+ (T8 suppressor cells) cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2482"} +CL:4023041 L5 extratelencephalic projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023041 L5 extratelencephalic projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2483","subject_information_content":91.94953810872488} +UMLS:C4246712 Vascular smooth muscle cell of right coronary artery biolink:Cell skos:exactMatch UMLS:C4246712 Vascular smooth muscle cell of right coronary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2484"} +UMLS:C1512788 Inner phalangeal cell of cochlea biolink:Cell skos:exactMatch NCIT:C32812 Inner Supporting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2485","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514023 Neoplastic Meningothelial Cell biolink:Cell skos:exactMatch NCIT:C37155 Neoplastic Meningothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2486","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C1882052 Neoplastic Epithelial Small Polygonal Cell biolink:Cell skos:exactMatch NCIT:C60993 Neoplastic Epithelial Small Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2487","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1257975 Mesenchymal Stem Cells biolink:Cell skos:exactMatch SNOMEDCT:418124002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2469","subject_information_content":94.92072406280138,"identifierIndex":2} +UMLS:C5446291 Letetresgene Autoleucel biolink:Cell skos:exactMatch UMLS:C5446291 Letetresgene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2488"} +UMLS:C1516470 Chief cell biolink:Cell skos:exactMatch NCIT:C12580 Chief Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2489","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5163722 Erythrocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163722 Erythrocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2490"} +UMLS:C1515140 T-Lymphocyte with a Post-Thymic Immunophenotype biolink:Cell skos:exactMatch NCIT:C39573 T-Lymphocyte with a Post-Thymic Immunophenotype biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2491","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333832 Tart cell biolink:Cell skos:exactMatch SNOMEDCT:26819005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2492","identifierIndex":0} +CL:0000896 activated CD4-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000896 activated CD4-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2493","subject_information_content":94.92072406280138} +CL:0002424 DN2b thymocyte biolink:Cell skos:exactMatch CL:0002424 DN2b thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2494","subject_information_content":100.0} +MESH:D013172 Spores, Fungal biolink:Cell skos:exactMatch MESH:D013172 Spores, Fungal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2495"} +CL:0002261 endothelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch CL:0002261 endothelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2496","subject_information_content":88.2062864997332} +CL:4023021 static gamma motor neuron biolink:Cell skos:exactMatch CL:4023021 static gamma motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2497","subject_information_content":100.0} +UMLS:C4322670 CD3+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322670 CD3+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2498"} +UMLS:C1514052 Neoplastic Oligodendrocyte-Like Cell biolink:Cell skos:exactMatch NCIT:C37147 Neoplastic Oligodendrocyte-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2499","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2736184 Cells.CD55+CD59 biolink:Cell skos:exactMatch UMLS:C2736184 Cells.CD55+CD59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2500"} +UMLS:C4727036 Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01 biolink:Cell skos:exactMatch NCIT:C153118 Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells PZ01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2501","subject_information_content":100.0,"identifierIndex":0} +CL:0000885 gut-associated lymphoid tissue macrophage biolink:Cell skos:exactMatch CL:0000885 gut-associated lymphoid tissue macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2502","subject_information_content":86.87026217152628} +UMLS:C4329309 Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087 biolink:Cell skos:exactMatch NCIT:C129715 Anti-ACTR/4-1BB/CD3zeta-Viral Vector-transduced Autologous T-Lymphocytes ACTR087 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2503","subject_information_content":100.0,"identifierIndex":0} +CL:0000624 CD4-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000624 CD4-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2504","subject_information_content":74.37813033179641} +UMLS:C4300320 100 viable tumor cells biolink:Cell skos:exactMatch UMLS:C4300320 100 viable tumor cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2505"} +UMLS:C3495384 A16 dopamine cells biolink:Cell skos:exactMatch UMLS:C3495384 A16 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2506"} +UMLS:C1518889 Paraimmunoblast biolink:Cell skos:exactMatch NCIT:C36989 Paraimmunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2507","subject_information_content":100.0,"identifierIndex":0} +CL:0002041 immature NK T cell stage III biolink:Cell skos:exactMatch CL:0002041 immature NK T cell stage III biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2508","subject_information_content":100.0} +UMLS:C2338585 Set of cholinergic cells of basal nucleus [Ch4] biolink:Cell skos:exactMatch UMLS:C2338585 Set of cholinergic cells of basal nucleus [Ch4] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2509"} +CL:0000674 interfollicle cell biolink:Cell skos:exactMatch CL:0000674 interfollicle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2510","subject_information_content":100.0} +CL:0000055 non-terminally differentiated cell biolink:Cell skos:exactMatch CL:0000055 non-terminally differentiated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2511","subject_information_content":70.90631146494941} +CL:0002513 Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell biolink:Cell skos:exactMatch CL:0002513 Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2512","subject_information_content":100.0} +CL:0002030 Fc-epsilon RIalpha-high basophil progenitor cell biolink:Cell skos:exactMatch CL:0002030 Fc-epsilon RIalpha-high basophil progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2513","subject_information_content":100.0} +CL:0001001 immature CD8_alpha-negative CD11b-negative dendritic cell biolink:Cell skos:exactMatch CL:0001001 immature CD8_alpha-negative CD11b-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2514","subject_information_content":100.0} +CL:4023051 vascular leptomeningeal cell biolink:Cell skos:exactMatch CL:4023051 vascular leptomeningeal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2515","subject_information_content":94.92072406280138} +UMLS:C5380997 Cells.CD8.HLA-A1 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5380997 Cells.CD8.HLA-A1 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2516"} +CL:0002483 hair follicle melanocyte biolink:Cell skos:exactMatch CL:0002483 hair follicle melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2517","subject_information_content":100.0} +CL:0000825 pro-NK cell biolink:Cell skos:exactMatch CL:0000825 pro-NK cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2518","subject_information_content":100.0} +UMLS:C5159882 Circulating tumor cells.prostate | Blood | Chemistry - non-challenge biolink:Cell skos:exactMatch UMLS:C5159882 Circulating tumor cells.prostate | Blood | Chemistry - non-challenge biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2519"} +CL:0002552 fibroblast of gingiva biolink:Cell skos:exactMatch CL:0002552 fibroblast of gingiva biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2520","subject_information_content":100.0} +UMLS:C1276850 Entire parathyroid chief cell biolink:Cell skos:exactMatch SNOMEDCT:177527004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2521","identifierIndex":0} +UMLS:C1440295 Cells.CD33+CD11b+ biolink:Cell skos:exactMatch UMLS:C1440295 Cells.CD33+CD11b+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2522"} +UMLS:C0029045 Oocytes biolink:Cell skos:exactMatch UMLS:C0029045 Oocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2523"} +UMLS:C1301169 Pyknocyte biolink:Cell skos:exactMatch SNOMEDCT:397049008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2524","identifierIndex":0} +UMLS:C3178739 Effector B Cells biolink:Cell skos:exactMatch UMLS:C3178739 Effector B Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2525"} +UMLS:C2327465 Transitional myocyte of septal division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2327465 Transitional myocyte of septal division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2526"} +UMLS:C1440338 CD62E Cells biolink:Cell skos:exactMatch UMLS:C1440338 CD62E Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2527"} +UMLS:C4300379 Erythrocytes.Babesia sp infected biolink:Cell skos:exactMatch UMLS:C4300379 Erythrocytes.Babesia sp infected biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2528"} +CL:0000682 M cell of gut biolink:Cell skos:exactMatch CL:0000682 M cell of gut biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2529","subject_information_content":83.1270105625346} +CL:0002334 preadipocyte biolink:Cell skos:exactMatch CL:0002334 preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2530","subject_information_content":84.76217218840416} +UMLS:C1883265 Tall Columnar Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C60531 Tall Columnar Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2531","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:4028003 alveolar capillary type 2 endothelial cell biolink:Cell skos:exactMatch CL:4028003 alveolar capillary type 2 endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2532"} +CL:0011106 GABAnergic interplexiform cell biolink:Cell skos:exactMatch CL:0011106 GABAnergic interplexiform cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2533","subject_information_content":100.0} +CL:0002229 light chief cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002229 light chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2534","subject_information_content":100.0} +UMLS:C1518630 Mouse Osteoclast biolink:Cell skos:exactMatch NCIT:C22681 Mouse Osteoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2535","subject_information_content":100.0,"identifierIndex":0} +CL:2000019 compound eye photoreceptor cell biolink:Cell skos:exactMatch CL:2000019 compound eye photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2536","subject_information_content":84.76217218840416} +CL:0000826 pro-B cell biolink:Cell skos:exactMatch CL:0000826 pro-B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2537","subject_information_content":91.94953810872488} +UMLS:C5154478 Basophils | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154478 Basophils | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2538"} +UMLS:C4086920 Tumor Peptide-loaded Myeloid Dendritic Cells biolink:Cell skos:exactMatch NCIT:C124055 Tumor Peptide-loaded Myeloid Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2539","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440048 Abnormal blood cells.CD10 biolink:Cell skos:exactMatch UMLS:C1440048 Abnormal blood cells.CD10 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2540"} +UMLS:C1514188 Pochon ES Cell Line biolink:Cell skos:exactMatch NCIT:C20284 Pochon ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2541","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C4267791 Cells.CD27+CD45RA- biolink:Cell skos:exactMatch UMLS:C4267791 Cells.CD27+CD45RA- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2542"} +UMLS:C5446899 Anti-CD20/Anti-CD22 CAR T-cells biolink:Cell skos:exactMatch NCIT:C175977 Anti-CD20/Anti-CD22 CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2543","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440358 Cells.CD8+CD56+ biolink:Cell skos:exactMatch UMLS:C1440358 Cells.CD8+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2544"} +UMLS:C5172358 Megakaryocytes | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172358 Megakaryocytes | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2545"} +UMLS:C5163727 Erythrocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163727 Erythrocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2546"} +UMLS:C5163771 Erythroid cells | Blood or Marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163771 Erythroid cells | Blood or Marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2547"} +CL:0005001 iridoblast biolink:Cell skos:exactMatch CL:0005001 iridoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2548","subject_information_content":100.0} +UMLS:C5157626 CD59 Granulocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157626 CD59 Granulocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2549"} +UMLS:C0597447 Sf9 cell line biolink:Cell skos:exactMatch UMLS:C0597447 Sf9 cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2550"} +UMLS:C0282501 Spheroids, Cellular biolink:Cell skos:exactMatch MESH:D018874 Spheroids, Cellular biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2551","identifierIndex":0} +UMLS:C2608015 Platelets.large biolink:Cell skos:exactMatch UMLS:C2608015 Platelets.large biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2552"} +CL:0000994 immature CD11c-negative plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000994 immature CD11c-negative plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2553","subject_information_content":100.0} +CL:0000504 enterochromaffin-like cell biolink:Cell skos:exactMatch CL:0000504 enterochromaffin-like cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2554","subject_information_content":100.0} +UMLS:C0545061 May-Hegglin cell biolink:Cell skos:exactMatch UMLS:C0545061 May-Hegglin cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2555"} +CL:0000856 neuromast hair cell biolink:Cell skos:exactMatch CL:0000856 neuromast hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2556","subject_information_content":91.94953810872488} +UMLS:C1179787 Vacuolar absorptive cell biolink:Cell skos:exactMatch UMLS:C1179787 Vacuolar absorptive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2557"} +UMLS:C5177781 Polymorphonuclear cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177781 Polymorphonuclear cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2558"} +UMLS:C0546495 P.B. basophilic metamyelocyte biolink:Cell skos:exactMatch UMLS:C0546495 P.B. basophilic metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2559"} +CL:0011022 fibroblast of skin of back biolink:Cell skos:exactMatch CL:0011022 fibroblast of skin of back biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2560","subject_information_content":94.92072406280138} +UMLS:C1449624 Neuroepithelial Cells biolink:Cell skos:exactMatch UMLS:C1449624 Neuroepithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2561"} +UMLS:C5163731 Erythrocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163731 Erythrocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2562"} +UMLS:C3495989 A3 catecholamine cells biolink:Cell skos:exactMatch UMLS:C3495989 A3 catecholamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2563"} +UMLS:C1514437 Primitive Mesenchymal Round Cell biolink:Cell skos:exactMatch NCIT:C36910 Primitive Mesenchymal Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2564","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5222946 CD3- CD16+ cells/100 cells in bone marrow biolink:Cell skos:exactMatch UMLS:C5222946 CD3- CD16+ cells/100 cells in bone marrow biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2565"} +UMLS:C0037857 Spermatid biolink:Cell skos:exactMatch NCIT:C12604 Spermatid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2566","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514740 Reactive Plasma Cell biolink:Cell skos:exactMatch NCIT:C40563 Reactive Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2567","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5446460 Zelenoleucel biolink:Cell skos:exactMatch UMLS:C5446460 Zelenoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2568"} +UMLS:C5170958 Leukocytes other | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170958 Leukocytes other | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2569"} +CL:0010021 cardiac myoblast biolink:Cell skos:exactMatch CL:0010021 cardiac myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2570","subject_information_content":91.94953810872488} +CL:4023118 L5/6 non-Martinotti morphology sst expressing GABAergic cortical internueron (Mus musculus) biolink:Cell skos:exactMatch CL:4023118 L5/6 non-Martinotti morphology sst expressing GABAergic cortical internueron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2571","subject_information_content":100.0} +UMLS:C0487179 Oval macrocyte biolink:Cell skos:exactMatch SNOMEDCT:117170009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2572","identifierIndex":0} +UMLS:C2333515 Adipocyte of epicardial fat of right ventricle biolink:Cell skos:exactMatch UMLS:C2333515 Adipocyte of epicardial fat of right ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2573"} +UMLS:C5174099 Myelocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174099 Myelocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2574"} +UMLS:C1440325 Cells.CD49e biolink:Cell skos:exactMatch UMLS:C1440325 Cells.CD49e biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2575"} +UMLS:C0037857 Spermatid biolink:Cell skos:exactMatch MESH:D013087 Spermatids biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2566","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0229636 Neutrophilic promyelocyte biolink:Cell skos:exactMatch SNOMEDCT:34254002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2576","identifierIndex":0} +UMLS:C1267999 Lymphocyte positive for CD120B antigen biolink:Cell skos:exactMatch SNOMEDCT:117439007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2577","identifierIndex":0} +CL:0000665 permanently open valve cell biolink:Cell skos:exactMatch CL:0000665 permanently open valve cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2578","subject_information_content":100.0} +UMLS:C5151403 Acanthocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5151403 Acanthocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2579"} +CL:0002627 mature astrocyte biolink:Cell skos:exactMatch CL:0002627 mature astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2580","subject_information_content":100.0} +UMLS:C2331651 Polar Bodies biolink:Cell skos:exactMatch MESH:D059705 Polar Bodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2581","identifierIndex":0} +CL:0002519 interrenal epithelial cell biolink:Cell skos:exactMatch CL:0002519 interrenal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2582","subject_information_content":100.0} +UMLS:C1440054 Abnormal blood cells.CD33 biolink:Cell skos:exactMatch UMLS:C1440054 Abnormal blood cells.CD33 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2583"} +UMLS:C4687465 Allogeneic CD123-specific Universal CAR123-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C146806 Allogeneic CD123-specific Universal CAR123-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2584","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0037857 Spermatid biolink:Cell skos:exactMatch SNOMEDCT:38326003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2566","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1440334 Cells.CD58 biolink:Cell skos:exactMatch UMLS:C1440334 Cells.CD58 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2585"} +UMLS:C5163754 Erythrocytes.lytic resistant | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163754 Erythrocytes.lytic resistant | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2586"} +CL:0009011 transit amplifying cell of colon biolink:Cell skos:exactMatch CL:0009011 transit amplifying cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2587","subject_information_content":100.0} +CL:0002307 brush border cell of the proximal tubule biolink:Cell skos:exactMatch CL:0002307 brush border cell of the proximal tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2588","subject_information_content":100.0} +CL:0002075 brush cell of trachebronchial tree biolink:Cell skos:exactMatch CL:0002075 brush cell of trachebronchial tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2589","subject_information_content":88.2062864997332} +CL:0002214 type IIa muscle cell biolink:Cell skos:exactMatch CL:0002214 type IIa muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2590","subject_information_content":100.0} +UMLS:C5175604 Other cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175604 Other cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2591"} +CL:0002660 luminal cell of acinus of lactiferous gland biolink:Cell skos:exactMatch CL:0002660 luminal cell of acinus of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2592","subject_information_content":100.0} +UMLS:C5163546 Epithelial cells.ciliated | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163546 Epithelial cells.ciliated | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2593"} +UMLS:C4086505 ICT-121 Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C124652 ICT-121 Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2594","subject_information_content":100.0,"identifierIndex":0} +CL:1000090 pronephric nephron tubule epithelial cell biolink:Cell skos:exactMatch CL:1000090 pronephric nephron tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2595","subject_information_content":100.0} +UMLS:C1514069 Neoplastic Polygonal Cell with Abundant Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C36852 Neoplastic Polygonal Cell with Abundant Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2596","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5216199 Eosinophils.immature|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216199 Eosinophils.immature|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2597"} +CL:0009013 fetal hepatobiliary progenitor cell biolink:Cell skos:exactMatch CL:0009013 fetal hepatobiliary progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2598","subject_information_content":100.0} +UMLS:C5157464 CD3+DR+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157464 CD3+DR+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2599"} +UMLS:C1267855 Lymphocyte positive for both CD8 antigen and CD28 antigen biolink:Cell skos:exactMatch SNOMEDCT:117540006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2600","identifierIndex":0} +UMLS:C4733622 Plasmodium vivax-infected Red Blood Cell biolink:Cell skos:exactMatch NCIT:C155655 Plasmodium vivax-infected Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2601","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157526 CD3-CD57+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157526 CD3-CD57+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2602"} +UMLS:C1254945 Okt3 Lymphocyte biolink:Cell skos:exactMatch UMLS:C1254945 Okt3 Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2603"} +UMLS:C4763554 Allogeneic HAdV Antigen-specific T-lymphocytes biolink:Cell skos:exactMatch NCIT:C157341 Allogeneic HAdV Antigen-specific T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2604","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183357 Type-1 epithelial cell of thymus biolink:Cell skos:exactMatch UMLS:C1183357 Type-1 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2605"} +UMLS:C5382939 Interferon-gamma producing HLA-A1 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382939 Interferon-gamma producing HLA-A1 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2606"} +UMLS:C5180817 Sezary cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180817 Sezary cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2607"} +UMLS:C0282560 Caco-2 Cells biolink:Cell skos:exactMatch UMLS:C0282560 Caco-2 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2608"} +UMLS:C1514009 Neoplastic Leydig Cell biolink:Cell skos:exactMatch NCIT:C36896 Neoplastic Leydig Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2609","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4317010 Reactive Lymphocyte biolink:Cell skos:exactMatch NCIT:C12847 Reactive Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2610","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1148323 Cells.CD20+CD25+/100 cells biolink:Cell skos:exactMatch UMLS:C1148323 Cells.CD20+CD25+/100 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2611"} +CL:0002095 hilus cell of ovary biolink:Cell skos:exactMatch CL:0002095 hilus cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2612","subject_information_content":100.0} +UMLS:C0229658 Proplasmacyte biolink:Cell skos:exactMatch SNOMEDCT:24884008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2613","identifierIndex":0} +CL:0002520 nephrocyte biolink:Cell skos:exactMatch CL:0002520 nephrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2614","subject_information_content":89.84144812560278} +UMLS:C2333726 Type D1 enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2333726 Type D1 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2615"} +UMLS:C1519477 Splenocyte biolink:Cell skos:exactMatch NCIT:C12951 Splenocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2616","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512550 Hyperchromatic Spindle Cell biolink:Cell skos:exactMatch NCIT:C37084 Hyperchromatic Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2617","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181299 Clear chief cell of parathyroid cell biolink:Cell skos:exactMatch NCIT:C33267 Parathyroid Gland Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2618","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0545677 Alveolar cell, type 3 biolink:Cell skos:exactMatch UMLS:C0545677 Alveolar cell, type 3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2619"} +UMLS:C1182615 General ecto-epithelial cell biolink:Cell skos:exactMatch UMLS:C1182615 General ecto-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2620"} +UMLS:C3178785 Adrenergic Neurons biolink:Cell skos:exactMatch MESH:D059331 Adrenergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2621","identifierIndex":0} +UMLS:C4684874 Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101 biolink:Cell skos:exactMatch NCIT:C142864 Autologous Anti-BCMA-CAR Expressing Stem Memory T-cells P-BCMA-101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2622","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440241 Cells.CD11 biolink:Cell skos:exactMatch UMLS:C1440241 Cells.CD11 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2623"} +UMLS:C0023602 Structure of interstitial cell of Leydig biolink:Cell skos:exactMatch NCIT:C12609 Leydig Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2624","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5184400 Unidentified cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184400 Unidentified cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2625"} +UMLS:C0545586 Blood medium lymphocyte biolink:Cell skos:exactMatch UMLS:C0545586 Blood medium lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2626"} +UMLS:C4322734 FMC-7+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322734 FMC-7+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2627"} +CL:2000072 adipose microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000072 adipose microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2628","subject_information_content":100.0} +UMLS:C5171700 Lymphocytes.immature/100 leukocytes | Amniotic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171700 Lymphocytes.immature/100 leukocytes | Amniotic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2629"} +UMLS:C5171666 Lymphocytes | Semen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171666 Lymphocytes | Semen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2630"} +UMLS:C1955256 Erythrocytes.fetal biolink:Cell skos:exactMatch UMLS:C1955256 Erythrocytes.fetal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2631"} +UMLS:C1516398 Cerebriform-Like Lymphocyte biolink:Cell skos:exactMatch NCIT:C39708 Cerebriform-Like Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2632","subject_information_content":100.0,"identifierIndex":0} +CL:0002308 epithelial cell of skin gland biolink:Cell skos:exactMatch CL:0002308 epithelial cell of skin gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2633","subject_information_content":86.87026217152628} +UMLS:C0023602 Structure of interstitial cell of Leydig biolink:Cell skos:exactMatch MESH:D007985 Leydig Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2624","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0376702 COS Cells biolink:Cell skos:exactMatch NCIT:C17968 COS-1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2634","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333722 Tadpole cell biolink:Cell skos:exactMatch SNOMEDCT:112657009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2635","identifierIndex":0} +UMLS:C1440262 Cells.CD16-CD57+ biolink:Cell skos:exactMatch UMLS:C1440262 Cells.CD16-CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2636"} +UMLS:C0682552 Parenchymal cell biolink:Cell skos:exactMatch UMLS:C0682552 Parenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2637"} +CL:0002009 macrophage dendritic cell progenitor biolink:Cell skos:exactMatch CL:0002009 macrophage dendritic cell progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2638","subject_information_content":94.92072406280138} +UMLS:C2736933 Cells.CD3+CD8+CD45+ biolink:Cell skos:exactMatch UMLS:C2736933 Cells.CD3+CD8+CD45+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2639"} +UMLS:C1979645 Blasts.CD33+CD34+ biolink:Cell skos:exactMatch UMLS:C1979645 Blasts.CD33+CD34+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2640"} +UMLS:C1513019 Mature B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C33058 Mature B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2641","subject_information_content":75.84861432617468,"identifierIndex":0} +UMLS:C1514093 Neoplastic Small T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39605 Neoplastic Small T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2642","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0023602 Structure of interstitial cell of Leydig biolink:Cell skos:exactMatch SNOMEDCT:44185004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2624","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0376702 COS Cells biolink:Cell skos:exactMatch MESH:D019556 COS Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2634","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1267928 Lymphocyte positive for CD45 antigen biolink:Cell skos:exactMatch SNOMEDCT:116853007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2643","identifierIndex":0} +UMLS:C0034964 Regenerating muscle fiber biolink:Cell skos:exactMatch SNOMEDCT:56132000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2644","identifierIndex":0} +CL:0000782 myeloid dendritic cell biolink:Cell skos:exactMatch CL:0000782 myeloid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2645","subject_information_content":85.74066969721673} +CL:0002191 granulocytopoietic cell biolink:Cell skos:exactMatch CL:0002191 granulocytopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2646","subject_information_content":76.12516964539331} +UMLS:C5163683 Erythrocyte clumps | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163683 Erythrocyte clumps | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2647"} +MESH:D055611 Natural Killer T-Cells biolink:Cell skos:exactMatch MESH:D055611 Natural Killer T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2648"} +UMLS:C5221012 Platelets.reticulated|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5221012 Platelets.reticulated|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2649"} +CL:1000470 myoepithelial cell of primary lactiferous duct biolink:Cell skos:exactMatch CL:1000470 myoepithelial cell of primary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2650","subject_information_content":100.0} +CL:2000089 dentate gyrus of hippocampal formation granule cell biolink:Cell skos:exactMatch CL:2000089 dentate gyrus of hippocampal formation granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2651","subject_information_content":100.0} +UMLS:C2951025 Endothelial cell of endocardium for right atrium biolink:Cell skos:exactMatch UMLS:C2951025 Endothelial cell of endocardium for right atrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2652"} +UMLS:C1510684 ADA Transduced T Cell biolink:Cell skos:exactMatch NCIT:C28797 ADA Transduced T Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2653","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2826112 Autologous NY-ESO-1-Melanoma-Specific CD8+ T-lymphocytes biolink:Cell skos:exactMatch NCIT:C82350 Autologous NY-ESO-1-Melanoma-Specific CD8+ T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2654","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177469 Plasma cells/100 leukocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177469 Plasma cells/100 leukocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2655"} +UMLS:C1513969 Neoplastic Fusiform Cell biolink:Cell skos:exactMatch NCIT:C36963 Neoplastic Fusiform Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2656","subject_information_content":100.0,"identifierIndex":0} +CL:4023003 nuclear chain fiber biolink:Cell skos:exactMatch CL:4023003 nuclear chain fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2657","subject_information_content":100.0} +CL:0002013 GlyA-positive basophillic erythroblast biolink:Cell skos:exactMatch CL:0002013 GlyA-positive basophillic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2658","subject_information_content":100.0} +UMLS:C1135970 Theca lutein cell biolink:Cell skos:exactMatch NCIT:C33761 Theca Lutein Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2659","subject_information_content":100.0,"identifierIndex":0} +CL:0000087 male germ line stem cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000087 male germ line stem cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2660","subject_information_content":100.0} +CL:0011026 progenitor cell biolink:Cell skos:exactMatch CL:0011026 progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2661","subject_information_content":63.23414498384174} +CL:0001052 CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell biolink:Cell skos:exactMatch CL:0001052 CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2662","subject_information_content":94.92072406280138} +CL:0000293 structural cell biolink:Cell skos:exactMatch CL:0000293 structural cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2663","subject_information_content":91.94953810872488} +UMLS:C1516399 Cerebriform Lymphocyte biolink:Cell skos:exactMatch NCIT:C39621 Cerebriform Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2664","subject_information_content":91.94953810872488,"identifierIndex":0} +MESH:D009504 Neutrophils biolink:Cell skos:exactMatch MESH:D009504 Neutrophils biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2665"} +CL:0002394 CD141-positive myeloid dendritic cell biolink:Cell skos:exactMatch CL:0002394 CD141-positive myeloid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2666","subject_information_content":100.0} +UMLS:C5177476 Plasma cells/100 leukocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177476 Plasma cells/100 leukocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2667"} +CL:0000060 odontoblast biolink:Cell skos:exactMatch CL:0000060 odontoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2668","subject_information_content":91.94953810872488} +CL:0000886 nasal and broncial associated lymphoid tissue macrophage biolink:Cell skos:exactMatch CL:0000886 nasal and broncial associated lymphoid tissue macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2669","subject_information_content":100.0} +CL:0002201 renal beta-intercalated cell biolink:Cell skos:exactMatch CL:0002201 renal beta-intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2670","subject_information_content":100.0} +UMLS:C4696700 Cells.CD19+CD27+ biolink:Cell skos:exactMatch UMLS:C4696700 Cells.CD19+CD27+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2671"} +UMLS:C1183980 Chromaffin cell of ovary biolink:Cell skos:exactMatch UMLS:C1183980 Chromaffin cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2672"} +UMLS:C4055234 Circulating Clonotypic B-Cell biolink:Cell skos:exactMatch NCIT:C120462 Circulating Clonotypic B-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2673","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216225 Leukocytes other|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216225 Leukocytes other|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2674"} +UMLS:C1183358 Type-2 epithelial cell of thymus biolink:Cell skos:exactMatch UMLS:C1183358 Type-2 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2675"} +UMLS:C1267898 Lymphocyte positive for both CD25 antigen and CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:116731001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2676","identifierIndex":0} +UMLS:C3496269 B6 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496269 B6 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2677"} +UMLS:C4329516 CD8+NKG2D+ AKT Cell biolink:Cell skos:exactMatch NCIT:C132027 CD8+NKG2D+ AKT Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2678","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225360 Myofibroblasts biolink:Cell skos:exactMatch NCIT:C33153 Myofibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2679","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171867 Macrophages | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171867 Macrophages | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2680"} +CL:0002029 Fc-epsilon RIalpha-low mast cell progenitor biolink:Cell skos:exactMatch CL:0002029 Fc-epsilon RIalpha-low mast cell progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2681","subject_information_content":100.0} +CL:0002432 CD24-positive, CD4 single-positive thymocyte biolink:Cell skos:exactMatch CL:0002432 CD24-positive, CD4 single-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2682","subject_information_content":100.0} +UMLS:C1513729 Mucus-Secreting Cell biolink:Cell skos:exactMatch NCIT:C13142 Mucus-Secreting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2683","subject_information_content":100.0,"identifierIndex":0} +CL:0000615 basidiospore biolink:Cell skos:exactMatch CL:0000615 basidiospore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2684","subject_information_content":100.0} +UMLS:C1522252 Ovary - Granulosa Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22662 Mouse Granulosa Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2685","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12540 Type 2 Helper Cell biolink:Cell skos:exactMatch NCIT:C12540 Type 2 Helper Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2686","subject_information_content":100.0} +UMLS:C5216228 Leukocytes other|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216228 Leukocytes other|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2687"} +UMLS:C1267886 Lymphocyte positive for CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:116851009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2688","identifierIndex":0} +UMLS:C0225360 Myofibroblasts biolink:Cell skos:exactMatch MESH:D058628 Myofibroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2679","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0024156 Luteal Cells biolink:Cell skos:exactMatch NCIT:C12610 Lutein Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2689","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1979640 Blast cell positive for CD23 antigen biolink:Cell skos:exactMatch SNOMEDCT:724265007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2690","identifierIndex":0} +UMLS:C2326176 Set of serotoninergic cells biolink:Cell skos:exactMatch UMLS:C2326176 Set of serotoninergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2691"} +UMLS:C1440396 Cells.SmIg-CD79 biolink:Cell skos:exactMatch UMLS:C1440396 Cells.SmIg-CD79 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2692"} +UMLS:C1267852 Lymphocyte positive for CD7 antigen biolink:Cell skos:exactMatch SNOMEDCT:117538001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2693","identifierIndex":0} +UMLS:C5238373 Allogeneic NKG2DL-targeting CAR-grafted Gamma Delta T Cells biolink:Cell skos:exactMatch NCIT:C167220 Allogeneic NKG2DL-targeting CAR-grafted Gamma Delta T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2694","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440143 Blasts.CD19 biolink:Cell skos:exactMatch UMLS:C1440143 Blasts.CD19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2695"} +MESH:D000090002 Stromal Vascular Fraction biolink:Cell skos:exactMatch MESH:D000090002 Stromal Vascular Fraction biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2696"} +UMLS:C1182616 Neurecto-epithelial cell biolink:Cell skos:exactMatch UMLS:C1182616 Neurecto-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2697"} +UMLS:C0225360 Myofibroblasts biolink:Cell skos:exactMatch SNOMEDCT:56790003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2679","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0024156 Luteal Cells biolink:Cell skos:exactMatch MESH:D008184 Luteal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2689","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1708918 Malignant Squamoid Cell biolink:Cell skos:exactMatch NCIT:C47808 Malignant Squamoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2698","subject_information_content":100.0,"identifierIndex":0} +CL:4023077 bitufted neuron biolink:Cell skos:exactMatch CL:4023077 bitufted neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2699","subject_information_content":100.0} +UMLS:C5157927 Cells | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5157927 Cells | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2700"} +UMLS:C3824982 Pancreatic acinar cells--Cancer biolink:Cell skos:exactMatch UMLS:C3824982 Pancreatic acinar cells--Cancer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2701"} +CL:0000834 neutrophil progenitor cell biolink:Cell skos:exactMatch CL:0000834 neutrophil progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2702","subject_information_content":91.94953810872488} +CL:0000732 amoeboid cell biolink:Cell skos:exactMatch CL:0000732 amoeboid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2703","subject_information_content":100.0} +UMLS:C0524457 Structure of endometrial glandular cell biolink:Cell skos:exactMatch NCIT:C32515 Endometrial Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2704","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522237 Thyroid Gland - Parafollicular Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22651 Mouse Thyroid Gland Parafollicular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2705","subject_information_content":100.0,"identifierIndex":0} +CL:0001071 group 3 innate lymphoid cell biolink:Cell skos:exactMatch CL:0001071 group 3 innate lymphoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2706","subject_information_content":88.2062864997332} +UMLS:C5216213 Erythrocytes|NCnc|Pt|Dial fld biolink:Cell skos:exactMatch UMLS:C5216213 Erythrocytes|NCnc|Pt|Dial fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2707"} +UMLS:C5216290 Neutrophils|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216290 Neutrophils|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2708"} +UMLS:C1514115 Neoplastic Transitional Cell biolink:Cell skos:exactMatch NCIT:C36768 Neoplastic Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2709","subject_information_content":83.89907621744979,"identifierIndex":0} +UMLS:C5216219 Erythrocytes|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216219 Erythrocytes|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2710"} +UMLS:C1440316 Cells.CD45RB biolink:Cell skos:exactMatch UMLS:C1440316 Cells.CD45RB biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2711"} +UMLS:C3178783 Serotonergic Neurons biolink:Cell skos:exactMatch MESH:D059326 Serotonergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2712","identifierIndex":0} +CL:2000012 fibroblast of pedal digit skin biolink:Cell skos:exactMatch CL:2000012 fibroblast of pedal digit skin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2713","subject_information_content":100.0} +UMLS:C0524457 Structure of endometrial glandular cell biolink:Cell skos:exactMatch SNOMEDCT:91768008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2704","subject_information_content":100.0,"identifierIndex":1} +CL:0002464 SIRPa-negative adipose dendritic cell biolink:Cell skos:exactMatch CL:0002464 SIRPa-negative adipose dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2714","subject_information_content":100.0} +UMLS:C4726563 Autologous E6 T Cell Receptor Genetically-modified T Cells biolink:Cell skos:exactMatch NCIT:C151936 Autologous E6 T Cell Receptor Genetically-modified T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2715","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157273 CD11c+CD103+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157273 CD11c+CD103+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2716"} +UMLS:C5446527 Autologous Anti-kappa Light Chain CAR-CD28-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C175446 Autologous Anti-kappa Light Chain CAR-CD28-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2717","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517732 Large Keratinocyte biolink:Cell skos:exactMatch NCIT:C36750 Large Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2718","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2924220 Cells.CD11c+CD103+ biolink:Cell skos:exactMatch UMLS:C2924220 Cells.CD11c+CD103+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2719"} +UMLS:C2987399 Anti-CD3 x Anti-CD20 Bispecific Antibody-Armed Activated T Cells biolink:Cell skos:exactMatch NCIT:C95751 Anti-CD3 x Anti-CD20 Bispecific Antibody-Armed Activated T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2720","subject_information_content":100.0,"identifierIndex":0} +CL:0002557 fibroblast of pulmonary artery biolink:Cell skos:exactMatch CL:0002557 fibroblast of pulmonary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2721","subject_information_content":100.0} +CL:0000186 myofibroblast cell biolink:Cell skos:exactMatch CL:0000186 myofibroblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2722","subject_information_content":91.94953810872488} +CL:1000893 kidney venous blood vessel cell biolink:Cell skos:exactMatch CL:1000893 kidney venous blood vessel cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2723","subject_information_content":78.81980028025117} +CL:4023069 medial ganglionic eminence derived GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023069 medial ganglionic eminence derived GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2724","subject_information_content":100.0} +UMLS:C1514112 Neoplastic T-Prolymphocyte biolink:Cell skos:exactMatch NCIT:C37184 Neoplastic T-Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2725","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000582 neutrophilic metamyelocyte biolink:Cell skos:exactMatch CL:0000582 neutrophilic metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2726","subject_information_content":100.0} +UMLS:C1267909 Lymphoblast positive for CD34 antigen biolink:Cell skos:exactMatch SNOMEDCT:117580002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2727","identifierIndex":0} +UMLS:C1513939 Neoplastic Chondrocyte biolink:Cell skos:exactMatch NCIT:C36983 Neoplastic Chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2728","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C1440374 Cells.CD98 biolink:Cell skos:exactMatch UMLS:C1440374 Cells.CD98 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2729"} +UMLS:C0486825 Germ cells.immature biolink:Cell skos:exactMatch UMLS:C0486825 Germ cells.immature biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2730"} +CL:0000190 fast muscle cell biolink:Cell skos:exactMatch CL:0000190 fast muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2731","subject_information_content":88.2062864997332} +CL:0002610 raphe nuclei neuron biolink:Cell skos:exactMatch CL:0002610 raphe nuclei neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2732","subject_information_content":100.0} +UMLS:C5171872 Macrophages | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171872 Macrophages | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2733"} +CL:0009064 lymph node paracortex T cell biolink:Cell skos:exactMatch CL:0009064 lymph node paracortex T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2734","subject_information_content":100.0} +UMLS:C5401387 Autologous Blinatumomab-expanded T-Cells biolink:Cell skos:exactMatch NCIT:C170899 Autologous Blinatumomab-expanded T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2735","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2736937 Cells.CD8+CD45RA+ biolink:Cell skos:exactMatch UMLS:C2736937 Cells.CD8+CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2736"} +CL:1000850 macula densa epithelial cell biolink:Cell skos:exactMatch CL:1000850 macula densa epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2737","subject_information_content":100.0} +UMLS:C4725102 Autologous CD123-4SCAR-expressing T-cells 4SCAR123 biolink:Cell skos:exactMatch NCIT:C148526 Autologous CD123-4SCAR-expressing T-cells 4SCAR123 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2738","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5447599 Umbilical Cord Blood-derived CD16-expressing Natural Killer Cells AB-101 biolink:Cell skos:exactMatch NCIT:C177152 Umbilical Cord Blood-derived CD16-expressing Natural Killer Cells AB-101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2739","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709903 Renal Tumor-Reactive Autologous Peripheral Blood Lymphocyte biolink:Cell skos:exactMatch NCIT:C48816 Renal Tumor-Reactive Autologous Peripheral Blood Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2740","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0947505 Cells.CD30 biolink:Cell skos:exactMatch UMLS:C0947505 Cells.CD30 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2741"} +UMLS:C0598088 continuous cell line biolink:Cell skos:exactMatch UMLS:C0598088 continuous cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2742"} +CL:0002042 immature NK T cell stage IV biolink:Cell skos:exactMatch CL:0002042 immature NK T cell stage IV biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2743","subject_information_content":100.0} +UMLS:C5157574 CD45 (Lymphs) cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157574 CD45 (Lymphs) cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2744"} +UMLS:C4727433 Allogeneic CD34-positive E-rosetted T-cell Depleted Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C153885 Allogeneic CD34-positive E-rosetted T-cell Depleted Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2745","subject_information_content":100.0,"identifierIndex":0} +CL:0011111 gonadotropin releasing neuron biolink:Cell skos:exactMatch CL:0011111 gonadotropin releasing neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2746","subject_information_content":100.0} +UMLS:C1513745 Multinucleated Keratinocyte biolink:Cell skos:exactMatch NCIT:C36748 Multinucleated Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2747","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4055455 Anti-mesothelin iCasp9M28z CAR-transduced Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C121782 Anti-mesothelin iCasp9M28z CAR-transduced Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2748","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708872 Malignant Epithelial Cell with Ground Glass Cytoplasm biolink:Cell skos:exactMatch NCIT:C54589 Malignant Epithelial Cell with Ground Glass Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2749","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0596630 granule cell biolink:Cell skos:exactMatch UMLS:C0596630 granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2750"} +UMLS:C5178092 Prekeratocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178092 Prekeratocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2751"} +CL:0000084 T cell biolink:Cell skos:exactMatch CL:0000084 T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2752","subject_information_content":63.33185104743484} +CL:0002431 CD4-positive, CD8-intermediate double-positive thymocyte biolink:Cell skos:exactMatch CL:0002431 CD4-positive, CD8-intermediate double-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2753","subject_information_content":100.0} +UMLS:C1979644 Blasts.CD30 biolink:Cell skos:exactMatch UMLS:C1979644 Blasts.CD30 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2754"} +UMLS:C3827113 Autologous Peripheral Blood Lymphocytes Cotransduced with Retroviral Vectors Encoding Inducible IL-12 and Anti-NY-ESO-1 TCR biolink:Cell skos:exactMatch NCIT:C113161 Autologous Peripheral Blood Lymphocytes Cotransduced with Retroviral Vectors Encoding Inducible IL-12 and Anti-NY-ESO-1 TCR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2755","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1882046 Neoplastic Eccrine Cell biolink:Cell skos:exactMatch NCIT:C62495 Neoplastic Eccrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2756","subject_information_content":91.94953810872488,"identifierIndex":0} +NCIT:C12536 Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C12536 Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2757","subject_information_content":89.84144812560278} +CL:0002035 Slamf1-negative multipotent progenitor cell biolink:Cell skos:exactMatch CL:0002035 Slamf1-negative multipotent progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2758","subject_information_content":100.0} +UMLS:C0682523 Human Cell Line biolink:Cell skos:exactMatch NCIT:C20218 Human Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2759","subject_information_content":63.28283517099269,"identifierIndex":0} +CL:0009030 enteroendocrine cell of appendix biolink:Cell skos:exactMatch CL:0009030 enteroendocrine cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2760","subject_information_content":100.0} +UMLS:C0882871 Cells.CD41 biolink:Cell skos:exactMatch UMLS:C0882871 Cells.CD41 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2761"} +UMLS:C5180941 Siderocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180941 Siderocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2762"} +UMLS:C1881552 Malignant Epithelial Small Oval Cell biolink:Cell skos:exactMatch NCIT:C60999 Malignant Epithelial Small Oval Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2763","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0005773 Blood Cells biolink:Cell skos:exactMatch NCIT:C12519 Peripheral Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2764","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C1512310 HL60 biolink:Cell skos:exactMatch NCIT:C19433 HL60 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2765","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522529 Islet Cell biolink:Cell skos:exactMatch NCIT:C32885 Islet Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2766","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:1000245 posterior lateral line ganglion neuron biolink:Cell skos:exactMatch CL:1000245 posterior lateral line ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2767","subject_information_content":100.0} +UMLS:C4055459 Anti-GPC3-CAR Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C121638 Anti-GPC3-CAR Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2768","subject_information_content":100.0,"identifierIndex":0} +CL:0011013 motile sperm cell biolink:Cell skos:exactMatch CL:0011013 motile sperm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2769","subject_information_content":91.94953810872488} +UMLS:C3831561 Allogeneic HLA-A2/4-1BB ligand-expressing Melanoma Vaccine biolink:Cell skos:exactMatch NCIT:C107169 Allogeneic HLA-A2/4-1BB ligand-expressing Melanoma Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2770","subject_information_content":100.0,"identifierIndex":0} +MESH:D019861 Enterochromaffin-like Cells biolink:Cell skos:exactMatch MESH:D019861 Enterochromaffin-like Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2771"} +UMLS:C0882904 Cells.CD57 biolink:Cell skos:exactMatch UMLS:C0882904 Cells.CD57 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2772"} +UMLS:C1518275 Neuroendocrine Cells biolink:Cell skos:exactMatch NCIT:C12485 Neuroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2773","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C1514657 RL13 biolink:Cell skos:exactMatch NCIT:C20291 RL13 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2774","subject_information_content":100.0,"identifierIndex":0} +CL:0002002 Kit-positive granulocyte monocyte progenitor biolink:Cell skos:exactMatch CL:0002002 Kit-positive granulocyte monocyte progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2775","subject_information_content":100.0} +UMLS:C1522529 Islet Cell biolink:Cell skos:exactMatch SNOMEDCT:360555004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2766","subject_information_content":89.84144812560278,"identifierIndex":1} +UMLS:C5184397 Unidentified cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184397 Unidentified cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2776"} +UMLS:C4696688 Cells.CD19+CD27+IgD-IgM+ biolink:Cell skos:exactMatch UMLS:C4696688 Cells.CD19+CD27+IgD-IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2777"} +CL:0002399 CD1c-positive myeloid dendritic cell biolink:Cell skos:exactMatch CL:0002399 CD1c-positive myeloid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2778","subject_information_content":100.0} +CL:1000321 large intestine crypt goblet cell biolink:Cell skos:exactMatch CL:1000321 large intestine crypt goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2779","subject_information_content":100.0} +UMLS:C0003649 APUD Cells biolink:Cell skos:exactMatch NCIT:C12655 APUD Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2780","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513066 Neoplastic Medium-Sized B-Lymphocyte with Eccentric Basophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37006 Neoplastic Medium-Sized B-Lymphocyte with Eccentric Basophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2781","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518275 Neuroendocrine Cells biolink:Cell skos:exactMatch MESH:D055099 Neuroendocrine Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2773","subject_information_content":78.42360399800205,"identifierIndex":1} +UMLS:C5186974 Reticulocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186974 Reticulocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2782"} +UMLS:C4322828 Set of corpuscles of colostrum biolink:Cell skos:exactMatch UMLS:C4322828 Set of corpuscles of colostrum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2783"} +CL:0001028 CD7-positive lymphoid progenitor cell biolink:Cell skos:exactMatch CL:0001028 CD7-positive lymphoid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2784","subject_information_content":100.0} +CL:0002373 growth hormone releasing hormone secreting cell biolink:Cell skos:exactMatch CL:0002373 growth hormone releasing hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2785","subject_information_content":100.0} +UMLS:C5177780 Polymorphonuclear cells | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177780 Polymorphonuclear cells | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2786"} +UMLS:C2340535 Spiny stellate cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2340535 Spiny stellate cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2787"} +UMLS:C0682642 fixed or free macrophage biolink:Cell skos:exactMatch UMLS:C0682642 fixed or free macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2788"} +UMLS:C0003649 APUD Cells biolink:Cell skos:exactMatch MESH:D001078 APUD Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2780","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1514116 Neoplastic Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C36803 Neoplastic Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2789","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1518367 Non-Keratinizing Malignant Large Squamous Cell biolink:Cell skos:exactMatch NCIT:C36793 Non-Keratinizing Malignant Large Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2790","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4510902 Blast cell positive for CD11a antigen biolink:Cell skos:exactMatch SNOMEDCT:724244001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2791","identifierIndex":0} +UMLS:C0483184 CD16+CD57+ biolink:Cell skos:exactMatch UMLS:C0483184 CD16+CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2792"} +UMLS:C1440267 CD19+Kappa+ cell biolink:Cell skos:exactMatch SNOMEDCT:732277006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2793","identifierIndex":0} +CL:0000559 promonocyte biolink:Cell skos:exactMatch CL:0000559 promonocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2794","subject_information_content":100.0} +UMLS:C1267795 Mononuclear cell (histiocyte, lymphocyte, plasma cell) biolink:Cell skos:exactMatch SNOMEDCT:116711000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2795","identifierIndex":0} +UMLS:C1513994 Neoplastic Langerhans Cell biolink:Cell skos:exactMatch NCIT:C36889 Neoplastic Langerhans Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2796","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1519004 Peripheral (Post-Thymic) T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38434 Peripheral (Post-Thymic) T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2797","subject_information_content":72.78751502065317,"identifierIndex":0} +CL:0000631 labyrinth supporting cell biolink:Cell skos:exactMatch CL:0000631 labyrinth supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2798","subject_information_content":100.0} +UMLS:C5155168 Blasts | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155168 Blasts | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2799"} +UMLS:C2322797 Parasympathetic ganglion neuron biolink:Cell skos:exactMatch UMLS:C2322797 Parasympathetic ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2800"} +UMLS:C3826992 Immature Myeloid Cell biolink:Cell skos:exactMatch NCIT:C113503 Immature Myeloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2801","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170922 Leukocytes | Bronchial | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170922 Leukocytes | Bronchial | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2802"} +UMLS:C1440366 Cells.CD9 biolink:Cell skos:exactMatch UMLS:C1440366 Cells.CD9 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2803"} +UMLS:C4241119 Mesencephalic neural crest cell biolink:Cell skos:exactMatch UMLS:C4241119 Mesencephalic neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2804"} +UMLS:C0427526 Large granular lymphocyte biolink:Cell skos:exactMatch NCIT:C12921 Large Granular Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2805","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1440329 Cells.CD50 biolink:Cell skos:exactMatch UMLS:C1440329 Cells.CD50 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2806"} +UMLS:C1510716 Abnormal Connective and Soft Tissue Cell biolink:Cell skos:exactMatch NCIT:C36843 Abnormal Connective and Soft Tissue Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2807","subject_information_content":63.04255639222701,"identifierIndex":0} +CL:1000384 type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell skos:exactMatch CL:1000384 type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2808","subject_information_content":100.0} +UMLS:C5216255 Lymphocytes|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216255 Lymphocytes|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2809"} +UMLS:C1510725 Abnormal Hematopoietic and Lymphoid Cell biolink:Cell skos:exactMatch NCIT:C36987 Abnormal Hematopoietic and Lymphoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2810","subject_information_content":61.36027019105004,"identifierIndex":0} +UMLS:C1708112 Fusiform Melanocyte biolink:Cell skos:exactMatch NCIT:C54078 Fusiform Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2811","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182708 Epithelial cell of stratum germinativum of esophagus biolink:Cell skos:exactMatch UMLS:C1182708 Epithelial cell of stratum germinativum of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2812"} +UMLS:C5163544 Epithelial cells | Vaginal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163544 Epithelial cells | Vaginal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2813"} +UMLS:C1512553 Hypergranular Promyelocyte biolink:Cell skos:exactMatch NCIT:C37073 Hypergranular Promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2814","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0427526 Large granular lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:250285008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2805","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C0933800 Microvillus columnar cell biolink:Cell skos:exactMatch UMLS:C0933800 Microvillus columnar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2815"} +UMLS:C1182627 Epithelial cell of gingival part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182627 Epithelial cell of gingival part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2816"} +UMLS:C1511446 Mouse Oligodendroglial Cell biolink:Cell skos:exactMatch NCIT:C22620 Mouse Oligodendroglial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2817","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4518151 Population of all spermatozoa with angled midpiece in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725236008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2818","identifierIndex":0} +UMLS:C4263663 B-cell CD27 & IgD subsets biolink:Cell skos:exactMatch UMLS:C4263663 B-cell CD27 & IgD subsets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2819"} +UMLS:C0229614 Prolymphocyte (cell) biolink:Cell skos:exactMatch NCIT:C13119 Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2820","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000895 naive thymus-derived CD4-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000895 naive thymus-derived CD4-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2821","subject_information_content":100.0} +UMLS:C4329370 Autologous ICASP9-CD19-expressing T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C131214 Autologous iCasp9-deltaNGFR-CD19CAR-expressing T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2822","subject_information_content":100.0,"identifierIndex":0} +CL:0000197 sensory receptor cell biolink:Cell skos:exactMatch CL:0000197 sensory receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2823","subject_information_content":67.1907644114757} +UMLS:C1182710 Epithelial cell of stratum corneum of esophagus biolink:Cell skos:exactMatch UMLS:C1182710 Epithelial cell of stratum corneum of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2824"} +UMLS:C0333821 Micromyeloblast biolink:Cell skos:exactMatch SNOMEDCT:19651007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2825","identifierIndex":0} +CL:0002585 retinal blood vessel endothelial cell biolink:Cell skos:exactMatch CL:0002585 retinal blood vessel endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2826","subject_information_content":100.0} +CL:0002362 granule cell precursor biolink:Cell skos:exactMatch CL:0002362 granule cell precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2827","subject_information_content":100.0} +UMLS:C2335706 Interleukin 2-activated natural killer cell biolink:Cell skos:exactMatch UMLS:C2335706 Interleukin 2-activated natural killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2828"} +UMLS:C2333238 Microfold cell of epithelium proper of jejunum biolink:Cell skos:exactMatch UMLS:C2333238 Microfold cell of epithelium proper of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2829"} +UMLS:C0229614 Prolymphocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:19394005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2820","subject_information_content":91.94953810872488,"identifierIndex":1} +CL:0002495 fetal cardiomyocyte biolink:Cell skos:exactMatch CL:0002495 fetal cardiomyocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2830","subject_information_content":100.0} +CL:0000916 dendritic epidermal T cell biolink:Cell skos:exactMatch CL:0000916 dendritic epidermal T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2831","subject_information_content":100.0} +UMLS:C5417706 Allogeneic Glial Progenitor Cells biolink:Cell skos:exactMatch UMLS:C5417765 Q-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2832","subject_information_content":100.0,"identifierIndex":0} +CL:1001587 uterine cervix glandular cell biolink:Cell skos:exactMatch CL:1001587 uterine cervix glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2833","subject_information_content":100.0} +CL:0000671 centripetally migrating follicle cell biolink:Cell skos:exactMatch CL:0000671 centripetally migrating follicle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2834","subject_information_content":100.0} +CL:1000310 adipocyte of epicardial fat of right ventricle biolink:Cell skos:exactMatch CL:1000310 adipocyte of epicardial fat of right ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2835","subject_information_content":100.0} +UMLS:C2336924 Myocardial endocrine cell of atrium biolink:Cell skos:exactMatch UMLS:C2336924 Myocardial endocrine cell of atrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2836"} +UMLS:C1516898 Eosinophil Precursor Cell biolink:Cell skos:exactMatch NCIT:C41177 Eosinophil Precursor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2837","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513172 Metaplastic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36816 Metaplastic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2838","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C1267805 HLE+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117509004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2839","identifierIndex":0} +UMLS:C1267896 Lymphocyte positive for CD24 antigen biolink:Cell skos:exactMatch SNOMEDCT:117569002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2840","identifierIndex":0} +UMLS:C2338017 Neuron of retina biolink:Cell skos:exactMatch UMLS:C2338017 Neuron of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2841"} +UMLS:C5417706 Allogeneic Glial Progenitor Cells biolink:Cell skos:exactMatch NCIT:C172061 Allogeneic Glial Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2832","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4744691 Partially HLA-matched AdV/CMV/EBV-specific Allogeneic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C156256 Partially HLA-matched AdV/CMV/EBV-specific Allogeneic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2842","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4316814 Pelger Huet cell -- cell biolink:Cell skos:exactMatch NCIT:C36721 Pelger-Huet Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2843","subject_information_content":100.0,"identifierIndex":0} +CL:1000434 epithelial cell of external acoustic meatus biolink:Cell skos:exactMatch CL:1000434 epithelial cell of external acoustic meatus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2844","subject_information_content":100.0} +UMLS:C0229650 Megakaryoblasts biolink:Cell skos:exactMatch NCIT:C13122 Megakaryoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2845","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519907 Vacuolated Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37091 Vacuolated Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2846","subject_information_content":100.0,"identifierIndex":0} +CL:0008012 quiescent skeletal muscle satellite cell biolink:Cell skos:exactMatch CL:0008012 quiescent skeletal muscle satellite cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2847","subject_information_content":100.0} +UMLS:C5157282 CD123 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157282 CD123 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2848"} +UMLS:C5216289 Neutrophils.segmented|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216289 Neutrophils.segmented|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2849"} +UMLS:C5216204 Eosinophils|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216204 Eosinophils|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2850"} +CL:2000068 pericardium fibroblast biolink:Cell skos:exactMatch CL:2000068 pericardium fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2851","subject_information_content":100.0} +CL:0009042 enteroendocrine cell of colon biolink:Cell skos:exactMatch CL:0009042 enteroendocrine cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2852","subject_information_content":94.92072406280138} +UMLS:C4316814 Pelger Huet cell -- cell biolink:Cell skos:exactMatch SNOMEDCT:726587004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2843","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1518223 Malignant Neuroendocrine Small Cell with Round Nucleus biolink:Cell skos:exactMatch NCIT:C36853 Malignant Neuroendocrine Small Cell with Round Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2853","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229650 Megakaryoblasts biolink:Cell skos:exactMatch SNOMEDCT:27852005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2845","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4725930 Autologous Ovarian Cancer Immunogene-modified T Lymphocytes biolink:Cell skos:exactMatch NCIT:C150696 Autologous Ovarian Cancer Immunogene-modified T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2854","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1444184 Entire cleidoic ovum biolink:Cell skos:exactMatch UMLS:C1444184 Entire cleidoic ovum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2855"} +UMLS:C2950600 Type D cell of jejunum biolink:Cell skos:exactMatch UMLS:C2950600 Type D cell of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2856"} +CL:0002332 ciliated cell of the bronchus biolink:Cell skos:exactMatch CL:0002332 ciliated cell of the bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2857","subject_information_content":100.0} +MESH:D008547 Melanophores biolink:Cell skos:exactMatch MESH:D008547 Melanophores biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2858"} +CL:1000497 kidney cell biolink:Cell skos:exactMatch CL:1000497 kidney cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2859","subject_information_content":64.50254203780973} +UMLS:C0945928 Cell positive for CD38 antigen biolink:Cell skos:exactMatch SNOMEDCT:116827004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2860","identifierIndex":0} +UMLS:C2323958 Double bouquet cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2323958 Double bouquet cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2861"} +UMLS:C1709185 Neoplastic Mature Adipocyte biolink:Cell skos:exactMatch NCIT:C48897 Neoplastic Mature Adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2862","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515889 Mouse Adrenal Subcapsular Cell biolink:Cell skos:exactMatch NCIT:C22638 Mouse Adrenal Subcapsular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2863","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0521184 Atypical squamous cells of uncertain significance biolink:Cell skos:exactMatch NCIT:C8434 Atypical Squamous Cell of Undetermined Significance biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2864","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1520156 Wisconsin ES Cell Line biolink:Cell skos:exactMatch NCIT:C20307 Wisconsin ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2865","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C1148326 CD25 cells biolink:Cell skos:exactMatch UMLS:C1148326 CD25 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2866"} +CL:0010009 camera-type eye photoreceptor cell biolink:Cell skos:exactMatch CL:0010009 camera-type eye photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2867","subject_information_content":91.94953810872488} +CL:0000150 glandular epithelial cell biolink:Cell skos:exactMatch CL:0000150 glandular epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2868","subject_information_content":64.00082053464784} +UMLS:C5157265 CD11a blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157265 CD11a blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2869"} +UMLS:C1709164 Neoplastic Blast Coexpressing Myeloid and Lymphoid Lineage Antigens biolink:Cell skos:exactMatch NCIT:C42875 Neoplastic Blast Coexpressing Myeloid and Lymphoid Lineage Antigens biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2870","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4725828 Allogeneic Most Closely HLA-matched Adenovirus-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C150553 Allogeneic Most Closely HLA-matched Adenovirus-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2871","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216233 Leukocytes|NCnc|Pt|Bronchial biolink:Cell skos:exactMatch UMLS:C5216233 Leukocytes|NCnc|Pt|Bronchial biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2872"} +UMLS:C4322668 CD3-CD16+CD56+ NK lymphocyte biolink:Cell skos:exactMatch UMLS:C4322668 CD3-CD16+CD56+ NK lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2873"} +UMLS:C0521184 Atypical squamous cells of uncertain significance biolink:Cell skos:exactMatch SNOMEDCT:39035006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2864","subject_information_content":100.0,"identifierIndex":1} +CL:0000442 follicular dendritic cell biolink:Cell skos:exactMatch CL:0000442 follicular dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2874","subject_information_content":94.92072406280138} +UMLS:C5157631 CD61 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157631 CD61 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2875"} +UMLS:C5186810 Metamyelocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186810 Metamyelocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2876"} +CL:0000996 mature CD11c-negative plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000996 mature CD11c-negative plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2877","subject_information_content":100.0} +CL:0000898 naive T cell biolink:Cell skos:exactMatch CL:0000898 naive T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2878","subject_information_content":88.2062864997332} +UMLS:C0023172 Lupus erythematosus cell biolink:Cell skos:exactMatch UMLS:C0023172 Lupus erythematosus cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2879"} +CL:0000928 activated CD4-negative, CD8-negative type I NK T cell biolink:Cell skos:exactMatch CL:0000928 activated CD4-negative, CD8-negative type I NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2880","subject_information_content":100.0} +UMLS:C2350175 Erythroid Progenitor Cells biolink:Cell skos:exactMatch NCIT:C12526 Erythroid Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2881","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0032112 Plasma Cells biolink:Cell skos:exactMatch NCIT:C12486 Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2882","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:1000504 kidney medulla cell biolink:Cell skos:exactMatch CL:1000504 kidney medulla cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2883","subject_information_content":69.99727273406087} +UMLS:C5216267 Metamyelocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216267 Metamyelocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2884"} +UMLS:C5426720 Viable CD45 cells biolink:Cell skos:exactMatch UMLS:C5426720 Viable CD45 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2885"} +UMLS:C5163725 Erythrocytes | Seminal plasma | Fertility testing biolink:Cell skos:exactMatch UMLS:C5163725 Erythrocytes | Seminal plasma | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2886"} +UMLS:C1277066 Entire Sertoli cell biolink:Cell skos:exactMatch SNOMEDCT:367716000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2887","identifierIndex":0} +UMLS:C1518019 Low Grade Malignant Transitional Cell biolink:Cell skos:exactMatch NCIT:C36839 Low Grade Malignant Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2888","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0598102 polarized cell biolink:Cell skos:exactMatch UMLS:C0598102 polarized cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2889"} +UMLS:C0524456 Structure of endocervical glandular cell biolink:Cell skos:exactMatch SNOMEDCT:91767003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2890","identifierIndex":0} +CL:0002544 aortic endothelial cell biolink:Cell skos:exactMatch CL:0002544 aortic endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2891","subject_information_content":94.92072406280138} +UMLS:C0032112 Plasma Cells biolink:Cell skos:exactMatch MESH:D010950 Plasma Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2882","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:0002371 somatic cell biolink:Cell skos:exactMatch CL:0002371 somatic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2892","subject_information_content":44.081597049772775} +CL:1000323 pyloric gastric gland goblet cell biolink:Cell skos:exactMatch CL:1000323 pyloric gastric gland goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2893","subject_information_content":100.0} +UMLS:C0545587 Blood large lymphocyte biolink:Cell skos:exactMatch UMLS:C0545587 Blood large lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2894"} +UMLS:C2330671 Goblet cell of epithelium of large intestine biolink:Cell skos:exactMatch UMLS:C2330671 Goblet cell of epithelium of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2895"} +CL:0000018 spermatid biolink:Cell skos:exactMatch CL:0000018 spermatid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2896","subject_information_content":100.0} +UMLS:C1440149 Blasts.CD7 biolink:Cell skos:exactMatch UMLS:C1440149 Blasts.CD7 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2897"} +CL:0002584 renal cortical epithelial cell biolink:Cell skos:exactMatch CL:0002584 renal cortical epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2898","subject_information_content":68.86768025975131} +UMLS:C5157444 CD3+CD4+CD45RO+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157444 CD3+CD4+CD45RO+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2899"} +CL:0000946 antibody secreting cell biolink:Cell skos:exactMatch CL:0000946 antibody secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2900","subject_information_content":77.69020780594161} +UMLS:C0032112 Plasma Cells biolink:Cell skos:exactMatch SNOMEDCT:113335003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2882","subject_information_content":94.92072406280138,"identifierIndex":2} +UMLS:C4322679 Chromosome sex pair biolink:Cell skos:exactMatch UMLS:C4322679 Chromosome sex pair biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2901"} +CL:0002506 liver CD103-positive dendritic cell biolink:Cell skos:exactMatch CL:0002506 liver CD103-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2902","subject_information_content":100.0} +UMLS:C1881590 Malignant Round Germ Cell with Glycogen-Rich Cytoplasm and Round Nucleus biolink:Cell skos:exactMatch NCIT:C61064 Malignant Round Germ Cell with Glycogen-Rich Cytoplasm and Round Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2903","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440242 Cells.CD115 biolink:Cell skos:exactMatch UMLS:C1440242 Cells.CD115 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2904"} +UMLS:C1182604 Stem cell of epidermis biolink:Cell skos:exactMatch UMLS:C1182604 Stem cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2905"} +UMLS:C5178308 Promyelocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178308 Promyelocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2906"} +UMLS:C1624741 Cells.CD3+CD16+CD56+ biolink:Cell skos:exactMatch UMLS:C1624741 Cells.CD3+CD16+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2907"} +UMLS:C1179047 Myoepithelial cell of intralobular lactiferous duct biolink:Cell skos:exactMatch UMLS:C1179047 Myoepithelial cell of intralobular lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2908"} +CL:0000077 mesothelial cell biolink:Cell skos:exactMatch CL:0000077 mesothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2909","subject_information_content":78.42360399800205} +UMLS:C4725931 Autologous Tumor-specific Antigen-loaded Dendritic Cells biolink:Cell skos:exactMatch NCIT:C150697 Autologous Tumor-specific Antigen-loaded Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2910","subject_information_content":100.0,"identifierIndex":0} +CL:0000312 keratinocyte biolink:Cell skos:exactMatch CL:0000312 keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2911","subject_information_content":82.42859222307153} +UMLS:C4684836 Autologous Dendritic Cells Pulsed with MART-1 (26-35) Peptide biolink:Cell skos:exactMatch NCIT:C142814 Autologous Dendritic Cells Pulsed with MART-1 (26-35) Peptide biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2912","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0483182 CD16+CD56+CD3- biolink:Cell skos:exactMatch UMLS:C0483182 CD16+CD56+CD3- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2913"} +CL:0002189 granular cell of epidermis biolink:Cell skos:exactMatch CL:0002189 granular cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2914","subject_information_content":100.0} +UMLS:C5187678 HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 25 mL INTRAVENOUS INJECTION biolink:Cell skos:exactMatch UMLS:C5187678 HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 25 mL INTRAVENOUS INJECTION biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2915"} +CL:0008036 extravillous trophoblast biolink:Cell skos:exactMatch CL:0008036 extravillous trophoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2916","subject_information_content":100.0} +UMLS:C2335115 Epicardial adipocyte biolink:Cell skos:exactMatch UMLS:C2335115 Epicardial adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2917"} +UMLS:C1518075 Lymphokine-activated natural killer cell biolink:Cell skos:exactMatch NCIT:C33041 Lymphokine-Activated Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2918","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5427571 Cones.right biolink:Cell skos:exactMatch UMLS:C5427571 Cones.right biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2919"} +UMLS:C0487770 CD16+CD57- lymphocyte biolink:Cell skos:exactMatch UMLS:C0487770 CD16+CD57- lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2920"} +UMLS:C5380987 Cells.CD8.HLA-B35 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5380987 Cells.CD8.HLA-B35 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2921"} +UMLS:C5418112 Haploidentical Natural Killer Cells K-NK002 biolink:Cell skos:exactMatch NCIT:C175232 Haploidentical Natural Killer Cells K-NK002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2922","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333728 Navicular cell biolink:Cell skos:exactMatch SNOMEDCT:25006003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2923","identifierIndex":0} +UMLS:C0933801 Glandular columnar cell biolink:Cell skos:exactMatch UMLS:C0933801 Glandular columnar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2924"} +CL:2000029 central nervous system neuron biolink:Cell skos:exactMatch CL:2000029 central nervous system neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2925","subject_information_content":66.62989049773527} +MESH:D052940 Merozoites biolink:Cell skos:exactMatch MESH:D052940 Merozoites biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2926"} +CL:0002207 brush cell of trachea biolink:Cell skos:exactMatch CL:0002207 brush cell of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2927","subject_information_content":100.0} +CL:0000075 columnar/cuboidal epithelial cell biolink:Cell skos:exactMatch CL:0000075 columnar/cuboidal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2928","subject_information_content":63.480897125401114} +CL:0000707 R7 photoreceptor cell biolink:Cell skos:exactMatch CL:0000707 R7 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2929","subject_information_content":100.0} +UMLS:C0333822 Microlymphoblast biolink:Cell skos:exactMatch SNOMEDCT:2014001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2930","identifierIndex":0} +CL:1000356 microfold cell of epithelium proper of duodenum biolink:Cell skos:exactMatch CL:1000356 microfold cell of epithelium proper of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2931","subject_information_content":100.0} +UMLS:C0333823 Smudge cell biolink:Cell skos:exactMatch SNOMEDCT:34717007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2932","identifierIndex":0} +CL:0000490 photopic photoreceptor cell biolink:Cell skos:exactMatch CL:0000490 photopic photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2933","subject_information_content":89.84144812560278} +UMLS:C0682702 Cerebellar neuron biolink:Cell skos:exactMatch UMLS:C0682702 Cerebellar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2934"} +MESH:D009804 Odontoblasts biolink:Cell skos:exactMatch MESH:D009804 Odontoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2935"} +UMLS:C1440313 Cells.CD44R biolink:Cell skos:exactMatch UMLS:C1440313 Cells.CD44R biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2936"} +UMLS:C0334140 Rod shaped microglia biolink:Cell skos:exactMatch SNOMEDCT:42723004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2937","identifierIndex":0} +CL:0010000 keratinized cell of hair follicle biolink:Cell skos:exactMatch CL:0010000 keratinized cell of hair follicle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2938","subject_information_content":100.0} +CL:0000098 sensory epithelial cell biolink:Cell skos:exactMatch CL:0000098 sensory epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2939","subject_information_content":71.94430466897393} +CL:0011016 flagellated sperm cell biolink:Cell skos:exactMatch CL:0011016 flagellated sperm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2940","subject_information_content":100.0} +UMLS:C4518162 Population of all immature spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725438007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2941","identifierIndex":0} +CL:1000360 microfold cell of epithelium proper of large intestine biolink:Cell skos:exactMatch CL:1000360 microfold cell of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2942","subject_information_content":91.94953810872488} +UMLS:C1514658 RL15 biolink:Cell skos:exactMatch NCIT:C20292 RL15 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2943","subject_information_content":100.0,"identifierIndex":0} +CL:0000416 polytene cell biolink:Cell skos:exactMatch CL:0000416 polytene cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2944","subject_information_content":100.0} +CL:0000997 immature CD8_alpha-negative CD11b-positive dendritic cell biolink:Cell skos:exactMatch CL:0000997 immature CD8_alpha-negative CD11b-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2945","subject_information_content":100.0} +UMLS:C5203919 Autologous iC9-GD2CAR-CD28-CD3zeta-IL-15-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C158732 Autologous iC9-GD2CAR-CD28-CD3zeta-IL-15-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2946","subject_information_content":100.0,"identifierIndex":0} +MESH:D052939 Schizonts biolink:Cell skos:exactMatch MESH:D052939 Schizonts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2947"} +UMLS:C2330894 Retinal pigment epithelial cell biolink:Cell skos:exactMatch UMLS:C2330894 Retinal pigment epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2948"} +UMLS:C1440337 CD62 Cells biolink:Cell skos:exactMatch UMLS:C1440337 CD62 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2949"} +CL:0002111 CD38-negative unswitched memory B cell biolink:Cell skos:exactMatch CL:0002111 CD38-negative unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2950","subject_information_content":91.94953810872488} +UMLS:C5157381 CD20+CD25- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157381 CD20+CD25- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2951"} +CL:0002132 stromal cell of ovary biolink:Cell skos:exactMatch CL:0002132 stromal cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2952","subject_information_content":83.89907621744979} +UMLS:C1708877 Malignant Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49062 Malignant Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2953","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C2924224 Cells.CD25+C69+ biolink:Cell skos:exactMatch UMLS:C2924224 Cells.CD25+C69+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2954"} +UMLS:C5174645 Neutrophils.segmented/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174645 Neutrophils.segmented/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2955"} +UMLS:C4733231 MFE23 scFv-expressing autologous anti-CEA MFEz T lymphocytes biolink:Cell skos:exactMatch UMLS:C4733231 MFE23 scFv-expressing autologous anti-CEA MFEz T lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2956"} +UMLS:C2336252 Type 2A muscle fiber biolink:Cell skos:exactMatch UMLS:C2336252 Type 2A muscle fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2957"} +UMLS:C5173432 Monocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173432 Monocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2958"} +UMLS:C2339724 Set of cholinergic cells of olfactory tubercle [Ch4] biolink:Cell skos:exactMatch UMLS:C2339724 Set of cholinergic cells of olfactory tubercle [Ch4] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2959"} +UMLS:C0432608 Ringed sideroblast biolink:Cell skos:exactMatch UMLS:C0432608 Ringed sideroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2960"} +UMLS:C1257772 Colony-Forming Units, Erythroid biolink:Cell skos:exactMatch UMLS:C1257772 Colony-Forming Units, Erythroid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2961"} +UMLS:C1518754 Mouse Ovarian Sertoli Cell biolink:Cell skos:exactMatch NCIT:C22665 Mouse Ovarian Sertoli Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2962","subject_information_content":100.0,"identifierIndex":0} +CL:0000520 prokaryotic cell biolink:Cell skos:exactMatch CL:0000520 prokaryotic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2963","subject_information_content":89.84144812560278} +UMLS:C4304630 Population of all acanthocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719690001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2964","identifierIndex":0} +UMLS:C1514044 Neoplastic Neuroendocrine Cell biolink:Cell skos:exactMatch NCIT:C36761 Neoplastic Neuroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2965","subject_information_content":77.34931628587292,"identifierIndex":0} +CL:0002167 olfactory epithelial cell biolink:Cell skos:exactMatch CL:0002167 olfactory epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2966","subject_information_content":88.2062864997332} +UMLS:C1440341 Cells.CD63 biolink:Cell skos:exactMatch UMLS:C1440341 Cells.CD63 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2967"} +UMLS:C0427532 Hypergranular white blood cell biolink:Cell skos:exactMatch SNOMEDCT:250291005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2968","identifierIndex":0} +UMLS:C5216220 Granulocytes.immature|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216220 Granulocytes.immature|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2969"} +UMLS:C0085983 Cell Line, Tumor biolink:Cell skos:exactMatch NCIT:C20313 Tumor Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2970","subject_information_content":69.29885439459781,"identifierIndex":0} +UMLS:C1317558 Agranular neutrophil biolink:Cell skos:exactMatch SNOMEDCT:726589001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2971","identifierIndex":0} +UMLS:C0524987 Chief Cells, Gastric biolink:Cell skos:exactMatch MESH:D019872 Chief Cells, Gastric biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2972","identifierIndex":0} +UMLS:C0806036 Renal epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:115593006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2973","identifierIndex":0} +UMLS:C3898559 MAGE-A3/12-specific TCR Gene-transduced Autologous PBLs biolink:Cell skos:exactMatch NCIT:C116862 MAGE-A3/12-specific TCR Gene-transduced Autologous PBLs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2974","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3656577 Cells.CD158a biolink:Cell skos:exactMatch UMLS:C3656577 Cells.CD158a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2975"} +CL:0000598 pyramidal neuron biolink:Cell skos:exactMatch CL:0000598 pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2976","subject_information_content":78.42360399800205} +CL:0005009 renal principal cell biolink:Cell skos:exactMatch CL:0005009 renal principal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2977","subject_information_content":86.87026217152628} +CL:0000022 female germ line stem cell biolink:Cell skos:exactMatch CL:0000022 female germ line stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2978","subject_information_content":91.94953810872488} +UMLS:C1514034 Neoplastic Myeloblast biolink:Cell skos:exactMatch NCIT:C37065 Neoplastic Myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2979","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C0085983 Cell Line, Tumor biolink:Cell skos:exactMatch MESH:D045744 Cell Line, Tumor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2970","subject_information_content":69.29885439459781,"identifierIndex":1} +CL:0000528 nitrergic neuron biolink:Cell skos:exactMatch CL:0000528 nitrergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2980","subject_information_content":100.0} +CL:0000584 enterocyte biolink:Cell skos:exactMatch CL:0000584 enterocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2981","subject_information_content":80.66139376001811} +UMLS:C5216284 Myelocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216284 Myelocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2982"} +UMLS:C1518246 Malignant Stromal Cell biolink:Cell skos:exactMatch NCIT:C37153 Malignant Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2983","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0545577 Marrow plasma cell biolink:Cell skos:exactMatch UMLS:C0545577 Marrow plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2984"} +MESH:D018069 Hair Cells, Vestibular biolink:Cell skos:exactMatch MESH:D018069 Hair Cells, Vestibular biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2985"} +UMLS:C0029330 Orthochromic normoblast (cell) biolink:Cell skos:exactMatch UMLS:C2350151 Normoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2986","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709673 Primitive Malignant Skeletal Spindle Cell biolink:Cell skos:exactMatch NCIT:C49201 Primitive Malignant Skeletal Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2987","subject_information_content":100.0,"identifierIndex":0} +CL:0002444 Ly49H-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002444 Ly49H-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2988","subject_information_content":100.0} +UMLS:C0229647 Basophilic metamyelocyte biolink:Cell skos:exactMatch SNOMEDCT:63369000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2989","identifierIndex":0} +UMLS:C1267922 Lymphocyte positive for CD42B antigen biolink:Cell skos:exactMatch SNOMEDCT:117366008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2990","identifierIndex":0} +UMLS:C2334307 Paneth cell of epithelium proper of small intestine biolink:Cell skos:exactMatch UMLS:C2334307 Paneth cell of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2991"} +UMLS:C5163436 Eosinophils | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163436 Eosinophils | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2992"} +UMLS:C5157447 CD3+CD5+ cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157447 CD3+CD5+ cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2993"} +CL:0000422 mitogenic signaling cell biolink:Cell skos:exactMatch CL:0000422 mitogenic signaling cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2994","subject_information_content":89.84144812560278} +UMLS:C4725933 Autologous PSMA-4SCAR-expressing T-cells 4SCAR-PSMA biolink:Cell skos:exactMatch NCIT:C150699 Autologous PSMA-4SCAR-expressing T-cells 4SCAR-PSMA biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2995","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0029330 Orthochromic normoblast (cell) biolink:Cell skos:exactMatch NCIT:C13132 Orthochromatic Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2986","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1514028 Neoplastic Monocytoid B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C37003 Neoplastic Monocytoid B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2996","subject_information_content":100.0,"identifierIndex":0} +CL:0002224 lens epithelial cell biolink:Cell skos:exactMatch CL:0002224 lens epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2997","subject_information_content":94.92072406280138} +CL:0000160 goblet cell biolink:Cell skos:exactMatch CL:0000160 goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2998","subject_information_content":76.71171029712904} +CL:0000036 epithelial fate stem cell biolink:Cell skos:exactMatch CL:0000036 epithelial fate stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2999","subject_information_content":78.42360399800205} +UMLS:C1280426 Entire beta Cell of islet biolink:Cell skos:exactMatch SNOMEDCT:247867004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3000","identifierIndex":0} +CL:1001599 pancreas exocrine glandular cell biolink:Cell skos:exactMatch CL:1001599 pancreas exocrine glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3001","subject_information_content":91.94953810872488} +UMLS:C0879438 Allogeneic Lymphocyte biolink:Cell skos:exactMatch NCIT:C13396 Allogeneic Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3002","subject_information_content":100.0,"identifierIndex":0} +CL:1000450 epithelial cell of glomerular capsule biolink:Cell skos:exactMatch CL:1000450 epithelial cell of glomerular capsule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3003","subject_information_content":88.2062864997332} +UMLS:C5157329 CD16+CD57- | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157329 CD16+CD57- | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3004"} +UMLS:C0029330 Orthochromic normoblast (cell) biolink:Cell skos:exactMatch SNOMEDCT:113334004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#2986","subject_information_content":100.0,"identifierIndex":2} +CL:0000410 CNS long range interneuron biolink:Cell skos:exactMatch CL:0000410 CNS long range interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3005","subject_information_content":100.0} +CL:2000000 epidermal melanocyte biolink:Cell skos:exactMatch CL:2000000 epidermal melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3006","subject_information_content":94.92072406280138} +CL:0000867 secondary lymphoid organ macrophage biolink:Cell skos:exactMatch CL:0000867 secondary lymphoid organ macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3007","subject_information_content":78.81980028025117} +UMLS:C5216302 Nucleated cells|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216302 Nucleated cells|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3008"} +NCIT:C12594 Parietal Cell biolink:Cell skos:exactMatch NCIT:C12594 Parietal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3009","subject_information_content":100.0} +CL:0000862 suppressor macrophage biolink:Cell skos:exactMatch CL:0000862 suppressor macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3010","subject_information_content":94.92072406280138} +UMLS:C0879438 Allogeneic Lymphocyte biolink:Cell skos:exactMatch NCIT:C28676 Therapeutic Allogeneic Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3002","subject_information_content":100.0,"identifierIndex":1} +UMLS:C3641664 Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001 biolink:Cell skos:exactMatch NCIT:C103865 Autologous Bone Marrow-derived CD34/CXCR4-positive Stem Cells AMR-001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3011","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3642320 Immature Malignant Mast Cell biolink:Cell skos:exactMatch NCIT:C37063 Immature Malignant Mast Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3012","subject_information_content":100.0,"identifierIndex":0} +CL:0001031 cerebellar granule cell biolink:Cell skos:exactMatch CL:0001031 cerebellar granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3013","subject_information_content":100.0} +UMLS:C0227897 Structure of hilar cell of ovary biolink:Cell skos:exactMatch SNOMEDCT:79891005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3014","identifierIndex":0} +CL:0000737 striated muscle cell biolink:Cell skos:exactMatch CL:0000737 striated muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3015","subject_information_content":68.56017306259972} +UMLS:C5447330 iPSC-derived CD16/IL-15RF-expressing CD38-eliminated NK Cells FT538 biolink:Cell skos:exactMatch NCIT:C176623 iPSC-derived CD16/IL-15RF-expressing CD38-eliminated NK Cells FT538 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3016","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515408 Therapeutic Tumor Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C28699 Therapeutic Tumor Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3017","subject_information_content":80.66139376001811,"identifierIndex":0} +CL:0002376 non-myelinating Schwann cell biolink:Cell skos:exactMatch CL:0002376 non-myelinating Schwann cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3018","subject_information_content":94.92072406280138} +CL:0000778 mononuclear osteoclast biolink:Cell skos:exactMatch CL:0000778 mononuclear osteoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3019","subject_information_content":94.92072406280138} +UMLS:C1881589 Malignant Round Germ Cell biolink:Cell skos:exactMatch NCIT:C61387 Malignant Round Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3020","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5170901 Leukemia markers | Pleural fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5170901 Leukemia markers | Pleural fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3021"} +CL:2000013 fibroblast of skin of abdomen biolink:Cell skos:exactMatch CL:2000013 fibroblast of skin of abdomen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3022","subject_information_content":100.0} +UMLS:C5154474 Basophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154474 Basophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3023"} +CL:0002052 Fraction D precursor B cell biolink:Cell skos:exactMatch CL:0002052 Fraction D precursor B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3024","subject_information_content":100.0} +CL:0000992 immature CD11c-low plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000992 immature CD11c-low plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3025","subject_information_content":100.0} +UMLS:C1881594 Malignant Small Germ Cell biolink:Cell skos:exactMatch NCIT:C61386 Malignant Small Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3026","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0598117 stellate cell biolink:Cell skos:exactMatch UMLS:C0598117 stellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3027"} +CL:0008002 skeletal muscle fiber biolink:Cell skos:exactMatch CL:0008002 skeletal muscle fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3028","subject_information_content":79.23864834624368} +UMLS:C5448026 Autologous Anti-PSMA CAR-T Cells P-PSMA-101 biolink:Cell skos:exactMatch NCIT:C175511 Autologous Anti-PSMA CAR-T Cells P-PSMA-101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3029","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2951083 Set of interneurons of gray matter of spinal cord biolink:Cell skos:exactMatch UMLS:C2951083 Set of interneurons of gray matter of spinal cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3030"} +UMLS:C4528643 Kymriah biolink:Cell skos:exactMatch NCIT:C102758 Tisagenlecleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3031","subject_information_content":100.0,"identifierIndex":0} +CL:0000169 type B pancreatic cell biolink:Cell skos:exactMatch CL:0000169 type B pancreatic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3032","subject_information_content":100.0} +MESH:D002478 Cells, Cultured biolink:Cell skos:exactMatch MESH:D002478 Cells, Cultured biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3033"} +UMLS:C5179532 Reticulocytes.medium fluorescence/100 erythrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179532 Reticulocytes.medium fluorescence/100 erythrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3034"} +UMLS:C5157537 CD4+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157537 CD4+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3035"} +CL:0002256 supporting cell of carotid body biolink:Cell skos:exactMatch CL:0002256 supporting cell of carotid body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3036","subject_information_content":94.92072406280138} +UMLS:C2734107 Erythrocytes+Granulocytes.CD55+CD59 deficient biolink:Cell skos:exactMatch UMLS:C2734107 Erythrocytes+Granulocytes.CD55+CD59 deficient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3037"} +UMLS:C0946057 Erythrocytes.CD55 biolink:Cell skos:exactMatch UMLS:C0946057 Erythrocytes.CD55 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3038"} +UMLS:C1267969 Lymphocyte positive for CD77 antigen biolink:Cell skos:exactMatch SNOMEDCT:117409002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3039","identifierIndex":0} +CL:0000939 CD16-positive, CD56-dim natural killer cell, human biolink:Cell skos:exactMatch CL:0000939 CD16-positive, CD56-dim natural killer cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3040","subject_information_content":100.0} +UMLS:C1510782 Adenocarcinoma Cell with Perinuclear Clearing biolink:Cell skos:exactMatch NCIT:C36841 Adenocarcinoma Cell with Perinuclear Clearing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3041","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2830065 Romyelocel-L biolink:Cell skos:exactMatch NCIT:C82381 Romyelocel-L biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3042","subject_information_content":100.0,"identifierIndex":0} +CL:1000281 smooth muscle cell of cecum biolink:Cell skos:exactMatch CL:1000281 smooth muscle cell of cecum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3043","subject_information_content":100.0} +CL:0000852 neuromast supporting cell biolink:Cell skos:exactMatch CL:0000852 neuromast supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3044","subject_information_content":91.94953810872488} +CL:0002679 natural helper lymphocyte biolink:Cell skos:exactMatch CL:0002679 natural helper lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3045","subject_information_content":100.0} +UMLS:C1708890 Malignant Neuroectodermal Cell with Hyperchromatic Nucleus and Scanty Cytoplasm biolink:Cell skos:exactMatch NCIT:C54040 Malignant Neuroectodermal Cell with Hyperchromatic Nucleus and Scanty Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3046","subject_information_content":100.0,"identifierIndex":0} +CL:1000349 basal cell of epithelium of bronchus biolink:Cell skos:exactMatch CL:1000349 basal cell of epithelium of bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3047","subject_information_content":88.2062864997332} +UMLS:C1512446 High Grade Malignant Transitional Cell biolink:Cell skos:exactMatch NCIT:C36838 High Grade Malignant Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3048","subject_information_content":100.0,"identifierIndex":0} +CL:0011114 segmented neutrophil of bone marrow biolink:Cell skos:exactMatch CL:0011114 segmented neutrophil of bone marrow biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3049","subject_information_content":100.0} +CL:0002062 type I pneumocyte biolink:Cell skos:exactMatch CL:0002062 type I pneumocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3050","subject_information_content":91.94953810872488} +CL:0002577 placental epithelial cell biolink:Cell skos:exactMatch CL:0002577 placental epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3051","subject_information_content":91.94953810872488} +UMLS:C3831522 Anti-CD19-CAR FMC63-28Z Retroviral Vector-transduced Allogeneic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C111041 Anti-CD19-CAR FMC63-28Z Retroviral Vector-transduced Allogeneic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3052","subject_information_content":100.0,"identifierIndex":0} +CL:0009041 tuft cell of colon biolink:Cell skos:exactMatch CL:0009041 tuft cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3053","subject_information_content":100.0} +UMLS:C0333833 Ragocyte biolink:Cell skos:exactMatch SNOMEDCT:45417004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3054","identifierIndex":0} +UMLS:C0028944 Oligodendroglia biolink:Cell skos:exactMatch SNOMEDCT:66254009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3055","identifierIndex":0} +NCIT:C12596 Eukaryotic Cell biolink:Cell skos:exactMatch NCIT:C12596 Eukaryotic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3056","subject_information_content":94.92072406280138} +UMLS:C1276852 Entire parathyroid transitional cell biolink:Cell skos:exactMatch SNOMEDCT:177728006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3057","identifierIndex":0} +UMLS:C1513173 Metaplastic Glandular Cell biolink:Cell skos:exactMatch NCIT:C36837 Metaplastic Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3058","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C2330872 Brush cell of epithelium of bronchus biolink:Cell skos:exactMatch UMLS:C2330872 Brush cell of epithelium of bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3059"} +UMLS:C4733830 Fibroblasts (Human) biolink:Cell skos:exactMatch UMLS:C4733830 Fibroblasts (Human) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3060"} +UMLS:C0282542 Cells, Immobilized biolink:Cell skos:exactMatch MESH:D018914 Cells, Immobilized biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3061","identifierIndex":0} +UMLS:C1709186 Neoplastic Mononuclear Stromal Cell biolink:Cell skos:exactMatch NCIT:C49055 Neoplastic Mononuclear Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3062","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C5447474 LentiGlobin BB305 Lentiviral Vector-transduced Autologous SCD CD34+ Hemaptopoietic Stem Cells bb1111 biolink:Cell skos:exactMatch UMLS:C5448075 LentiGlobin Drug Product for SCD biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3063","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333766 Moth-eaten fibers biolink:Cell skos:exactMatch SNOMEDCT:53408006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3064","identifierIndex":0} +UMLS:C5163682 Erythrocyte clumps | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163682 Erythrocyte clumps | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3065"} +CL:0000221 ectodermal cell biolink:Cell skos:exactMatch CL:0000221 ectodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3066","subject_information_content":89.84144812560278} +CL:0000910 cytotoxic T cell biolink:Cell skos:exactMatch CL:0000910 cytotoxic T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3067","subject_information_content":100.0} +CL:0000962 Bm2 B cell biolink:Cell skos:exactMatch CL:0000962 Bm2 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3068","subject_information_content":100.0} +CL:4023011 lamp5 GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023011 lamp5 GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3069","subject_information_content":89.84144812560278} +MESH:D032446 Myoblasts biolink:Cell skos:exactMatch MESH:D032446 Myoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3070"} +UMLS:C1267960 Lymphocyte positive for CD66C antigen biolink:Cell skos:exactMatch SNOMEDCT:117401004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3071","identifierIndex":0} +UMLS:C2335912 Fibroblast of papillary layer of dermis biolink:Cell skos:exactMatch UMLS:C2335912 Fibroblast of papillary layer of dermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3072"} +UMLS:C5447474 LentiGlobin BB305 Lentiviral Vector-transduced Autologous SCD CD34+ Hemaptopoietic Stem Cells bb1111 biolink:Cell skos:exactMatch NCIT:C176855 Lovotibeglogene Autotemcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3063","subject_information_content":100.0,"identifierIndex":1} +UMLS:C3146292 Mouse Basophil biolink:Cell skos:exactMatch NCIT:C22591 Mouse Basophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3073","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157553 CD4+CD45RO+ cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157553 CD4+CD45RO+ cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3074"} +CL:1000299 fibroblast of connective tissue of prostate biolink:Cell skos:exactMatch CL:1000299 fibroblast of connective tissue of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3075","subject_information_content":100.0} +UMLS:C5167747 HLA-B27 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5167747 HLA-B27 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3076"} +CL:1000305 fibroblast of connective tissue of glandular part of prostate biolink:Cell skos:exactMatch CL:1000305 fibroblast of connective tissue of glandular part of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3077","subject_information_content":100.0} +UMLS:C1440288 Cells.CD3+CD8+CD45RO+CD45RA+ biolink:Cell skos:exactMatch UMLS:C1440288 Cells.CD3+CD8+CD45RO+CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3078"} +UMLS:C0933799 Ciliated columnar cell biolink:Cell skos:exactMatch UMLS:C0933799 Ciliated columnar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3079"} +UMLS:C5173444 Monocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173444 Monocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3080"} +CL:0000959 T2 B cell biolink:Cell skos:exactMatch CL:0000959 T2 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3081","subject_information_content":100.0} +CL:1000275 smooth muscle cell of small intestine biolink:Cell skos:exactMatch CL:1000275 smooth muscle cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3082","subject_information_content":89.84144812560278} +UMLS:C5419436 Autologous Anti-CD19/CD20 Bispecific Nanobody-based CAR-T cells biolink:Cell skos:exactMatch NCIT:C172057 Autologous Anti-CD19/CD20 Bispecific Nanobody-based CAR-T cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3083","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517057 Extraglomerular Mesangial Cells biolink:Cell skos:exactMatch NCIT:C32572 Extraglomerular Mesangial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3084","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2329800 Purkinje myocyte of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2329800 Purkinje myocyte of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3085"} +UMLS:C1182619 Epithelial cell of lacrimal sac biolink:Cell skos:exactMatch UMLS:C1182619 Epithelial cell of lacrimal sac biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3086"} +UMLS:C1171346 Human Embryonic Stem Cells biolink:Cell skos:exactMatch MESH:D000066449 Human Embryonic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3087","identifierIndex":0} +UMLS:C1514106 Neoplastic Syncytiotrophoblastic Cell biolink:Cell skos:exactMatch NCIT:C36906 Neoplastic Syncytiotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3088","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157228 CD1 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157228 CD1 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3089"} +UMLS:C1183981 Chromaffin cell of right ovary biolink:Cell skos:exactMatch UMLS:C1183981 Chromaffin cell of right ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3090"} +UMLS:C2322731 Type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell skos:exactMatch UMLS:C2322731 Type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3091"} +UMLS:C1522040 Signet Ring Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36777 Signet Ring Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3092","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519372 Glandular cell of small intestine biolink:Cell skos:exactMatch NCIT:C33566 Small Intestinal Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3093","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708646 Large Malignant Histiocyte biolink:Cell skos:exactMatch NCIT:C43255 Large Malignant Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3094","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1277065 Entire interstitial cell of Leydig biolink:Cell skos:exactMatch SNOMEDCT:367715001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3095","identifierIndex":0} +UMLS:C2936239 HEK293 Cells biolink:Cell skos:exactMatch MESH:D057809 HEK293 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3096","identifierIndex":0} +CL:0002067 type A enteroendocrine cell biolink:Cell skos:exactMatch CL:0002067 type A enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3097","subject_information_content":91.94953810872488} +UMLS:C0882808 Cell positive for CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:116753004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3098","identifierIndex":0} +CL:0000127 astrocyte biolink:Cell skos:exactMatch CL:0000127 astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3099","subject_information_content":81.79098623432766} +CL:0002291 X chromosome-bearing sperm cell biolink:Cell skos:exactMatch CL:0002291 X chromosome-bearing sperm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3100","subject_information_content":100.0} +UMLS:C0229572 Supporting cell of carotid body biolink:Cell skos:exactMatch SNOMEDCT:37269007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3101","identifierIndex":0} +UMLS:C1440343 Cells.CD66a biolink:Cell skos:exactMatch UMLS:C1440343 Cells.CD66a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3102"} +CL:0002325 mammary alveolar cell biolink:Cell skos:exactMatch CL:0002325 mammary alveolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3103","subject_information_content":100.0} +UMLS:C2323865 Non-spiny stellate cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2323865 Non-spiny stellate cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3104"} +UMLS:C4329367 Autologous Anti-MG7-CAR T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C131493 Autologous Anti-MG7-CAR T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3105","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267850 Lymphocyte positive for CD6 antigen biolink:Cell skos:exactMatch SNOMEDCT:117536002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3106","identifierIndex":0} +UMLS:C1268009 Basophilic granulocytic cell biolink:Cell skos:exactMatch SNOMEDCT:127917000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3107","identifierIndex":0} +UMLS:C1268444 Nonhematic cell biolink:Cell skos:exactMatch SNOMEDCT:115611000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3108","identifierIndex":0} +UMLS:C1518629 Osteoclast-Like Giant Cell biolink:Cell skos:exactMatch NCIT:C36827 Osteoclast-Like Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3109","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C4055479 Allogeneic CD3- CD19- Selected Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C121445 Allogeneic CD3- CD19- Selected Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3110","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1879556 Adenocarcinoma Cell with Foamy Cytoplasm biolink:Cell skos:exactMatch NCIT:C60526 Adenocarcinoma Cell with Foamy Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3111","subject_information_content":100.0,"identifierIndex":0} +CL:0009012 transit amplifying cell of small intestine biolink:Cell skos:exactMatch CL:0009012 transit amplifying cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3112","subject_information_content":100.0} +UMLS:C2324017 H II cell of retina biolink:Cell skos:exactMatch UMLS:C2324017 H II cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3113"} +UMLS:C0546496 P.B. monoblast biolink:Cell skos:exactMatch UMLS:C0546496 P.B. monoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3114"} +UMLS:C4253023 Set of enteroendocrine cells biolink:Cell skos:exactMatch UMLS:C4253023 Set of enteroendocrine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3115"} +CL:0000454 epinephrine secreting cell biolink:Cell skos:exactMatch CL:0000454 epinephrine secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3116","subject_information_content":91.94953810872488} +CL:0000797 alpha-beta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000797 alpha-beta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3117","subject_information_content":86.87026217152628} +UMLS:C5416843 CK0802 biolink:Cell skos:exactMatch UMLS:C5416843 CK0802 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3118"} +CL:0000564 neutrophilic promyelocyte biolink:Cell skos:exactMatch CL:0000564 neutrophilic promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3119","subject_information_content":100.0} +CL:2000092 hair follicular keratinocyte biolink:Cell skos:exactMatch CL:2000092 hair follicular keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3120","subject_information_content":94.92072406280138} +UMLS:C5172364 Megaloblasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172364 Megaloblasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3121"} +UMLS:C1440245 Cells.CD11a biolink:Cell skos:exactMatch UMLS:C1440245 Cells.CD11a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3122"} +UMLS:C1514201 Polygonal Adenocarcinoma Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C36850 Polygonal Adenocarcinoma Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3123","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157463 CD3+CD8+CD57+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157463 CD3+CD8+CD57+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3124"} +UMLS:C1317561 Neutrophils.vacuolated+Segmented biolink:Cell skos:exactMatch UMLS:C1317561 Neutrophils.vacuolated+Segmented biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3125"} +UMLS:C4484257 100 cells.CD8 biolink:Cell skos:exactMatch UMLS:C4484257 100 cells.CD8 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3126"} +UMLS:C1514032 Neoplastic Protoplasmic Astrocyte biolink:Cell skos:exactMatch NCIT:C41459 Neoplastic Protoplasmic Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3127","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1956120 Dermal Dendritic Cells biolink:Cell skos:exactMatch UMLS:C1956120 Dermal Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3128"} +UMLS:C0596108 antibody dependent killer cell biolink:Cell skos:exactMatch UMLS:C0596108 antibody dependent killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3129"} +UMLS:C5170931 Leukocytes | Gastric fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170931 Leukocytes | Gastric fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3130"} +UMLS:C4510889 Blast cell positive for CD7 antigen biolink:Cell skos:exactMatch SNOMEDCT:724315001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3131","identifierIndex":0} +UMLS:C1180368 Type III taste bud cell biolink:Cell skos:exactMatch UMLS:C1180368 Type III taste bud cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3132"} +UMLS:C1512085 Ductal Epithelial Cell biolink:Cell skos:exactMatch NCIT:C12479 Ductal Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3133","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5221031 Neutrophils|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5221031 Neutrophils|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3134"} +NCIT:C12532 Eosinophil biolink:Cell skos:exactMatch NCIT:C12532 Eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3135","subject_information_content":100.0} +CL:0001027 CD7-negative lymphoid progenitor cell biolink:Cell skos:exactMatch CL:0001027 CD7-negative lymphoid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3136","subject_information_content":100.0} +UMLS:C1317193 Cells.CD23+CD38+ biolink:Cell skos:exactMatch UMLS:C1317193 Cells.CD23+CD38+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3137"} +UMLS:C2328733 Pseudo-unipolar neuron biolink:Cell skos:exactMatch UMLS:C2328733 Pseudo-unipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3138"} +UMLS:C5186228 Erythrocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186228 Erythrocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3139"} +UMLS:C2697995 MultiStem biolink:Cell skos:exactMatch UMLS:C2697995 MultiStem biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3140"} +NCIT:C12579 Ameloblast biolink:Cell skos:exactMatch NCIT:C12579 Ameloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3141","subject_information_content":91.94953810872488} +UMLS:C4733688 autologous tri-functional anti-CD19 CAR T cells biolink:Cell skos:exactMatch UMLS:C4733688 autologous tri-functional anti-CD19 CAR T cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3142"} +CL:0000775 neutrophil biolink:Cell skos:exactMatch CL:0000775 neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3143","subject_information_content":85.74066969721673} +UMLS:C5171712 Lymphocytes.vacuolated | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171712 Lymphocytes.vacuolated | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3144"} +CL:4023097 arachnoid barrier cell biolink:Cell skos:exactMatch CL:4023097 arachnoid barrier cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3145","subject_information_content":100.0} +UMLS:C0920751 Heart cell biolink:Cell skos:exactMatch UMLS:C0920751 Heart cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3146"} +UMLS:C1510780 Adenocarcinoma Cell with Eosinophilic Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C36880 Adenocarcinoma Cell with Eosinophilic Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3147","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5219007 Erythrocytes|PrThr|Urine biolink:Cell skos:exactMatch UMLS:C5219007 Erythrocytes|PrThr|Urine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3148"} +CL:0002180 mucous cell of stomach biolink:Cell skos:exactMatch CL:0002180 mucous cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3149","subject_information_content":83.89907621744979} +UMLS:C2332614 Transitional myocyte of left branch of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2332614 Transitional myocyte of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3150"} +UMLS:C5148515 Plasma cells.abnormal biolink:Cell skos:exactMatch UMLS:C5148515 Plasma cells.abnormal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3151"} +CL:0002008 CD34-positive, CD38-positive eosinophil progenitor cell biolink:Cell skos:exactMatch CL:0002008 CD34-positive, CD38-positive eosinophil progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3152","subject_information_content":100.0} +CL:1000272 lung secretory cell biolink:Cell skos:exactMatch CL:1000272 lung secretory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3153","subject_information_content":86.87026217152628} +UMLS:C1440323 Cells.CD49c biolink:Cell skos:exactMatch UMLS:C1440323 Cells.CD49c biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3154"} +CL:0000979 IgG memory B cell biolink:Cell skos:exactMatch CL:0000979 IgG memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3155","subject_information_content":88.2062864997332} +UMLS:C2340275 Microfold cell of epithelium proper of large intestine biolink:Cell skos:exactMatch UMLS:C2340275 Microfold cell of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3156"} +UMLS:C1518984 Neoplastic Perineurial-Like Cell biolink:Cell skos:exactMatch NCIT:C37152 Neoplastic Perineurial-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3157","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5155169 Blasts | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155169 Blasts | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3158"} +UMLS:C1267916 Lymphocyte positive for CD39 antigen biolink:Cell skos:exactMatch SNOMEDCT:117584006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3159","identifierIndex":0} +UMLS:C5163718 Erythrocytes | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163718 Erythrocytes | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3160"} +CL:0002152 columnar cell of endocervix biolink:Cell skos:exactMatch CL:0002152 columnar cell of endocervix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3161","subject_information_content":100.0} +CL:0002297 type-3 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002297 type-3 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3162","subject_information_content":100.0} +UMLS:C1708908 Malignant Small Squamous Cell biolink:Cell skos:exactMatch NCIT:C54207 Malignant Small Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3163","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000420 syncytial epithelial cell biolink:Cell skos:exactMatch CL:0000420 syncytial epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3164","subject_information_content":100.0} +UMLS:C5426956 Epithelial cells | Prostatic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5426956 Epithelial cells | Prostatic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3165"} +UMLS:C5216223 Large unstained cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216223 Large unstained cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3166"} +CL:0002021 GlyA-positive erythrocyte biolink:Cell skos:exactMatch CL:0002021 GlyA-positive erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3167","subject_information_content":100.0} +CL:0002607 migratory enteric neural crest cell biolink:Cell skos:exactMatch CL:0002607 migratory enteric neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3168","subject_information_content":100.0} +UMLS:C4727549 Autologous AXL-targeted CAR T-cells CCT301-38 biolink:Cell skos:exactMatch NCIT:C154276 Autologous AXL-targeted CAR T-cells CCT301-38 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3169","subject_information_content":100.0,"identifierIndex":0} +CL:0000129 microglial cell biolink:Cell skos:exactMatch CL:0000129 microglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3170","subject_information_content":91.94953810872488} +CL:0002342 circulating endothelial cell biolink:Cell skos:exactMatch CL:0002342 circulating endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3171","subject_information_content":100.0} +UMLS:C1267844 Lymphoblast positive for CD5 antigen biolink:Cell skos:exactMatch SNOMEDCT:117531007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3172","identifierIndex":0} +CL:0000350 amnioserosal cell biolink:Cell skos:exactMatch CL:0000350 amnioserosal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3173","subject_information_content":100.0} +UMLS:C0230977 Desquamated fetal cells biolink:Cell skos:exactMatch SNOMEDCT:67709004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3174","identifierIndex":0} +CL:1001586 mammary gland glandular cell biolink:Cell skos:exactMatch CL:1001586 mammary gland glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3175","subject_information_content":94.92072406280138} +UMLS:C5170904 Leukocyte clumps | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5170904 Leukocyte clumps | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3176"} +UMLS:C1267673 Ovum of parasite (cell) biolink:Cell skos:exactMatch UMLS:C1267673 Ovum of parasite (cell) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3177"} +UMLS:C2338473 Transitional myocyte of atrial branch of anterior internodal tract biolink:Cell skos:exactMatch UMLS:C2338473 Transitional myocyte of atrial branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3178"} +UMLS:C5174628 Neutrophils.agranular | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174628 Neutrophils.agranular | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3179"} +CL:0011006 Lugaro cell biolink:Cell skos:exactMatch CL:0011006 Lugaro cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3180","subject_information_content":100.0} +UMLS:C1115669 Lymphocytes.clefted biolink:Cell skos:exactMatch UMLS:C1115669 Lymphocytes.clefted biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3181"} +UMLS:C1267939 Lymphocyte positive for CD49D antigen biolink:Cell skos:exactMatch SNOMEDCT:117382009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3182","identifierIndex":0} +UMLS:C1512971 Malignant Thyroid Gland Follicular Cell biolink:Cell skos:exactMatch NCIT:C36836 Malignant Thyroid Gland Follicular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3183","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C2350826 Rhabdomeric Photoreceptor Cells biolink:Cell skos:exactMatch UMLS:C2350826 Rhabdomeric Photoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3184"} +UMLS:C1514080 Neoplastic Schwann Cell biolink:Cell skos:exactMatch NCIT:C37151 Neoplastic Schwann Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3185","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4038446 Reticulocytes.hypochromic biolink:Cell skos:exactMatch UMLS:C4038446 Reticulocytes.hypochromic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3186"} +UMLS:C0028876 Odontoclasts biolink:Cell skos:exactMatch UMLS:C0028876 Odontoclasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3187"} +UMLS:C1709179 Neoplastic Histiocytic and Dendritic Cell biolink:Cell skos:exactMatch NCIT:C43253 Neoplastic Histiocytic and Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3188","subject_information_content":83.89907621744979,"identifierIndex":0} +UMLS:C1511465 CY40 biolink:Cell skos:exactMatch NCIT:C20239 CY40 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3189","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512134 ES05 biolink:Cell skos:exactMatch NCIT:C20253 ES05 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3190","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511177 Neoplastic Piloid Astrocyte biolink:Cell skos:exactMatch NCIT:C37138 Neoplastic Piloid Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3191","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5174626 Neutrophils | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5174626 Neutrophils | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3192"} +UMLS:C3831168 CD33CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C107190 CD33CAR-CD3zeta-4-1BB-expressing Autologous T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3193","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3494246 Sf21 Cells biolink:Cell skos:exactMatch UMLS:C3494246 Sf21 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3194"} +UMLS:C4518163 Population of all abnormal spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725221005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3195","identifierIndex":0} +UMLS:C1253961 Colligocyte biolink:Cell skos:exactMatch UMLS:C1253961 Colligocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3196"} +CL:0002018 CD71-negative, GlyA-positive orthochromatic erythroblast biolink:Cell skos:exactMatch CL:0002018 CD71-negative, GlyA-positive orthochromatic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3197","subject_information_content":100.0} +CL:0000599 conidium biolink:Cell skos:exactMatch CL:0000599 conidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3198","subject_information_content":80.66139376001811} +UMLS:C3829574 iC9-GD2-CD28-OX40-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C106123 iC9-GD2-CD28-OX40-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3199","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157411 CD25 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157411 CD25 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3200"} +UMLS:C2328961 Type 1 vestibular sensory cell biolink:Cell skos:exactMatch NCIT:C12630 Type I Hair Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3201","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1292100 IgG B lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:115606002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3202","identifierIndex":0} +UMLS:C1517170 Fibrillary Neoplastic Astrocyte biolink:Cell skos:exactMatch NCIT:C37129 Fibrillary Neoplastic Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3203","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514077 Neoplastic Round Cell with Lipomatous Differentiation biolink:Cell skos:exactMatch NCIT:C37102 Neoplastic Round Cell with Lipomatous Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3204","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3830410 DNR-expressing Nasopharyngeal Carcinoma-specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C114378 DNR-expressing Nasopharyngeal Carcinoma-specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3205","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163554 Epithelial cells.squamous | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163554 Epithelial cells.squamous | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3206"} +UMLS:C1657751 Cells.CD4+CD7+ biolink:Cell skos:exactMatch UMLS:C1657751 Cells.CD4+CD7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3207"} +UMLS:C1513023 Mature Cytotoxic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38324 Mature Cytotoxic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3208","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000561 amacrine cell biolink:Cell skos:exactMatch CL:0000561 amacrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3209","subject_information_content":100.0} +UMLS:C0229541 Pituitary chromophobe cell biolink:Cell skos:exactMatch SNOMEDCT:27186004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3210","identifierIndex":0} +UMLS:C2328961 Type 1 vestibular sensory cell biolink:Cell skos:exactMatch SNOMEDCT:2246008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3201","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5235892 Bone Marrow-Derived Fibroblasts biolink:Cell skos:exactMatch NCIT:C164010 Bone Marrow-Derived Fibroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3211","subject_information_content":100.0,"identifierIndex":0} +CL:4023089 nest basket cell biolink:Cell skos:exactMatch CL:4023089 nest basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3212","subject_information_content":100.0} +UMLS:C1829707 Cells.ZAP70+CD19+ biolink:Cell skos:exactMatch UMLS:C1829707 Cells.ZAP70+CD19+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3213"} +UMLS:C1512992 Marginal Zone B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38729 Marginal Zone B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3214","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0002141 active chief cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002141 active chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3215","subject_information_content":100.0} +UMLS:C0599229 cell wall defective microbial form biolink:Cell skos:exactMatch UMLS:C0599229 cell wall defective microbial form biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3216"} +CL:0002085 tanycyte biolink:Cell skos:exactMatch CL:0002085 tanycyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3217","subject_information_content":100.0} +UMLS:C5419437 Cord Blood Derived CAR T-Cells biolink:Cell skos:exactMatch NCIT:C172058 Cord Blood Derived CAR T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3218","subject_information_content":100.0,"identifierIndex":0} +CL:0000832 eosinophilic myeloblast biolink:Cell skos:exactMatch CL:0000832 eosinophilic myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3219","subject_information_content":100.0} +CL:0000844 germinal center B cell biolink:Cell skos:exactMatch CL:0000844 germinal center B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3220","subject_information_content":86.87026217152628} +CL:0001054 CD14-positive monocyte biolink:Cell skos:exactMatch CL:0001054 CD14-positive monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3221","subject_information_content":88.2062864997332} +UMLS:C4068503 FISH probe target locus biolink:Cell skos:exactMatch UMLS:C4068503 FISH probe target locus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3222"} +UMLS:C0545591 Blood, other cells biolink:Cell skos:exactMatch UMLS:C0545591 Blood, other cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3223"} +UMLS:C1370100 Cells.CD3+TCR alpha beta+ biolink:Cell skos:exactMatch UMLS:C1370100 Cells.CD3+TCR alpha beta+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3224"} +CL:0002578 mesenteric preadipocyte biolink:Cell skos:exactMatch CL:0002578 mesenteric preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3225","subject_information_content":100.0} +UMLS:C1517736 Large Osteoclastic Giant Cell biolink:Cell skos:exactMatch NCIT:C36818 Large Osteoclastic Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3226","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514520 Prostatic Glandular Cell biolink:Cell skos:exactMatch NCIT:C33409 Prostatic Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3227","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5179518 Reticulocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179518 Reticulocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3228"} +CL:0000688 perijunctional fibroblast biolink:Cell skos:exactMatch CL:0000688 perijunctional fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3229","subject_information_content":100.0} +UMLS:C1267921 Lymphocyte positive for CD42A antigen biolink:Cell skos:exactMatch SNOMEDCT:117589001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3230","identifierIndex":0} +UMLS:C2322965 Set of all cells biolink:Cell skos:exactMatch UMLS:C2322965 Set of all cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3231"} +CL:0000234 phagocyte biolink:Cell skos:exactMatch CL:0000234 phagocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3232","subject_information_content":67.1907644114757} +UMLS:C4687729 Anti-NY-ESO-1 TCR LV-transduced Autologous T-Cells TAEST16001 biolink:Cell skos:exactMatch NCIT:C147135 Anti-NY-ESO-1 TCR LV-transduced Autologous T-Cells TAEST16001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3233","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682694 Inhibitory interneuron biolink:Cell skos:exactMatch UMLS:C0682694 Inhibitory interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3234"} +UMLS:C1711298 Malignant Chondrocyte biolink:Cell skos:exactMatch NCIT:C53478 Malignant Chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3235","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1113654 Neural Stem Cells biolink:Cell skos:exactMatch NCIT:C12985 Neural Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3236","subject_information_content":100.0,"identifierIndex":0} +CL:2000074 splenocyte biolink:Cell skos:exactMatch CL:2000074 splenocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3237","subject_information_content":84.76217218840416} +UMLS:C1440356 Cells.CD79b biolink:Cell skos:exactMatch UMLS:C1440356 Cells.CD79b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3238"} +UMLS:C5420525 Allogeneic PD-L1 Tumor-targeted High-affinity Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C174011 Allogeneic PD-L1 Tumor-targeted High-affinity Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3239","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4552764 Mesenchymal Progenitor Cell biolink:Cell skos:exactMatch UMLS:C4552764 Mesenchymal Progenitor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3240"} +UMLS:C0018894 Helper-Inducer T-Lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:29594005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3242","identifierIndex":0} +UMLS:C4329371 Autologous Monocytes biolink:Cell skos:exactMatch NCIT:C129877 Autologous Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3241","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163721 Erythrocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163721 Erythrocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3243"} +UMLS:C0546500 P.B. megakaryoblast biolink:Cell skos:exactMatch UMLS:C0546500 P.B. megakaryoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3244"} +UMLS:C5151349 Abnormal lymphocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5151349 Abnormal lymphocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3245"} +UMLS:C1113654 Neural Stem Cells biolink:Cell skos:exactMatch MESH:D058953 Neural Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3236","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1182787 Epithelial cell of nephron biolink:Cell skos:exactMatch UMLS:C1182787 Epithelial cell of nephron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3246"} +CL:0002312 somatotroph biolink:Cell skos:exactMatch CL:0002312 somatotroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3247","subject_information_content":100.0} +UMLS:C4723770 Autologous Natural Killer Cell-like CTLs biolink:Cell skos:exactMatch NCIT:C156168 Autologous Natural Killer Cell-like CTLs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3248","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518115 MB03 biolink:Cell skos:exactMatch NCIT:C20277 MB03 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3249","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157239 CD10+CD20+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157239 CD10+CD20+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3250"} +UMLS:C5220604 Oval fat bodies (globules)|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220604 Oval fat bodies (globules)|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3251"} +UMLS:C1979666 Cells.CD19+CD58+ biolink:Cell skos:exactMatch UMLS:C1979666 Cells.CD19+CD58+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3252"} +CL:0000042 neutrophilic myeloblast biolink:Cell skos:exactMatch CL:0000042 neutrophilic myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3253","subject_information_content":100.0} +UMLS:C4289823 Central Memory T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C126420 Central Memory T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3254","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3869774 Siderocytes.HPF biolink:Cell skos:exactMatch UMLS:C3869774 Siderocytes.HPF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3255"} +UMLS:C5381001 Cells.CD8.HLA-B7 CMV specific biolink:Cell skos:exactMatch UMLS:C5381001 Cells.CD8.HLA-B7 CMV specific biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3256"} +UMLS:C5157516 CD3-CD16+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157516 CD3-CD16+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3257"} +CL:0002091 primary polar body biolink:Cell skos:exactMatch CL:0002091 primary polar body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3258","subject_information_content":100.0} +UMLS:C5186221 Eosinophils | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186221 Eosinophils | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3259"} +UMLS:C5157511 CD38 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157511 CD38 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3260"} +CL:0002419 mature T cell biolink:Cell skos:exactMatch CL:0002419 mature T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3261","subject_information_content":66.55315842273183} +UMLS:C1440265 Cells.CD19+CD23+ biolink:Cell skos:exactMatch UMLS:C1440265 Cells.CD19+CD23+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3262"} +CL:0000436 vaginal lubricant secreting cell biolink:Cell skos:exactMatch CL:0000436 vaginal lubricant secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3263","subject_information_content":100.0} +UMLS:C2340053 Type EC enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2340053 Type EC enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3264"} +UMLS:C2340500 Microfold cell of epithelium of intestinal villus biolink:Cell skos:exactMatch UMLS:C2340500 Microfold cell of epithelium of intestinal villus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3265"} +UMLS:C0024264 Lymphocyte biolink:Cell skos:exactMatch MESH:D008214 Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3266","identifierIndex":0} +UMLS:C5216258 Macrophages|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216258 Macrophages|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3267"} +UMLS:C1709199 Neoplastic Skeletal Muscle Cell biolink:Cell skos:exactMatch NCIT:C49167 Neoplastic Skeletal Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3268","subject_information_content":83.89907621744979,"identifierIndex":0} +UMLS:C2936411 Th17 Cells biolink:Cell skos:exactMatch NCIT:C113815 T Helper 17 Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3269","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0002406 immature Vgamma2-positive thymocyte biolink:Cell skos:exactMatch CL:0002406 immature Vgamma2-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3270","subject_information_content":100.0} +UMLS:C5186733 Leukocytes | Blood product unit | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186733 Leukocytes | Blood product unit | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3271"} +CL:0002596 smooth muscle cell of the carotid artery biolink:Cell skos:exactMatch CL:0002596 smooth muscle cell of the carotid artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3272","subject_information_content":100.0} +CL:0002213 white muscle cell biolink:Cell skos:exactMatch CL:0002213 white muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3273","subject_information_content":94.92072406280138} +UMLS:C1709898 Renal Pelvis Urothelial Cell biolink:Cell skos:exactMatch NCIT:C54557 Renal Pelvis Urothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3274","subject_information_content":100.0,"identifierIndex":0} +CL:0000218 myelinating Schwann cell biolink:Cell skos:exactMatch CL:0000218 myelinating Schwann cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3275","subject_information_content":100.0} +UMLS:C1709191 Neoplastic Parathyroid Gland Clear Cell biolink:Cell skos:exactMatch NCIT:C48279 Neoplastic Parathyroid Gland Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3276","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000692 terminal Schwann cell biolink:Cell skos:exactMatch CL:0000692 terminal Schwann cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3277","subject_information_content":100.0} +CL:4023092 inverted pyramidal neuron biolink:Cell skos:exactMatch CL:4023092 inverted pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3278","subject_information_content":100.0} +UMLS:C2936411 Th17 Cells biolink:Cell skos:exactMatch MESH:D058504 Th17 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3269","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C1510783 Adenocarcinoma Spindle Cell biolink:Cell skos:exactMatch NCIT:C37108 Adenocarcinoma Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3279","subject_information_content":100.0,"identifierIndex":0} +CL:0000334 vegetative cell (sensu Fungi) biolink:Cell skos:exactMatch CL:0000334 vegetative cell (sensu Fungi) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3280","subject_information_content":100.0} +UMLS:C4727558 Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1 biolink:Cell skos:exactMatch NCIT:C154285 Autologous TAAs-loaded Autologous Dendritic Cells AV-GBM-1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3281","subject_information_content":100.0,"identifierIndex":0} +CL:4023111 cerebral cortex pyramidal neuron biolink:Cell skos:exactMatch CL:4023111 cerebral cortex pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3282"} +UMLS:C5163440 Eosinophils | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163440 Eosinophils | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3283"} +CL:1000436 epithelial cell of lacrimal sac biolink:Cell skos:exactMatch CL:1000436 epithelial cell of lacrimal sac biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3284","subject_information_content":100.0} +UMLS:C5157289 CD127 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157289 CD127 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3285"} +UMLS:C5447497 Allogeneic shRNA-based Anti-BCMA CAR T-cells CYAD-211 biolink:Cell skos:exactMatch NCIT:C176885 Allogeneic shRNA-based Anti-BCMA CAR T-cells CYAD-211 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3286","subject_information_content":100.0,"identifierIndex":0} +CL:0002492 strial marginal cell biolink:Cell skos:exactMatch CL:0002492 strial marginal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3287","subject_information_content":100.0} +NCIT:C33152 Myoepithelial Cell biolink:Cell skos:exactMatch NCIT:C33152 Myoepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3288","subject_information_content":94.92072406280138} +CL:0009003 larval midgut cell biolink:Cell skos:exactMatch CL:0009003 larval midgut cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3289","subject_information_content":100.0} +CL:4023044 non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023044 non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3290","subject_information_content":100.0} +UMLS:C5157242 CD10+HLA-DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157242 CD10+HLA-DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3291"} +UMLS:C0016030 Fibroblasts biolink:Cell skos:exactMatch UMLS:C0016030 Fibroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3292"} +MESH:D010295 Parietal Cells, Gastric biolink:Cell skos:exactMatch MESH:D010295 Parietal Cells, Gastric biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3293"} +UMLS:C1518068 Popcorn Cell biolink:Cell skos:exactMatch NCIT:C37027 Popcorn Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3294","subject_information_content":100.0,"identifierIndex":0} +CL:0000020 spermatogonium biolink:Cell skos:exactMatch CL:0000020 spermatogonium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3295","subject_information_content":100.0} +UMLS:C3826603 Cell metabolism biolink:Cell skos:exactMatch UMLS:C3826603 Cell metabolism biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3296"} +CL:1001606 foreskin keratinocyte biolink:Cell skos:exactMatch CL:1001606 foreskin keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3297","subject_information_content":100.0} +CL:0000090 female germ line stem cell (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000090 female germ line stem cell (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3298","subject_information_content":100.0} +UMLS:C1512637 Immature Peripheral Alpha/Beta Cell of Cytotoxic Type biolink:Cell skos:exactMatch NCIT:C38327 Immature Peripheral Alpha/Beta Cell of Cytotoxic Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3299","subject_information_content":100.0,"identifierIndex":0} +CL:2000017 fibroblast of peridontal ligament biolink:Cell skos:exactMatch CL:2000017 fibroblast of peridontal ligament biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3300","subject_information_content":100.0} +CL:0000193 cardiac muscle cell (sensu Arthopoda) biolink:Cell skos:exactMatch CL:0000193 cardiac muscle cell (sensu Arthopoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3301","subject_information_content":100.0} +UMLS:C0333855 Small cleaved cell biolink:Cell skos:exactMatch UMLS:C0333855 Small cleaved cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3302"} +UMLS:C1707913 Endometrioid Stromal Cell biolink:Cell skos:exactMatch NCIT:C53995 Endometrioid Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3303","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4304492 Population of all granulocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719696007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3304","identifierIndex":0} +UMLS:C0949753 Nitrergic Neurons biolink:Cell skos:exactMatch NCIT:C12647 Nitrergic Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3305","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157671 CD8+CD57+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157671 CD8+CD57+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3306"} +UMLS:C1440407 Cells.t(15;17)(q24.1;q21.1)(PML,RARA) biolink:Cell skos:exactMatch UMLS:C1440407 Cells.t(15;17)(q24.1;q21.1)(PML,RARA) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3307"} +CL:0001013 mature interstitial dendritic cell biolink:Cell skos:exactMatch CL:0001013 mature interstitial dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3308","subject_information_content":100.0} +UMLS:C0018183 granulocyte biolink:Cell skos:exactMatch UMLS:C0018183 granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3309"} +UMLS:C1953382 Forward primer biolink:Cell skos:exactMatch UMLS:C1953382 Forward primer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3310"} +MESH:D015744 Giant Cells, Langhans biolink:Cell skos:exactMatch MESH:D015744 Giant Cells, Langhans biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3311"} +UMLS:C5170947 Leukocytes | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5170947 Leukocytes | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3312"} +CL:0000082 epithelial cell of lung biolink:Cell skos:exactMatch CL:0000082 epithelial cell of lung biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3313","subject_information_content":77.69020780594161} +UMLS:C1518224 Malignant Neuroendocrine Spindle Cell biolink:Cell skos:exactMatch NCIT:C36854 Malignant Neuroendocrine Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3314","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0949753 Nitrergic Neurons biolink:Cell skos:exactMatch MESH:D026602 Nitrergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3305","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1513816 NC03 biolink:Cell skos:exactMatch NCIT:C20283 NC03 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3315","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513923 Neoplastic Acidophilic Stem Cell biolink:Cell skos:exactMatch NCIT:C36924 Neoplastic Acidophilic Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3316","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5399350 Tecartus biolink:Cell skos:exactMatch NCIT:C170439 Brexucabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3317","subject_information_content":100.0,"identifierIndex":0} +CL:0000428 yolk cell biolink:Cell skos:exactMatch CL:0000428 yolk cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3318","subject_information_content":100.0} +UMLS:C1511178 Bipolar neuron biolink:Cell skos:exactMatch NCIT:C13154 Bipolar Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3319","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0009026 enterocyte of appendix biolink:Cell skos:exactMatch CL:0009026 enterocyte of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3320","subject_information_content":100.0} +UMLS:C1512901 Interstitial Cells of Cajal biolink:Cell skos:exactMatch NCIT:C32871 Interstitial Cell of Cajal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3321","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519718 Intercalated cell of collecting duct of renal tubule biolink:Cell skos:exactMatch NCIT:C13146 Intercalated Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3322","subject_information_content":100.0,"identifierIndex":0} +CL:0000999 CD4-positive CD11b-positive dendritic cell biolink:Cell skos:exactMatch CL:0000999 CD4-positive CD11b-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3323","subject_information_content":91.94953810872488} +CL:0002404 fetal thymocyte biolink:Cell skos:exactMatch CL:0002404 fetal thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3324","subject_information_content":88.2062864997332} +UMLS:C4055074 Effector Memory Immune Cell biolink:Cell skos:exactMatch NCIT:C122731 Effector Memory Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3325","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0229598 Structure of delta Cell of islet biolink:Cell skos:exactMatch NCIT:C38639 Delta Cell of the Pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3326","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2983758 NY-ESO-1 Reactive TCR Retroviral Vector Transduced Autologous PBL biolink:Cell skos:exactMatch NCIT:C90559 NY-ESO-1 Reactive TCR Retroviral Vector Transduced Autologous PBL biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3327","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157299 CD13+CD33+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157299 CD13+CD33+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3328"} +UMLS:C1183326 Mesothelial cell of parietal peritoneum biolink:Cell skos:exactMatch UMLS:C1183326 Mesothelial cell of parietal peritoneum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3329"} +UMLS:C0230520 Mitotic cell in metaphase biolink:Cell skos:exactMatch SNOMEDCT:38980003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3330","identifierIndex":0} +UMLS:C4687977 Orvacabtagene Autoleucel biolink:Cell skos:exactMatch NCIT:C147523 Orvacabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3331","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0017526 Giant Cells biolink:Cell skos:exactMatch UMLS:C0017526 Giant Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3332"} +CL:0009059 plasma cell of medullary sinus of lymph node biolink:Cell skos:exactMatch CL:0009059 plasma cell of medullary sinus of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3333","subject_information_content":100.0} +UMLS:C5420429 Autologous Anti-GD2-CAR-BBz-iCasp9 Retroviral Vector-transduced T Lymphocytes biolink:Cell skos:exactMatch NCIT:C173886 Autologous Anti-GD2-CAR-BBz-iCasp9 Retroviral Vector-transduced T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3334","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216201 Eosinophils|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216201 Eosinophils|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3335"} +UMLS:C0229598 Structure of delta Cell of islet biolink:Cell skos:exactMatch SNOMEDCT:11815004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3326","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1267986 Lymphocyte positive for CD99 antigen biolink:Cell skos:exactMatch SNOMEDCT:117426008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3336","identifierIndex":0} +CL:1000507 kidney tubule cell biolink:Cell skos:exactMatch CL:1000507 kidney tubule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3337","subject_information_content":77.02358060617253} +CL:0000382 scolopale cell biolink:Cell skos:exactMatch CL:0000382 scolopale cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3338","subject_information_content":100.0} +UMLS:C4316898 Segmented basophil biolink:Cell skos:exactMatch SNOMEDCT:30061004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3339","identifierIndex":0} +CL:0002014 Kit-negative, Ly-76 high basophilic erythroblast biolink:Cell skos:exactMatch CL:0002014 Kit-negative, Ly-76 high basophilic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3340","subject_information_content":100.0} +CL:2000049 primary motor cortex pyramidal cell biolink:Cell skos:exactMatch CL:2000049 primary motor cortex pyramidal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3341","subject_information_content":82.42859222307153} +UMLS:C2331019 Set of cholinergic cells of dorsal tegmental area [Ch8] biolink:Cell skos:exactMatch UMLS:C2331019 Set of cholinergic cells of dorsal tegmental area [Ch8] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3342"} +UMLS:C1321301 Peripheral blood mononuclear cell (cell) biolink:Cell skos:exactMatch NCIT:C12954 Peripheral Blood Mononuclear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3343","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709206 Neoplastic Stellate Chondrocyte biolink:Cell skos:exactMatch NCIT:C53472 Neoplastic Stellate Chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3344","subject_information_content":100.0,"identifierIndex":0} +CL:0002231 epithelial cell of prostate biolink:Cell skos:exactMatch CL:0002231 epithelial cell of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3345","subject_information_content":83.1270105625346} +UMLS:C0333739 Pinocytotic cell biolink:Cell skos:exactMatch SNOMEDCT:57852008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3346","identifierIndex":0} +CL:0010020 cardiac glial cell biolink:Cell skos:exactMatch CL:0010020 cardiac glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3347","subject_information_content":100.0} +UMLS:C5216324 Unidentified cells|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216324 Unidentified cells|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3348"} +CL:0000162 parietal cell biolink:Cell skos:exactMatch CL:0000162 parietal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3349","subject_information_content":100.0} +UMLS:C4329680 Colony Forming Unit-Endothelial Cells biolink:Cell skos:exactMatch NCIT:C129679 Colony Forming Unit-Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3350","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0483181 CD10+CD20+ biolink:Cell skos:exactMatch UMLS:C0483181 CD10+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3351"} +UMLS:C1514006 Neoplastic Centroblast biolink:Cell skos:exactMatch NCIT:C37014 Neoplastic Centroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3352","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1321301 Peripheral blood mononuclear cell (cell) biolink:Cell skos:exactMatch SNOMEDCT:404798000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3343","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4696708 Cells.CD19+CD38+IgM+ biolink:Cell skos:exactMatch UMLS:C4696708 Cells.CD19+CD38+IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3353"} +UMLS:C0037868 sperm cell biolink:Cell skos:exactMatch NCIT:C12602 Spermatozoon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3354","subject_information_content":100.0,"identifierIndex":0} +CL:0002625 seminiferous tubule epithelial cell biolink:Cell skos:exactMatch CL:0002625 seminiferous tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3355","subject_information_content":91.94953810872488} +UMLS:C0014762 Erythroblasts biolink:Cell skos:exactMatch MESH:D004900 Erythroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3356","identifierIndex":0} +CL:0011004 lens fiber cell biolink:Cell skos:exactMatch CL:0011004 lens fiber cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3357","subject_information_content":88.2062864997332} +UMLS:C1440250 Cells.CD120a biolink:Cell skos:exactMatch UMLS:C1440250 Cells.CD120a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3358"} +UMLS:C1881559 Malignant Hobnail Cell biolink:Cell skos:exactMatch NCIT:C61543 Malignant Hobnail Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3359","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522131 Leukocyte - Lymphocyte - T-Lymphocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22582 Mouse T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3360","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182779 Acinar cell of sebaceous gland biolink:Cell skos:exactMatch UMLS:C1182779 Acinar cell of sebaceous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3361"} +UMLS:C5157344 CD19 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157344 CD19 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3362"} +UMLS:C2323094 Melanocyte of skin biolink:Cell skos:exactMatch UMLS:C2323094 Melanocyte of skin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3363"} +UMLS:C0037868 sperm cell biolink:Cell skos:exactMatch MESH:D013094 Spermatozoa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3354","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5220572 Eosinophils|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220572 Eosinophils|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3364"} +UMLS:C0014762 Erythroblasts biolink:Cell skos:exactMatch SNOMEDCT:84227004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3356","identifierIndex":1} +UMLS:C1268443 Normal cell biolink:Cell skos:exactMatch SNOMEDCT:118957004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3365","identifierIndex":0} +UMLS:C2328822 Type D cell of stomach biolink:Cell skos:exactMatch UMLS:C2328822 Type D cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3366"} +UMLS:C5170927 Leukocytes | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170927 Leukocytes | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3367"} +CL:1000432 conjunctival epithelial cell biolink:Cell skos:exactMatch CL:1000432 conjunctival epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3368","subject_information_content":94.92072406280138} +CL:0000317 sebum secreting cell biolink:Cell skos:exactMatch CL:0000317 sebum secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3369","subject_information_content":94.92072406280138} +CL:0002246 peripheral blood stem cell biolink:Cell skos:exactMatch CL:0002246 peripheral blood stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3370","subject_information_content":94.92072406280138} +UMLS:C1519373 Goblet cell of small intestine biolink:Cell skos:exactMatch NCIT:C33567 Small Intestinal Goblet Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3371","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0037868 sperm cell biolink:Cell skos:exactMatch SNOMEDCT:6789008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3354","subject_information_content":100.0,"identifierIndex":2} +CL:1000449 epithelial cell of nephron biolink:Cell skos:exactMatch CL:1000449 epithelial cell of nephron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3372","subject_information_content":70.12043271224773} +UMLS:C2327527 Sympathetic ganglion neuron biolink:Cell skos:exactMatch UMLS:C2327527 Sympathetic ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3373"} +CL:0000118 basket cell biolink:Cell skos:exactMatch CL:0000118 basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3374","subject_information_content":83.89907621744979} +UMLS:C4055421 Autologous WT1-TCRc4 Gene-transduced CD8-positive Tcm/Tn Lymphocytes biolink:Cell skos:exactMatch NCIT:C121308 Autologous WT1-TCRc4 Gene-transduced CD8-positive Tcm/Tn Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3375","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5432253 Descartes-30 biolink:Cell skos:exactMatch UMLS:C5432253 Descartes-30 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3376"} +CL:0000611 eosinophil progenitor cell biolink:Cell skos:exactMatch CL:0000611 eosinophil progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3377","subject_information_content":91.94953810872488} +CL:1000469 myoepithelial cell of main lactiferous duct biolink:Cell skos:exactMatch CL:1000469 myoepithelial cell of main lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3378","subject_information_content":100.0} +CL:0001002 mature CD8_alpha-negative CD11b-negative dendritic cell biolink:Cell skos:exactMatch CL:0001002 mature CD8_alpha-negative CD11b-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3379","subject_information_content":100.0} +UMLS:C1512132 ES03 biolink:Cell skos:exactMatch NCIT:C20251 ES03 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3380","subject_information_content":100.0,"identifierIndex":0} +CL:0002453 oligodendrocyte precursor cell biolink:Cell skos:exactMatch CL:0002453 oligodendrocyte precursor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3381","subject_information_content":100.0} +CL:0011010 lateral mesodermal cell biolink:Cell skos:exactMatch CL:0011010 lateral mesodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3382","subject_information_content":94.92072406280138} +UMLS:C0038856 Suppressor T Lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:50146007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3383","identifierIndex":0} +CL:2000027 cerebellum basket cell biolink:Cell skos:exactMatch CL:2000027 cerebellum basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3384","subject_information_content":100.0} +CL:0000386 attachment cell biolink:Cell skos:exactMatch CL:0000386 attachment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3385","subject_information_content":94.92072406280138} +UMLS:C1708915 Malignant Spindle Cell biolink:Cell skos:exactMatch NCIT:C53637 Malignant Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3386","subject_information_content":80.66139376001811,"identifierIndex":0} +UMLS:C1511247 Bone Marrow Stem Cell at the Earliest Stage of Myeloid Differentiation biolink:Cell skos:exactMatch NCIT:C41061 Bone Marrow Stem Cell at the Earliest Stage of Myeloid Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3387","subject_information_content":100.0,"identifierIndex":0} +CL:0002386 multinucleate macroconidium biolink:Cell skos:exactMatch CL:0002386 multinucleate macroconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3388","subject_information_content":91.94953810872488} +UMLS:C2332713 Type I enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2332713 Type I enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3389"} +UMLS:C0017473 Germ Line biolink:Cell skos:exactMatch UMLS:C0017473 Germ Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3390"} +CL:0001016 immature CD1a-positive Langerhans cell biolink:Cell skos:exactMatch CL:0001016 immature CD1a-positive Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3391","subject_information_content":100.0} +UMLS:C1514035 Neoplastic Myeloblast with Abundant Basophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37176 Neoplastic Myeloblast with Abundant Basophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3392","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709200 Neoplastic Small to Medium-Sized B-Lymphocyte Resembling a Centrocyte biolink:Cell skos:exactMatch NCIT:C45310 Neoplastic Small to Medium-Sized B-Lymphocyte Resembling a Centrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3393","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157499 CD34+CD117+ blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157499 CD34+CD117+ blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3394"} +UMLS:C5163543 Epithelial cells | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163543 Epithelial cells | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3395"} +UMLS:C1514070 Neoplastic Polygonal Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37164 Neoplastic Polygonal Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3396","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000540 neuron biolink:Cell skos:exactMatch CL:0000540 neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3397","subject_information_content":57.79965348612486} +UMLS:C1267932 Lymphocyte positive for CD45RO antigen biolink:Cell skos:exactMatch SNOMEDCT:117375005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3398","identifierIndex":0} +UMLS:C5154483 Basophils | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154483 Basophils | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3399"} +CL:0002162 internal epithelial cell of tympanic membrane biolink:Cell skos:exactMatch CL:0002162 internal epithelial cell of tympanic membrane biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3400","subject_information_content":100.0} +CL:0000427 GLR cell biolink:Cell skos:exactMatch CL:0000427 GLR cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3401","subject_information_content":100.0} +UMLS:C1516687 Coactivated T Cell biolink:Cell skos:exactMatch NCIT:C12941 Coactivated T Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3402","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267959 Lymphocyte positive for CD66B antigen biolink:Cell skos:exactMatch SNOMEDCT:117400003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3403","identifierIndex":0} +UMLS:C1440289 Cells.CD3+CD8+CD45RO-CD45RA- biolink:Cell skos:exactMatch UMLS:C1440289 Cells.CD3+CD8+CD45RO-CD45RA- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3404"} +CL:0005008 macular hair cell biolink:Cell skos:exactMatch CL:0005008 macular hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3405","subject_information_content":100.0} +UMLS:C1317197 Cells.CD4+CD45RO+ biolink:Cell skos:exactMatch UMLS:C1317197 Cells.CD4+CD45RO+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3406"} +UMLS:C1520106 Wisconsin H14 stem cell line biolink:Cell skos:exactMatch NCIT:C20312 WA14 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3407","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157547 CD4+CD45RA+CD45RB+CD45RC+ cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157547 CD4+CD45RA+CD45RB+CD45RC+ cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3408"} +UMLS:C1455886 Atypical Endocervical Cell biolink:Cell skos:exactMatch NCIT:C141518 Atypical Endocervical Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3409","subject_information_content":100.0,"identifierIndex":0} +CL:0002043 CD34-positive, CD38-negative multipotent progenitor cell biolink:Cell skos:exactMatch CL:0002043 CD34-positive, CD38-negative multipotent progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3410","subject_information_content":100.0} +UMLS:C1276862 Entire endocervical glandular cell biolink:Cell skos:exactMatch SNOMEDCT:255065002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3411","identifierIndex":0} +CL:0008048 upper motor neuron biolink:Cell skos:exactMatch CL:0008048 upper motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3412","subject_information_content":100.0} +UMLS:C0883208 Lymphoma cells biolink:Cell skos:exactMatch UMLS:C0883208 Lymphoma cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3413"} +UMLS:C0682643 resting or wandering histiocyte biolink:Cell skos:exactMatch UMLS:C0682643 resting or wandering histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3414"} +UMLS:C0333828 Myeloid cell containing Auer rod(s) biolink:Cell skos:exactMatch SNOMEDCT:74787005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3415","identifierIndex":0} +UMLS:C5446633 Autologous Alpha-PNE Switchable CAR-T Cells CLBR001 biolink:Cell skos:exactMatch NCIT:C175578 Autologous Alpha-PNE Switchable CAR-T Cells CLBR001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3416","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1148382 Monocytes+Macrophages biolink:Cell skos:exactMatch UMLS:C1148382 Monocytes+Macrophages biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3417"} +CL:0000768 immature basophil biolink:Cell skos:exactMatch CL:0000768 immature basophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3418","subject_information_content":89.84144812560278} +UMLS:C1519129 SBIL-2 Transduced Autologous Tumor-Infiltrating Lymphocyte biolink:Cell skos:exactMatch NCIT:C38118 SBIL-2 Transduced Autologous Tumor-Infiltrating Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3419","subject_information_content":100.0,"identifierIndex":0} +CL:0007017 Stiftchenzellen biolink:Cell skos:exactMatch CL:0007017 Stiftchenzellen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3420","subject_information_content":100.0} +CL:0001033 hippocampal granule cell biolink:Cell skos:exactMatch CL:0001033 hippocampal granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3421","subject_information_content":100.0} +CL:0000696 PP cell biolink:Cell skos:exactMatch CL:0000696 PP cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3422","subject_information_content":91.94953810872488} +UMLS:C5157361 CD19+Lambda+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157361 CD19+Lambda+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3423"} +CL:0011113 spiral ganglion neuron biolink:Cell skos:exactMatch CL:0011113 spiral ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3424","subject_information_content":100.0} +UMLS:C5167385 Histiocytes | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5167385 Histiocytes | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3425"} +UMLS:C5237220 Allogeneic CRISPR-Cas9 Engineered Anti-CD19 CAR T Cells CTX110 biolink:Cell skos:exactMatch NCIT:C165492 Allogeneic CRISPR-Cas9 Engineered Anti-CD19 CAR T Cells CTX110 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3426","subject_information_content":100.0,"identifierIndex":0} +CL:0002080 pancreatic centro-acinar cell biolink:Cell skos:exactMatch CL:0002080 pancreatic centro-acinar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3427","subject_information_content":100.0} +CL:1000479 Purkinje myocyte of atrioventricular node biolink:Cell skos:exactMatch CL:1000479 Purkinje myocyte of atrioventricular node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3428","subject_information_content":100.0} +UMLS:C1955314 Leukemia markers biolink:Cell skos:exactMatch UMLS:C1955314 Leukemia markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3429"} +UMLS:C4267710 100 cells.CD19+CD20+ biolink:Cell skos:exactMatch UMLS:C4267710 100 cells.CD19+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3430"} +UMLS:C5157383 CD20+FMC7+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157383 CD20+FMC7+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3431"} +UMLS:C0228087 Macroglia biolink:Cell skos:exactMatch SNOMEDCT:45766003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3432","identifierIndex":0} +UMLS:C1512133 ES04 biolink:Cell skos:exactMatch NCIT:C20252 ES04 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3433","subject_information_content":100.0,"identifierIndex":0} +CL:0002538 intrahepatic cholangiocyte biolink:Cell skos:exactMatch CL:0002538 intrahepatic cholangiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3434","subject_information_content":100.0} +UMLS:C1440292 Cells.CD3+TCR biolink:Cell skos:exactMatch UMLS:C1440292 Cells.CD3+TCR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3435"} +UMLS:C0221280 Elliptocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:45028007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3436","identifierIndex":0} +UMLS:C5173496 Mononuclear cells | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173496 Mononuclear cells | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3437"} +CL:1001577 tonsil squamous cell biolink:Cell skos:exactMatch CL:1001577 tonsil squamous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3438","subject_information_content":100.0} +CL:0000151 secretory cell biolink:Cell skos:exactMatch CL:0000151 secretory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3439","subject_information_content":55.79047201970551} +UMLS:C1267803 FMC7+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117507002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3440","identifierIndex":0} +UMLS:C2736936 Cells.CD56-CD138+ biolink:Cell skos:exactMatch UMLS:C2736936 Cells.CD56-CD138+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3441"} +UMLS:C1979636 Blasts.CD11c biolink:Cell skos:exactMatch UMLS:C1979636 Blasts.CD11c biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3442"} +UMLS:C2339342 Set of A14 dopaminergic cells biolink:Cell skos:exactMatch UMLS:C2339342 Set of A14 dopaminergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3443"} +CL:0000777 mesangial phagocyte biolink:Cell skos:exactMatch CL:0000777 mesangial phagocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3444","subject_information_content":100.0} +UMLS:C0221280 Elliptocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:57882002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3436","identifierIndex":1} +UMLS:C5175606 Other cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175606 Other cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3445"} +CL:0002626 immature astrocyte biolink:Cell skos:exactMatch CL:0002626 immature astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3446","subject_information_content":100.0} +UMLS:C5216271 Monocytes.immature|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216271 Monocytes.immature|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3447"} +UMLS:C1440237 Cell positive for CD105 antigen biolink:Cell skos:exactMatch SNOMEDCT:725330004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3448","identifierIndex":0} +UMLS:C2323619 Set of astrocytes biolink:Cell skos:exactMatch UMLS:C2323619 Set of astrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3449"} +CL:4023065 meis2 expressing cortical GABAergic cell biolink:Cell skos:exactMatch CL:4023065 meis2 expressing cortical GABAergic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3450","subject_information_content":100.0} +UMLS:C2324238 Transitional myocyte of anterior division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2324238 Transitional myocyte of anterior division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3451"} +UMLS:C4322816 CD79A+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322816 CD79A+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3452"} +UMLS:C1515147 TE04 Cell Line biolink:Cell skos:exactMatch NCIT:C20299 TE04 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3453","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0221280 Elliptocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:739028009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3436","identifierIndex":2} +UMLS:C4510882 Blast cell positive for CD36 antigen biolink:Cell skos:exactMatch SNOMEDCT:725109000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3454","identifierIndex":0} +CL:0002667 type 5 otic fibrocyte biolink:Cell skos:exactMatch CL:0002667 type 5 otic fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3455","subject_information_content":100.0} +CL:1000397 endothelial cell of venous sinus of red pulp of spleen biolink:Cell skos:exactMatch CL:1000397 endothelial cell of venous sinus of red pulp of spleen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3456","subject_information_content":100.0} +UMLS:C1513970 Neoplastic Ganglion Cell biolink:Cell skos:exactMatch NCIT:C37146 Neoplastic Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3457","subject_information_content":83.1270105625346,"identifierIndex":0} +CL:0000975 short lived plasma cell biolink:Cell skos:exactMatch CL:0000975 short lived plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3458","subject_information_content":88.2062864997332} +NCIT:C12547 Monocyte biolink:Cell skos:exactMatch NCIT:C12547 Monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3459","subject_information_content":89.84144812560278} +CL:0000408 male gamete biolink:Cell skos:exactMatch CL:0000408 male gamete biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3460","subject_information_content":84.76217218840416} +CL:1001592 gall bladder glandular cell biolink:Cell skos:exactMatch CL:1001592 gall bladder glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3461","subject_information_content":100.0} +UMLS:C5416838 Autologous Non-Hematopoietic Peripheral Blood Stem Cells biolink:Cell skos:exactMatch UMLS:C5416838 Autologous Non-Hematopoietic Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3462"} +UMLS:C4706671 Genetically modified T-cell biolink:Cell skos:exactMatch UMLS:C4706671 Genetically modified T-cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3463"} +UMLS:C2323184 Purkinje myocyte of internodal tract biolink:Cell skos:exactMatch UMLS:C2323184 Purkinje myocyte of internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3464"} +UMLS:C3899843 C46/CCR5/P140K Lentiviral Vector-transduced Autologous HSPCs biolink:Cell skos:exactMatch NCIT:C119735 C46/CCR5/P140K Lentiviral Vector-transduced Autologous HSPCs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3465","subject_information_content":100.0,"identifierIndex":0} +CL:0002509 CD103-positive, langerin-positive lymph node dendritic cell biolink:Cell skos:exactMatch CL:0002509 CD103-positive, langerin-positive lymph node dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3466","subject_information_content":100.0} +UMLS:C1518172 Malignant Endocrine Cell biolink:Cell skos:exactMatch NCIT:C36929 Malignant Endocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3467","subject_information_content":75.5821178228195,"identifierIndex":0} +CL:0001000 CD8_alpha-positive CD11b-negative dendritic cell biolink:Cell skos:exactMatch CL:0001000 CD8_alpha-positive CD11b-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3468","subject_information_content":91.94953810872488} +UMLS:C1707339 Neoplastic Centrocyte biolink:Cell skos:exactMatch NCIT:C36743 Neoplastic Centrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3469","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C4038491 Cells.diploid.G2 phase biolink:Cell skos:exactMatch UMLS:C4038491 Cells.diploid.G2 phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3470"} +UMLS:C5157521 CD3-CD16+CD56+ (Natural killer) cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157521 CD3-CD16+CD56+ (Natural killer) cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3471"} +UMLS:C1517640 KA40 cell line biolink:Cell skos:exactMatch NCIT:C20270 KA40 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3472","subject_information_content":100.0,"identifierIndex":0} +CL:0002343 decidual natural killer cell, human biolink:Cell skos:exactMatch CL:0002343 decidual natural killer cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3473","subject_information_content":100.0} +CL:0002205 brush cell of lobular bronchiole biolink:Cell skos:exactMatch CL:0002205 brush cell of lobular bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3474","subject_information_content":94.92072406280138} +UMLS:C5206131 Autologous Anti-CD7 CAR/28zeta CRISPR-edited T-lymphocytes biolink:Cell skos:exactMatch NCIT:C161832 Autologous Anti-CD7 CAR/28zeta CRISPR-edited T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3475","subject_information_content":100.0,"identifierIndex":0} +MESH:D009474 Neurons biolink:Cell skos:exactMatch MESH:D009474 Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3476"} +UMLS:C1514071 Malignant Primitive Germ Cell biolink:Cell skos:exactMatch NCIT:C36897 Malignant Primitive Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3477","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5173495 Mononuclear cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173495 Mononuclear cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3478"} +UMLS:C1179416 Endothelial cell of venous sinus of red pulp of spleen biolink:Cell skos:exactMatch UMLS:C1179416 Endothelial cell of venous sinus of red pulp of spleen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3479"} +UMLS:C1267905 Lymphocyte positive for CD32 antigen biolink:Cell skos:exactMatch SNOMEDCT:117576007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3480","identifierIndex":0} +UMLS:C4725789 Autologous BCMA/TACI-targeted CAR T Cells AUTO2 biolink:Cell skos:exactMatch NCIT:C150509 Autologous BCMA/TACI-targeted CAR T Cells AUTO2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3481","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0227693 Umbrella cell biolink:Cell skos:exactMatch SNOMEDCT:16023000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3482","identifierIndex":0} +UMLS:C2964437 Pseudo Pelger Huet cells biolink:Cell skos:exactMatch UMLS:C2964437 Pseudo Pelger Huet cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3483"} +UMLS:C1182650 Ciliary muscle cell biolink:Cell skos:exactMatch UMLS:C1182650 Ciliary muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3484"} +UMLS:C1183897 Epithelial cell of prostatic acinus biolink:Cell skos:exactMatch UMLS:C1183897 Epithelial cell of prostatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3485"} +UMLS:C4518175 Population of all immature granulocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726595000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3486","identifierIndex":0} +UMLS:C5157327 CD16+CD56+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157327 CD16+CD56+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3487"} +CL:0000171 pancreatic A cell biolink:Cell skos:exactMatch CL:0000171 pancreatic A cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3488","subject_information_content":100.0} +CL:0000513 cardiac muscle myoblast biolink:Cell skos:exactMatch CL:0000513 cardiac muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3489","subject_information_content":100.0} +UMLS:C5163450 Eosinophils | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163450 Eosinophils | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3490"} +CL:0001080 NKp44-negative group 3 innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001080 NKp44-negative group 3 innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3491","subject_information_content":100.0} +UMLS:C2360310 Reticulocytes.high light scatter biolink:Cell skos:exactMatch UMLS:C2360310 Reticulocytes.high light scatter biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3492"} +UMLS:C5175157 Nucleated erythrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175157 Nucleated erythrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3493"} +CL:0009036 appendix macrophage biolink:Cell skos:exactMatch CL:0009036 appendix macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3494","subject_information_content":100.0} +UMLS:C1708874 Malignant Epithelioid Fibroblast biolink:Cell skos:exactMatch NCIT:C49029 Malignant Epithelioid Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3495","subject_information_content":100.0,"identifierIndex":0} +CL:0000919 CD8-positive, CD25-positive, alpha-beta regulatory T cell biolink:Cell skos:exactMatch CL:0000919 CD8-positive, CD25-positive, alpha-beta regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3496","subject_information_content":100.0} +UMLS:C1440309 Cells.CD42b biolink:Cell skos:exactMatch UMLS:C1440309 Cells.CD42b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3497"} +UMLS:C1516727 Common Thymocyte biolink:Cell skos:exactMatch NCIT:C32360 Common Thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3498","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517358 GE91 biolink:Cell skos:exactMatch NCIT:C20261 GE91 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3499","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0231011 Ootid biolink:Cell skos:exactMatch SNOMEDCT:49268005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3500","identifierIndex":0} +UMLS:C5212874 Monocytes.HLA-DR biolink:Cell skos:exactMatch UMLS:C5212874 Monocytes.HLA-DR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3501"} +UMLS:C1440238 Cell positive for CD106 antigen biolink:Cell skos:exactMatch SNOMEDCT:725718007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3502","identifierIndex":0} +UMLS:C4289951 Autologous HBV-specific TCR-redirected T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C126270 Autologous HBV-specific TCR-redirected T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3503","subject_information_content":100.0,"identifierIndex":0} +CL:0017001 splanchnic mesodermal cell biolink:Cell skos:exactMatch CL:0017001 splanchnic mesodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3504","subject_information_content":100.0} +CL:0002272 motilin secreting cell biolink:Cell skos:exactMatch CL:0002272 motilin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3505","subject_information_content":91.94953810872488} +UMLS:C5180574 Segmented neutrophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180574 Segmented neutrophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3506"} +UMLS:C4511890 Population of all burr cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726507002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3507","identifierIndex":0} +UMLS:C1179470 Epithelial cell of stomach biolink:Cell skos:exactMatch UMLS:C1179470 Epithelial cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3508"} +UMLS:C5382908 HLA-B8 CMV specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382908 HLA-B8 CMV specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3509"} +UMLS:C3495561 A7 noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3495561 A7 noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3510"} +CL:0000439 prolactin secreting cell biolink:Cell skos:exactMatch CL:0000439 prolactin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3511","subject_information_content":91.94953810872488} +CL:0008037 gamma motor neuron biolink:Cell skos:exactMatch CL:0008037 gamma motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3512","subject_information_content":91.94953810872488} +UMLS:C1267947 Lymphocyte positive for CD55 antigen biolink:Cell skos:exactMatch SNOMEDCT:117390009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3513","identifierIndex":0} +CL:0000362 epidermal cell biolink:Cell skos:exactMatch CL:0000362 epidermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3514","subject_information_content":74.37813033179641} +CL:0002262 endothelial cell of sinusoid biolink:Cell skos:exactMatch CL:0002262 endothelial cell of sinusoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3515","subject_information_content":84.76217218840416} +UMLS:C4727012 Autologous CD8+ SLC45A2-specific T Lymphocytes biolink:Cell skos:exactMatch NCIT:C153083 Autologous CD8+ SLC45A2-specific T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3516","subject_information_content":100.0,"identifierIndex":0} +CL:2000015 fibroblast of arm biolink:Cell skos:exactMatch CL:2000015 fibroblast of arm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3517","subject_information_content":100.0} +UMLS:C1979102 Blasts.CD123 biolink:Cell skos:exactMatch UMLS:C1979102 Blasts.CD123 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3518"} +UMLS:C1531511 biolink:Cell skos:exactMatch UMLS:C1531511 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3519"} +CL:0002628 immature microglial cell biolink:Cell skos:exactMatch CL:0002628 immature microglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3520","subject_information_content":100.0} +UMLS:C0596993 Myeloid Progenitor Cells biolink:Cell skos:exactMatch UMLS:C0596993 Myeloid Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3521"} +UMLS:C4322831 Type 2C muscle fiber biolink:Cell skos:exactMatch UMLS:C4322831 Type 2C muscle fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3522"} +CL:0000618 sheath cell biolink:Cell skos:exactMatch CL:0000618 sheath cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3523","subject_information_content":94.92072406280138} +UMLS:C5157451 CD3+CD56+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157451 CD3+CD56+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3524"} +UMLS:C1519740 UC01 Cell Line biolink:Cell skos:exactMatch NCIT:C20305 UC01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3525","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2717773 Gametophytes biolink:Cell skos:exactMatch UMLS:C2717773 Gametophytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3526"} +CL:1000313 gastric goblet cell biolink:Cell skos:exactMatch CL:1000313 gastric goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3527","subject_information_content":89.84144812560278} +UMLS:C2985405 Nonspecific Immune Cell biolink:Cell skos:exactMatch NCIT:C93035 Nonspecific Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3528","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440389 Cells.HLA-DR+ biolink:Cell skos:exactMatch UMLS:C1440389 Cells.HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3529"} +CL:0005020 lymphangioblast biolink:Cell skos:exactMatch CL:0005020 lymphangioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3530","subject_information_content":91.94953810872488} +UMLS:C1711306 Malignant Thyroid Gland Follicular Clear Cell biolink:Cell skos:exactMatch NCIT:C47821 Malignant Thyroid Gland Follicular Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3531","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5380995 Cells.CD8.HLA-B7 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5380995 Cells.CD8.HLA-B7 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3532"} +UMLS:C3831440 Autologous CD19-28z Chimeric Antigen Receptor-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C106247 Autologous CD19-28z Chimeric Antigen Receptor-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3533","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0393073 autologous Epstein-Barr virus-specific cytotoxic T lymphocytes (cell) biolink:Cell skos:exactMatch NCIT:C12920 EBV-Specific Cytotoxic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3534","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2326171 Pancreatic goblet cell biolink:Cell skos:exactMatch UMLS:C2326171 Pancreatic goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3535"} +CL:1001611 cerebellar neuron biolink:Cell skos:exactMatch CL:1001611 cerebellar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3536","subject_information_content":91.94953810872488} +UMLS:C3826391 Erythrocyte disorders biolink:Cell skos:exactMatch UMLS:C3826391 Erythrocyte disorders biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3537"} +CL:0000933 type II NK T cell secreting interleukin-4 biolink:Cell skos:exactMatch CL:0000933 type II NK T cell secreting interleukin-4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3538","subject_information_content":100.0} +UMLS:C2336894 Goblet cell of epithelium proper of appendix biolink:Cell skos:exactMatch UMLS:C2336894 Goblet cell of epithelium proper of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3539"} +CL:0009008 gastrointestinal tract (lamina propria) macrophage of large intestine biolink:Cell skos:exactMatch CL:0009008 gastrointestinal tract (lamina propria) macrophage of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3540","subject_information_content":100.0} +UMLS:C4699468 Light-chain negative plasma cells biolink:Cell skos:exactMatch UMLS:C4699468 Light-chain negative plasma cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3541"} +UMLS:C0597690 WI38 cell biolink:Cell skos:exactMatch UMLS:C0597690 WI38 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3542"} +CL:0000545 T-helper 1 cell biolink:Cell skos:exactMatch CL:0000545 T-helper 1 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3543","subject_information_content":100.0} +UMLS:C4277577 A549 Cells biolink:Cell skos:exactMatch MESH:D000072283 A549 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3544","identifierIndex":0} +UMLS:C0020204 Hybridomas biolink:Cell skos:exactMatch NCIT:C16700 Hybridoma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3545","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513487 Monovacuolated Lipoblast biolink:Cell skos:exactMatch NCIT:C36972 Monovacuolated Lipoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3546","subject_information_content":100.0,"identifierIndex":0} +CL:0002005 CD34-positive, CD38-positive megakaryocyte erythroid progenitor cell biolink:Cell skos:exactMatch CL:0002005 CD34-positive, CD38-positive megakaryocyte erythroid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3547","subject_information_content":100.0} +UMLS:C5163437 Eosinophils | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163437 Eosinophils | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3548"} +CL:0002270 type EC2 enteroendocrine cell biolink:Cell skos:exactMatch CL:0002270 type EC2 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3549","subject_information_content":100.0} +MESH:D005347 Fibroblasts biolink:Cell skos:exactMatch MESH:D005347 Fibroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3550"} +CL:0000347 scleral cell biolink:Cell skos:exactMatch CL:0000347 scleral cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3551","subject_information_content":100.0} +UMLS:C2709114 Cells.CD138+Kappa+ biolink:Cell skos:exactMatch UMLS:C2709114 Cells.CD138+Kappa+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3552"} +UMLS:C3178914 B-Lymphocytes, Regulatory biolink:Cell skos:exactMatch NCIT:C113502 Regulatory B Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3553","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519121 SA02 biolink:Cell skos:exactMatch NCIT:C20265 SA02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3554","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0020204 Hybridomas biolink:Cell skos:exactMatch MESH:D006825 Hybridomas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3545","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1623039 Veiled Cells biolink:Cell skos:exactMatch SNOMEDCT:127942009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3555","identifierIndex":0} +UMLS:C0487156 Lymphocyte positive for both CD5 antigen and CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:117532000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3556","identifierIndex":0} +UMLS:C1180924 Non-nucleated cell biolink:Cell skos:exactMatch UMLS:C1180924 Non-nucleated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3557"} +UMLS:C0945933 CD45+ cell biolink:Cell skos:exactMatch SNOMEDCT:732272000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3558","identifierIndex":0} +UMLS:C5417906 Autologous Anti-FLT3 CAR T Cells AMG 553 biolink:Cell skos:exactMatch NCIT:C172197 Autologous Anti-FLT3 CAR T Cells AMG 553 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3559","subject_information_content":100.0,"identifierIndex":0} +NCIT:C13158 Columnar Cell biolink:Cell skos:exactMatch NCIT:C13158 Columnar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3560","subject_information_content":88.2062864997332} +UMLS:C1515077 Olfactory Supporting Cell biolink:Cell skos:exactMatch NCIT:C13152 Olfactory Supporting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3561","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3178914 B-Lymphocytes, Regulatory biolink:Cell skos:exactMatch MESH:D060151 B-Lymphocytes, Regulatory biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3553","subject_information_content":100.0,"identifierIndex":1} +UMLS:C2329214 Neurogliaform cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2329214 Neurogliaform cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3562"} +UMLS:C0020204 Hybridomas biolink:Cell skos:exactMatch SNOMEDCT:25326005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3545","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0682548 Amphophilic cell biolink:Cell skos:exactMatch UMLS:C0682548 Amphophilic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3563"} +CL:0000367 sheath cell (sensu Nematoda) biolink:Cell skos:exactMatch CL:0000367 sheath cell (sensu Nematoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3564","subject_information_content":100.0} +UMLS:C0229525 Endocrine Cells biolink:Cell skos:exactMatch NCIT:C32506 Endocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3565","subject_information_content":73.15398369131682,"identifierIndex":0} +UMLS:C1881542 Malignant Cutaneous Basal Cell biolink:Cell skos:exactMatch NCIT:C60783 Malignant Cutaneous Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3566","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517357 Geron H14 stem cell line biolink:Cell skos:exactMatch NCIT:C20260 GE14 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3567","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4725853 CAR T-Cells AMG 119 biolink:Cell skos:exactMatch NCIT:C150586 CAR T-Cells AMG 119 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3568","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979240 Blasts.CD36 biolink:Cell skos:exactMatch UMLS:C1979240 Blasts.CD36 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3569"} +UMLS:C2599785 Granulocytes.CD59 deficient biolink:Cell skos:exactMatch UMLS:C2599785 Granulocytes.CD59 deficient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3570"} +UMLS:C5237176 Autologous Tn-MUC1-specific CAR T-lymphocytes biolink:Cell skos:exactMatch NCIT:C165433 Autologous Tn-MUC1-specific CAR T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3571","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3495620 A11 dopamine cells biolink:Cell skos:exactMatch UMLS:C3495620 A11 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3572"} +UMLS:C2326168 Oligodendroblast biolink:Cell skos:exactMatch UMLS:C2326168 Oligodendroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3573"} +MESH:D041681 NIH 3T3 Cells biolink:Cell skos:exactMatch MESH:D041681 NIH 3T3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3574"} +UMLS:C0229525 Endocrine Cells biolink:Cell skos:exactMatch MESH:D055098 Endocrine Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3565","subject_information_content":73.15398369131682,"identifierIndex":1} +UMLS:C3496271 B9 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496271 B9 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3575"} +CL:2000090 dentate gyrus of hippocampal formation stellate cell biolink:Cell skos:exactMatch CL:2000090 dentate gyrus of hippocampal formation stellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3576","subject_information_content":100.0} +UMLS:C5216222 Hairy cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216222 Hairy cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3577"} +UMLS:C4267783 Cells.CD4-CD8- biolink:Cell skos:exactMatch UMLS:C4267783 Cells.CD4-CD8- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3578"} +UMLS:C0162556 Suppressor inducer T lymphocyte biolink:Cell skos:exactMatch NCIT:C12541 Suppressor-Inducer T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3579","subject_information_content":100.0,"identifierIndex":0} +CL:0000783 multinucleated phagocyte biolink:Cell skos:exactMatch CL:0000783 multinucleated phagocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3580","subject_information_content":100.0} +UMLS:C1545578 Neutrophils.hypogranulated biolink:Cell skos:exactMatch UMLS:C1545578 Neutrophils.hypogranulated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3581"} +UMLS:C1881595 Malignant Small Round Cell with Scant Amount of Dark Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C60805 Malignant Small Round Cell with Scant Amount of Dark Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3582","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4304488 Population of all hypersegmented neutrophils in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719700004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3583","identifierIndex":0} +UMLS:C0229525 Endocrine Cells biolink:Cell skos:exactMatch SNOMEDCT:68233007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3565","subject_information_content":73.15398369131682,"identifierIndex":2} +UMLS:C1512993 Marginal Zone B-Lymphocyte of Nodal Type biolink:Cell skos:exactMatch NCIT:C38322 Marginal Zone B-Lymphocyte of Nodal Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3584","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5220574 Epithelial cells.non-squamous|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220574 Epithelial cells.non-squamous|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3585"} +UMLS:C1515186 Gamma/Delta T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39585 Gamma/Delta T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3586","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000378 supporting cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000378 supporting cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3587","subject_information_content":85.74066969721673} +UMLS:C5216263 Malignant cells|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216263 Malignant cells|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3588"} +UMLS:C0882804 Cells.CD16c+CD56+ biolink:Cell skos:exactMatch UMLS:C0882804 Cells.CD16c+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3589"} +UMLS:C5157252 CD11+CD18+ cells | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157252 CD11+CD18+ cells | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3590"} +UMLS:C5421258 Original Tumor Cell Sample biolink:Cell skos:exactMatch NCIT:C172293 Original Tumor Cell Sample biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3591","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512246 Goteborg ES Cell Line biolink:Cell skos:exactMatch NCIT:C20263 Goteborg ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3592","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0000661 distal tip cell (sensu Nematoda) biolink:Cell skos:exactMatch CL:0000661 distal tip cell (sensu Nematoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3593","subject_information_content":100.0} +UMLS:C1440282 Cells.CD3+CD4+CD45RO+CD45RA+ biolink:Cell skos:exactMatch UMLS:C1440282 Cells.CD3+CD4+CD45RO+CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3594"} +UMLS:C5216249 Lymphocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216249 Lymphocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3595"} +CL:4023027 L5 T-Martinotti sst GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023027 L5 T-Martinotti sst GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3596","subject_information_content":100.0} +UMLS:C1514074 Neoplastic Promonocyte biolink:Cell skos:exactMatch NCIT:C37075 Neoplastic Promonocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3597","subject_information_content":100.0,"identifierIndex":0} +CL:0001044 effector CD4-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0001044 effector CD4-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3598","subject_information_content":100.0} +UMLS:C3484293 Basophils+Mast cells biolink:Cell skos:exactMatch UMLS:C3484293 Basophils+Mast cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3599"} +UMLS:C5216291 Neutrophils|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216291 Neutrophils|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3600"} +UMLS:C1520026 Visceral Afferent Neuron biolink:Cell skos:exactMatch NCIT:C33877 Visceral Afferent Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3601","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3896657 Anti-CD3 OKT3/Humanized Anti-GD2 3F8 Bispecific Antibody-activated T Lymphocytes biolink:Cell skos:exactMatch NCIT:C116330 Anti-CD3 OKT3/Humanized Anti-GD2 3F8 Bispecific Antibody-activated T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3602","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0039194 T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C12476 T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3603","subject_information_content":71.3332970622678,"identifierIndex":0} +CL:0009077 subcapsular thymic epithelial cell biolink:Cell skos:exactMatch CL:0009077 subcapsular thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3604"} +UMLS:C0229646 Basophilic myelocyte biolink:Cell skos:exactMatch SNOMEDCT:17295002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3605","identifierIndex":0} +UMLS:C5163447 Eosinophils | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163447 Eosinophils | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3606"} +MESH:D000091245 Memory B Cells biolink:Cell skos:exactMatch MESH:D000091245 Memory B Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3607"} +UMLS:C5170471 Large granular lymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170471 Large granular lymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3608"} +UMLS:C5174615 Neutrophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174615 Neutrophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3609"} +UMLS:C5380992 Cells.CD8.CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5380992 Cells.CD8.CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3610"} +UMLS:C1181164 Set of peripheral neuroglial cells biolink:Cell skos:exactMatch UMLS:C1181164 Set of peripheral neuroglial cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3611"} +CL:2000008 microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000008 microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3612","subject_information_content":84.76217218840416} +UMLS:C0039194 T-Lymphocyte biolink:Cell skos:exactMatch MESH:D013601 T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3603","subject_information_content":71.3332970622678,"identifierIndex":1} +UMLS:C0333826 Atypical lymphoblast biolink:Cell skos:exactMatch NCIT:C12914 Neoplastic Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3613","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1440335 Cells.CD59 deficient biolink:Cell skos:exactMatch UMLS:C1440335 Cells.CD59 deficient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3614"} +UMLS:C2329553 Enterocyte of epithelium proper of ileum biolink:Cell skos:exactMatch UMLS:C2329553 Enterocyte of epithelium proper of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3615"} +UMLS:C5157253 CD11+CD20+ cells | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157253 CD11+CD20+ cells | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3616"} +CL:4023023 L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023023 L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3617","subject_information_content":100.0} +CL:0001021 CD34-positive, CD38-positive common lymphoid progenitor biolink:Cell skos:exactMatch CL:0001021 CD34-positive, CD38-positive common lymphoid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3618","subject_information_content":100.0} +UMLS:C1440247 Cells.CD11c+CD20+ biolink:Cell skos:exactMatch UMLS:C1440247 Cells.CD11c+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3619"} +UMLS:C5172549 Metamyelocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172549 Metamyelocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3620"} +UMLS:C5216273 Monocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216273 Monocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3621"} +UMLS:C0039194 T-Lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:57184004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3603","subject_information_content":71.3332970622678,"identifierIndex":2} +UMLS:C0333826 Atypical lymphoblast biolink:Cell skos:exactMatch SNOMEDCT:84863008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3613","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1956051 Hair Cells, Ampulla biolink:Cell skos:exactMatch MESH:D054777 Hair Cells, Ampulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3622","identifierIndex":0} +UMLS:C5448015 Allogeneic MultiTAA-specific T-lymphocytes MT-401 biolink:Cell skos:exactMatch UMLS:C5448015 Allogeneic MultiTAA-specific T-lymphocytes MT-401 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3623"} +UMLS:C5171675 Lymphocytes Immunoblastic | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171675 Lymphocytes Immunoblastic | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3624"} +CL:0000343 visual pigment cell (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000343 visual pigment cell (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3625","subject_information_content":100.0} +UMLS:C2323029 Mesothelial cell of dura mater biolink:Cell skos:exactMatch UMLS:C2323029 Mesothelial cell of dura mater biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3626"} +UMLS:C1881553 Malignant Epithelial Small Polygonal Cell biolink:Cell skos:exactMatch NCIT:C60996 Malignant Epithelial Small Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3627","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0206428 Retinal Cone biolink:Cell skos:exactMatch UMLS:C0206428 Retinal Cone biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3628"} +UMLS:C3176795 Blasts.cytoplasmic CD179a biolink:Cell skos:exactMatch UMLS:C3176795 Blasts.cytoplasmic CD179a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3629"} +UMLS:C0019000 Hemocytes (cell) biolink:Cell skos:exactMatch MESH:D006434 Hemocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3630","identifierIndex":0} +UMLS:C2736930 Cells.CD19+CD34+ biolink:Cell skos:exactMatch UMLS:C2736930 Cells.CD19+CD34+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3631"} +UMLS:C1518229 Malignant Osteoblast biolink:Cell skos:exactMatch NCIT:C36901 Malignant Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3632","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C5419440 Autologous Anti-CD20 CAR Transduced CD4/CD8 Enriched T-cells MB-CART20.1 biolink:Cell skos:exactMatch NCIT:C172063 Autologous Anti-CD20 CAR Transduced CD4/CD8 Enriched T-cells MB-CART20.1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3633","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4763339 Axonic neuron biolink:Cell skos:exactMatch UMLS:C4763339 Axonic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3634"} +UMLS:C1518178 Malignant Epithelial Small Cell biolink:Cell skos:exactMatch NCIT:C36795 Malignant Epithelial Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3635","subject_information_content":83.1270105625346,"identifierIndex":0} +UMLS:C1267831 Lymphocyte positive for both CD3 antigen and CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:117522007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3636","identifierIndex":0} +UMLS:C3496151 A6 noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3496151 A6 noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3637"} +UMLS:C4704950 Adipose-Derived Mesenchymal Stem Cells biolink:Cell skos:exactMatch UMLS:C4704950 Adipose-Derived Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3638"} +CL:0000212 absorptive cell biolink:Cell skos:exactMatch CL:0000212 absorptive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3639","subject_information_content":79.68289625120555} +UMLS:C1513953 Neoplastic Endocrine Clear Cell biolink:Cell skos:exactMatch NCIT:C36930 Neoplastic Endocrine Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3640","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C1441341 100 erythrocytes biolink:Cell skos:exactMatch UMLS:C1441341 100 erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3641"} +UMLS:C4263667 T-cell naive & memory & effector (CD27 and CD45RA) subsets biolink:Cell skos:exactMatch UMLS:C4263667 T-cell naive & memory & effector (CD27 and CD45RA) subsets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3642"} +CL:1001285 vasa recta descending limb cell biolink:Cell skos:exactMatch CL:1001285 vasa recta descending limb cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3643","subject_information_content":91.94953810872488} +CL:0002209 intermediate epitheliocyte biolink:Cell skos:exactMatch CL:0002209 intermediate epitheliocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3644","subject_information_content":100.0} +UMLS:C1519322 Signet Ring Stromal Cell biolink:Cell skos:exactMatch NCIT:C36902 Signet Ring Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3645","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4287718 Cord Blood-derived Expanded Natural Killer Cells PNK-007 biolink:Cell skos:exactMatch NCIT:C128560 Cord Blood-derived Expanded Natural Killer Cells PNK-007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3646","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1510930 Anti-MART-1 TCR Retroviral Vector-Transduced Autologous TIL biolink:Cell skos:exactMatch NCIT:C38137 Anti-MART-1 TCR Retroviral Vector-Transduced Autologous TIL biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3647","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157231 CD1 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157231 CD1 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3648"} +CL:0002068 Purkinje myocyte biolink:Cell skos:exactMatch CL:0002068 Purkinje myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3649","subject_information_content":88.2062864997332} +UMLS:C1440392 Cells.multiple drug resistance biolink:Cell skos:exactMatch UMLS:C1440392 Cells.multiple drug resistance biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3650"} +UMLS:C1545485 Parabasal epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:725265002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3651","identifierIndex":0} +UMLS:C0225828 Myocytes, Cardiac biolink:Cell skos:exactMatch NCIT:C13002 Cardiomyocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3652","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4696640 Cells.CD4+CD25-CD127+ biolink:Cell skos:exactMatch UMLS:C4696640 Cells.CD4+CD25-CD127+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3653"} +UMLS:C5418990 Allogeneic Anti-BCMA-CAR T-cells PBCAR269A biolink:Cell skos:exactMatch NCIT:C171066 Allogeneic Anti-BCMA-CAR T-cells PBCAR269A biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3654","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267892 Lymphocyte positive for CD22 antigen biolink:Cell skos:exactMatch SNOMEDCT:116819008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3655","identifierIndex":0} +UMLS:C5157441 CD3+CD4+CD27+CD62L+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157441 CD3+CD4+CD27+CD62L+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3656"} +UMLS:C0427890 Urinary epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:250442001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3657","identifierIndex":0} +UMLS:C1717809 Erythrocytes.CD55 & CD59 biolink:Cell skos:exactMatch UMLS:C1717809 Erythrocytes.CD55 & CD59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3658"} +UMLS:C4086237 Dendritic Cell-Precision Multiple Antigen T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C125634 Dendritic Cell-Precision Multiple Antigen T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3659","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0949667 Hurthle Cells biolink:Cell skos:exactMatch NCIT:C33925 Thyroid Gland Oxyphil Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3660","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157355 CD19+CD27+IgD-IgM+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157355 CD19+CD27+IgD-IgM+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3661"} +UMLS:C0225828 Myocytes, Cardiac biolink:Cell skos:exactMatch MESH:D032383 Myocytes, Cardiac biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3652","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1267893 Lymphocyte positive for both CD22 antigen and CD11C antigen biolink:Cell skos:exactMatch SNOMEDCT:117566009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3662","identifierIndex":0} +UMLS:C0230521 Mitotic cell in anaphase biolink:Cell skos:exactMatch SNOMEDCT:7566005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3663","identifierIndex":0} +UMLS:C5446540 Lymphodepleted Autologous CD4-directed CAR T Cells biolink:Cell skos:exactMatch NCIT:C175459 Lymphodepleted Autologous CD4-directed CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3664","subject_information_content":100.0,"identifierIndex":0} +CL:1001052 kidney cortex vein cell biolink:Cell skos:exactMatch CL:1001052 kidney cortex vein cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3665","subject_information_content":85.74066969721673} +UMLS:C1514036 Neoplastic Myeloblast with Azurophilic Granules biolink:Cell skos:exactMatch NCIT:C37178 Neoplastic Myeloblast with Azurophilic Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3666","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682522 AGMK cell biolink:Cell skos:exactMatch UMLS:C0682522 AGMK cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3667"} +CL:1001561 vomeronasal sensory neuron biolink:Cell skos:exactMatch CL:1001561 vomeronasal sensory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3668","subject_information_content":100.0} +UMLS:C1179009 Retinal pigment cell biolink:Cell skos:exactMatch UMLS:C1179009 Retinal pigment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3669"} +UMLS:C0225828 Myocytes, Cardiac biolink:Cell skos:exactMatch SNOMEDCT:86441007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3652","subject_information_content":100.0,"identifierIndex":2} +CL:0000492 CD4-positive helper T cell biolink:Cell skos:exactMatch CL:0000492 CD4-positive helper T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3670","subject_information_content":83.89907621744979} +UMLS:C0524980 Enterochromaffin-like Cells biolink:Cell skos:exactMatch SNOMEDCT:14099006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3671","identifierIndex":0} +UMLS:C5421182 Mocemestrocel biolink:Cell skos:exactMatch NCIT:C175146 Mocemestrocel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3672","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4683874 Atypical Glandular Cell-Favor Neoplasia biolink:Cell skos:exactMatch NCIT:C141517 Atypical Glandular Cell-Favor Neoplasia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3673","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1135922 Myoblasts, Skeletal biolink:Cell skos:exactMatch MESH:D032448 Myoblasts, Skeletal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3674","identifierIndex":0} +UMLS:C1514090 Neoplastic Small Mature Neuroepithelial Cell biolink:Cell skos:exactMatch NCIT:C41837 Neoplastic Small Mature Neuroepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3675","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511548 Cryopreserved Cell biolink:Cell skos:exactMatch NCIT:C19314 Cryopreserved Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3676","subject_information_content":100.0,"identifierIndex":0} +CL:0000899 T-helper 17 cell biolink:Cell skos:exactMatch CL:0000899 T-helper 17 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3677","subject_information_content":100.0} +UMLS:C5154539 B-cell CD27 and IgD subsets | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5154539 B-cell CD27 and IgD subsets | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3678"} +UMLS:C0009781 Connective Tissue Cells biolink:Cell skos:exactMatch UMLS:C0009781 Connective Tissue Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3679"} +UMLS:C2350248 Hemangioblasts biolink:Cell skos:exactMatch MESH:D055018 Hemangioblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3680","identifierIndex":0} +UMLS:C1440259 Cells.CD16+CD57+ biolink:Cell skos:exactMatch UMLS:C1440259 Cells.CD16+CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3681"} +UMLS:C1267868 Lymphocyte positive for CD11C antigen biolink:Cell skos:exactMatch SNOMEDCT:116849005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3682","identifierIndex":0} +UMLS:C1511762 Mouse Dendritic Cell biolink:Cell skos:exactMatch NCIT:C22596 Mouse Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3683","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0933802 Smooth columnar cell biolink:Cell skos:exactMatch UMLS:C0933802 Smooth columnar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3684"} +MESH:D013171 Spores, Bacterial biolink:Cell skos:exactMatch MESH:D013171 Spores, Bacterial biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3685"} +MESH:D010010 Osteoclasts biolink:Cell skos:exactMatch MESH:D010010 Osteoclasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3686"} +UMLS:C1514098 Neoplastic Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C36937 Neoplastic Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3687","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1879789 Basophilic Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C61051 Basophilic Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3688","subject_information_content":100.0,"identifierIndex":0} +CL:0000456 mineralocorticoid secreting cell biolink:Cell skos:exactMatch CL:0000456 mineralocorticoid secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3689","subject_information_content":94.92072406280138} +UMLS:C2338973 Goblet cell of epithelium of pyloric gland biolink:Cell skos:exactMatch UMLS:C2338973 Goblet cell of epithelium of pyloric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3690"} +UMLS:C0596568 fiber cell biolink:Cell skos:exactMatch UMLS:C0596568 fiber cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3691"} +UMLS:C0229423 Mastoid cells biolink:Cell skos:exactMatch SNOMEDCT:57222008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3692","identifierIndex":0} +CL:2000046 ventricular cardiac muscle cell biolink:Cell skos:exactMatch CL:2000046 ventricular cardiac muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3693","subject_information_content":82.42859222307153} +UMLS:C5204267 Renomedullary Interstitial Cell biolink:Cell skos:exactMatch NCIT:C159218 Renomedullary Interstitial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3694","subject_information_content":100.0,"identifierIndex":0} +CL:4023058 mesothelial fibroblast of the leptomeninx biolink:Cell skos:exactMatch CL:4023058 mesothelial fibroblast of the leptomeninx biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3695","subject_information_content":89.84144812560278} +UMLS:C1882061 Neoplastic Small Sex Cord-Stromal Cell biolink:Cell skos:exactMatch NCIT:C61425 Neoplastic Small Sex Cord-Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3696","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3178741 Be2 Cells biolink:Cell skos:exactMatch UMLS:C3178741 Be2 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3697"} +UMLS:C5157443 CD3+CD4+CD28+HLA DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157443 CD3+CD4+CD28+HLA DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3698"} +UMLS:C5216244 Lymphocytes.clefted|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216244 Lymphocytes.clefted|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3699"} +CL:2000040 bladder microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000040 bladder microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3700","subject_information_content":100.0} +UMLS:C1879883 Blastemal Cell biolink:Cell skos:exactMatch NCIT:C61288 Blastemal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3701","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000710 neurecto-epithelial cell biolink:Cell skos:exactMatch CL:0000710 neurecto-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3702","subject_information_content":67.44493484597689} +UMLS:C4322830 Bone marrow-derived hemopoietic stem cell biolink:Cell skos:exactMatch UMLS:C4322830 Bone marrow-derived hemopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3703"} +UMLS:C2334101 Regular atrial cardiac myocyte biolink:Cell skos:exactMatch UMLS:C2334101 Regular atrial cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3704"} +UMLS:C5418106 Autologous Anti-CD19CAR-4-1BB/CD3zeta-HER2tG-expressing CD4+/CD8+ T-lymphocytes SCRI-huCAR19v2 biolink:Cell skos:exactMatch NCIT:C174563 Autologous Anti-CD19CAR-4-1BB/CD3zeta-HER2tG-expressing CD4+/CD8+ T-lymphocytes SCRI-huCAR19v2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3705","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518997 Peripheral Blood Lymphocyte biolink:Cell skos:exactMatch NCIT:C12938 Peripheral Blood Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3706","subject_information_content":100.0,"identifierIndex":0} +CL:0002058 Gr1-low non-classical monocyte biolink:Cell skos:exactMatch CL:0002058 Gr1-low non-classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3707","subject_information_content":88.2062864997332} +UMLS:C2327156 Enterocyte of epithelium proper of duodenum biolink:Cell skos:exactMatch UMLS:C2327156 Enterocyte of epithelium proper of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3708"} +UMLS:C0221282 Schistocyte biolink:Cell skos:exactMatch SNOMEDCT:70310009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3709","identifierIndex":0} +CL:0000446 chief cell of parathyroid gland biolink:Cell skos:exactMatch CL:0000446 chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3710","subject_information_content":86.87026217152628} +UMLS:C1517810 Leukemic Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C41070 Leukemic Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3711","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2338888 Paneth cell of epithelium of small intestine biolink:Cell skos:exactMatch UMLS:C2338888 Paneth cell of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3712"} +UMLS:C2336699 Fibroblast of areolar connective tissue biolink:Cell skos:exactMatch UMLS:C2336699 Fibroblast of areolar connective tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3713"} +UMLS:C0545063 P.B. osteoclast biolink:Cell skos:exactMatch UMLS:C0545063 P.B. osteoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3714"} +UMLS:C2981784 WT1 mRNA-Electroporated Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C88260 WT1 mRNA-Electroporated Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3715","subject_information_content":100.0,"identifierIndex":0} +CL:1001127 outer renal medulla vasa recta cell biolink:Cell skos:exactMatch CL:1001127 outer renal medulla vasa recta cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3716","subject_information_content":91.94953810872488} +UMLS:C4518153 Population of all spermatozoa with acrosome defects in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725234006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3717","identifierIndex":0} +UMLS:C1180090 Non-nucleated lens fiber biolink:Cell skos:exactMatch UMLS:C1180090 Non-nucleated lens fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3718"} +UMLS:C3652431 limbal stem cells, autologous biolink:Cell skos:exactMatch UMLS:C3652431 limbal stem cells, autologous biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3719"} +UMLS:C0333843 Myeloma cell biolink:Cell skos:exactMatch SNOMEDCT:64446007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3720","identifierIndex":0} +CL:0001042 T-helper 22 cell biolink:Cell skos:exactMatch CL:0001042 T-helper 22 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3721","subject_information_content":100.0} +UMLS:C5170934 Leukocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170934 Leukocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3722"} +UMLS:C1512199 Glomerular Mesangial Cells biolink:Cell skos:exactMatch NCIT:C32685 Glomerular Mesangial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3723","subject_information_content":100.0,"identifierIndex":0} +CL:0000521 fungal cell biolink:Cell skos:exactMatch CL:0000521 fungal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3724","subject_information_content":75.32497402808036} +UMLS:C2350466 Natural Killer T-Cells biolink:Cell skos:exactMatch UMLS:C2350466 Natural Killer T-Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3725"} +UMLS:C1278781 Entire thyroid parafollicular cell biolink:Cell skos:exactMatch SNOMEDCT:176770005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3726","identifierIndex":0} +UMLS:C3258047 Pincer cell biolink:Cell skos:exactMatch SNOMEDCT:725267005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3727","identifierIndex":0} +UMLS:C0596155 Basal Cell biolink:Cell skos:exactMatch NCIT:C12475 Skin Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3728","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1564017 Gastric delta Cells biolink:Cell skos:exactMatch UMLS:C1564017 Gastric delta Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3729"} +UMLS:C1267856 Lymphocyte positive for both CD8 antigen and CD38 antigen biolink:Cell skos:exactMatch SNOMEDCT:116817005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3730","identifierIndex":0} +UMLS:C1181295 Meso-epithelial cell biolink:Cell skos:exactMatch UMLS:C1181295 Meso-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3731"} +UMLS:C5216281 Mononuclear cells|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216281 Mononuclear cells|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3732"} +CL:0000780 multinuclear odontoclast biolink:Cell skos:exactMatch CL:0000780 multinuclear odontoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3733","subject_information_content":100.0} +UMLS:C1515168 TNF Transduced TIL biolink:Cell skos:exactMatch NCIT:C29482 TNF Transduced TIL biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3734","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711172 therapeutic autologous lymphocytes biolink:Cell skos:exactMatch NCIT:C28681 Therapeutic Autologous Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3735","subject_information_content":56.52941961067229,"identifierIndex":0} +UMLS:C1522066 Skin - Epidermis - Basal Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22540 Mouse Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3736","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709203 Neoplastic Spindle-Shaped Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49075 Neoplastic Spindle-Shaped Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3737","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4323724 Diencephalic neural crest cell group biolink:Cell skos:exactMatch UMLS:C4323724 Diencephalic neural crest cell group biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3738"} +UMLS:C1513998 Neoplastic Large Cell with Abundant Cytoplasm biolink:Cell skos:exactMatch NCIT:C37107 Neoplastic Large Cell with Abundant Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3739","subject_information_content":73.15398369131682,"identifierIndex":0} +UMLS:C2332313 Type 2B muscle fiber biolink:Cell skos:exactMatch UMLS:C2332313 Type 2B muscle fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3740"} +CL:0002603 astrocyte of the cerebellum biolink:Cell skos:exactMatch CL:0002603 astrocyte of the cerebellum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3741","subject_information_content":100.0} +UMLS:C2963388 Bizarre platelets biolink:Cell skos:exactMatch UMLS:C2963388 Bizarre platelets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3742"} +UMLS:C5174623 Neutrophils | Prostatic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174623 Neutrophils | Prostatic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3743"} +UMLS:C5157460 CD3+CD8+CD27-CD45RO+CD62L- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157460 CD3+CD8+CD27-CD45RO+CD62L- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3744"} +UMLS:C1511466 CY51 biolink:Cell skos:exactMatch NCIT:C20240 CY51 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3745","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2330901 Set of granulocytes biolink:Cell skos:exactMatch UMLS:C2330901 Set of granulocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3746"} +CL:0002119 CD38-positive IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002119 CD38-positive IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3747","subject_information_content":91.94953810872488} +UMLS:C1517917 Hepatic stem cell biolink:Cell skos:exactMatch NCIT:C12960 Liver Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3748","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513980 Neoplastic Gonadotroph Cell biolink:Cell skos:exactMatch NCIT:C36921 Neoplastic Gonadotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3749","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2699753 TGF-beta-Resistant LMP-Specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C77859 TGF-beta-Resistant LMP-Specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3750","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267810 Lymphocyte positive for CD1 antigen biolink:Cell skos:exactMatch SNOMEDCT:116850005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3751","identifierIndex":0} +UMLS:C0546445 Russell-Crooke cell biolink:Cell skos:exactMatch UMLS:C0546445 Russell-Crooke cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3752"} +UMLS:C1514011 Neoplastic Lymphocyte biolink:Cell skos:exactMatch NCIT:C36988 Neoplastic Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3753","subject_information_content":66.18110663087931,"identifierIndex":0} +UMLS:C2936409 Palisade Parenchyma Cells biolink:Cell skos:exactMatch UMLS:C2936409 Palisade Parenchyma Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3754"} +UMLS:C4290030 4SCAR-GD2-modified T-lymphocytes biolink:Cell skos:exactMatch NCIT:C128896 4SCAR-GD2-modified T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3755","subject_information_content":100.0,"identifierIndex":0} +CL:0002074 myocardial endocrine cell biolink:Cell skos:exactMatch CL:0002074 myocardial endocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3756","subject_information_content":89.84144812560278} +UMLS:C1511470 CY92 biolink:Cell skos:exactMatch NCIT:C20244 CY92 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3757","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2335910 Set of cholinergic cells of dorsal tegmental area [Ch6] biolink:Cell skos:exactMatch UMLS:C2335910 Set of cholinergic cells of dorsal tegmental area [Ch6] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3758"} +CL:1001135 arcuate artery cell biolink:Cell skos:exactMatch CL:1001135 arcuate artery cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3759","subject_information_content":91.94953810872488} +CL:0002140 acinar cell of sebaceous gland biolink:Cell skos:exactMatch CL:0002140 acinar cell of sebaceous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3760","subject_information_content":100.0} +UMLS:C1709188 Neoplastic Ovoid Mononuclear Stromal Cell biolink:Cell skos:exactMatch NCIT:C49053 Neoplastic Ovoid Mononuclear Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3761","subject_information_content":100.0,"identifierIndex":0} +CL:1000368 transitional myocyte of anterior division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000368 transitional myocyte of anterior division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3762","subject_information_content":100.0} +CL:0000311 keratin accumulating cell biolink:Cell skos:exactMatch CL:0000311 keratin accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3763","subject_information_content":79.23864834624368} +MESH:D053687 Adult Stem Cells biolink:Cell skos:exactMatch MESH:D053687 Adult Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3764"} +UMLS:C1628974 Bone marrow derived hematopoietic stem cell biolink:Cell skos:exactMatch SNOMEDCT:419880001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3765","identifierIndex":0} +CL:2000064 ovarian surface epithelial cell biolink:Cell skos:exactMatch CL:2000064 ovarian surface epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3766","subject_information_content":85.74066969721673} +UMLS:C1440321 Cells.CD49a biolink:Cell skos:exactMatch UMLS:C1440321 Cells.CD49a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3767"} +UMLS:C3179111 Feeder Layer Cells biolink:Cell skos:exactMatch UMLS:C3179111 Feeder Layer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3768"} +UMLS:C5185787 ZAP70 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5185787 ZAP70 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3769"} +UMLS:C1708884 Malignant Hyperchromatic Squamous Cell biolink:Cell skos:exactMatch NCIT:C54208 Malignant Hyperchromatic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3770","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3176885 Blasts.cytoplasmic CD13 biolink:Cell skos:exactMatch UMLS:C3176885 Blasts.cytoplasmic CD13 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3771"} +UMLS:C1648298 Cells.CD7+CD8+ biolink:Cell skos:exactMatch UMLS:C1648298 Cells.CD7+CD8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3772"} +UMLS:C4322822 CD16+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322822 CD16+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3773"} +CL:0002560 inner root sheath cell biolink:Cell skos:exactMatch CL:0002560 inner root sheath cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3774","subject_information_content":100.0} +UMLS:C4696696 Cells.CD19+CD27+IgD+IgM+ biolink:Cell skos:exactMatch UMLS:C4696696 Cells.CD19+CD27+IgD+IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3775"} +UMLS:C0026473 Monocytes biolink:Cell skos:exactMatch UMLS:C0026473 Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3776"} +UMLS:C1512566 Hypolobated Neutrophil biolink:Cell skos:exactMatch NCIT:C37172 Hypolobated Neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3777","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1879555 Adenocarcinoma Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C61145 Adenocarcinoma Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3778","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C0333854 Large cleaved cell biolink:Cell skos:exactMatch NCIT:C32923 Large Cleaved Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3779","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5175149 Nucleated cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175149 Nucleated cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3780"} +UMLS:C3474412 HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 30 mL INTRAVENOUS LIQUID biolink:Cell skos:exactMatch UMLS:C3474412 HUMAN CORD BLOOD HEMATOPOIETIC PROGENITOR CELL 500000000 in 30 mL INTRAVENOUS LIQUID biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3781"} +UMLS:C1517548 Glandular cell biolink:Cell skos:exactMatch NCIT:C33923 Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3782","subject_information_content":70.63487872280473,"identifierIndex":0} +UMLS:C3831436 Autologous iC9-GD2-CAR-expressing VZV-specific T Lymphocytes biolink:Cell skos:exactMatch NCIT:C111989 Autologous iC9-GD2-CAR-expressing VZV-specific T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3783","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514054 Neoplastic Oncocyte biolink:Cell skos:exactMatch NCIT:C36941 Neoplastic Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3784","subject_information_content":81.79098623432766,"identifierIndex":0} +CL:1000693 kidney interstitial fibrocyte biolink:Cell skos:exactMatch CL:1000693 kidney interstitial fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3786","subject_information_content":100.0} +UMLS:C1183360 Type-4 epithelial cell of thymus biolink:Cell skos:exactMatch UMLS:C1183360 Type-4 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3787"} +CL:0002117 IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002117 IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3788","subject_information_content":85.74066969721673} +UMLS:C0333854 Large cleaved cell biolink:Cell skos:exactMatch SNOMEDCT:72549000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3779","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4085999 Autologous Anti-CD123 CAR TCR/4-1BB-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C125101 Autologous Anti-CD123 CAR TCR/4-1BB-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3789","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4055481 Akt-1/2 Inhibitor-treated Tumor Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C123720 Akt-1/2 Inhibitor-treated Tumor Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3790","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157371 CD2 cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157371 CD2 cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3791"} +CL:1000378 type 1 vestibular sensory cell of stato-acoustic epithelium biolink:Cell skos:exactMatch CL:1000378 type 1 vestibular sensory cell of stato-acoustic epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3792","subject_information_content":100.0} +CL:0000037 hematopoietic stem cell biolink:Cell skos:exactMatch CL:0000037 hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3793","subject_information_content":81.79098623432766} +UMLS:C5163538 Epithelial cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163538 Epithelial cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3785"} +UMLS:C4745055 Malignant Basal Cell biolink:Cell skos:exactMatch NCIT:C156768 Malignant Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3794","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2326918 Microfold cell of epithelium proper of appendix biolink:Cell skos:exactMatch UMLS:C2326918 Microfold cell of epithelium proper of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3795"} +CL:0009086 endothelial cell of respiratory system lymphatic vessel biolink:Cell skos:exactMatch CL:0009086 endothelial cell of respiratory system lymphatic vessel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3796"} +UMLS:C1440342 Cells.CD64 biolink:Cell skos:exactMatch UMLS:C1440342 Cells.CD64 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3797"} +UMLS:C5419508 Autologous Anti-PD-1 Antibody-activated Tumor-infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C172191 Autologous Anti-PD-1 Antibody-activated Tumor-infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3798","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267825 T lymphocyte positive for both CD4 antigen and HLA-DR antigen biolink:Cell skos:exactMatch SNOMEDCT:115405007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3799","identifierIndex":0} +MESH:D001253 Astrocytes biolink:Cell skos:exactMatch MESH:D001253 Astrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3800"} +CL:0002374 ear hair cell biolink:Cell skos:exactMatch CL:0002374 ear hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3801","subject_information_content":79.23864834624368} +UMLS:C3831562 Allogeneic Glioblastoma Stem-like Cell Line Lysate-pulsed Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C113296 Allogeneic Glioblastoma Stem-like Cell Line Lysate-pulsed Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3802","subject_information_content":100.0,"identifierIndex":0} +MESH:D041905 Erythroid Cells biolink:Cell skos:exactMatch MESH:D041905 Erythroid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3803"} +UMLS:C1513991 Neoplastic Interdigitating Dendritic Cell biolink:Cell skos:exactMatch NCIT:C36892 Neoplastic Interdigitating Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3804","subject_information_content":100.0,"identifierIndex":0} +CL:0000776 immature neutrophil biolink:Cell skos:exactMatch CL:0000776 immature neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3805","subject_information_content":91.94953810872488} +UMLS:C4733630 Autologous Ovarian Cancer-specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C155664 Autologous Ovarian Cancer-specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3806","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401599 Allogenic Pooled Olfactory Mucosa-derived Mesenchymal Stem Cells biolink:Cell skos:exactMatch UMLS:C5401599 Allogenic Pooled Olfactory Mucosa-derived Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3807"} +NCIT:C12849 Squamous Cell biolink:Cell skos:exactMatch NCIT:C12849 Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3808","subject_information_content":85.74066969721673} +UMLS:C1708895 Malignant Neuroendocrine Small to Intermediate Size Cell biolink:Cell skos:exactMatch NCIT:C45982 Malignant Neuroendocrine Small to Intermediate Size Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3809","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1545227 Cells.CD3+CD56+/100 cells biolink:Cell skos:exactMatch UMLS:C1545227 Cells.CD3+CD56+/100 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3810"} +UMLS:C1254547 Hypochromic erythrocyte biolink:Cell skos:exactMatch NCIT:C37033 Hypochromic Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3811","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2329360 Brush cell of epithelium of terminal bronchiole biolink:Cell skos:exactMatch UMLS:C2329360 Brush cell of epithelium of terminal bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3812"} +CL:0002482 dermal melanocyte biolink:Cell skos:exactMatch CL:0002482 dermal melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3813","subject_information_content":100.0} +UMLS:C2924225 Cells.CD45+CD103+ biolink:Cell skos:exactMatch UMLS:C2924225 Cells.CD45+CD103+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3814"} +CL:0000470 digestive enzyme secreting cell biolink:Cell skos:exactMatch CL:0000470 digestive enzyme secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3815","subject_information_content":100.0} +UMLS:C5157612 CD55 Monocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157612 CD55 Monocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3816"} +CL:1000343 paneth cell of epithelium of small intestine biolink:Cell skos:exactMatch CL:1000343 paneth cell of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3817","subject_information_content":91.94953810872488} +UMLS:C1513955 Neoplastic Endocrine Null Cell biolink:Cell skos:exactMatch NCIT:C36923 Neoplastic Endocrine Null Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3818","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333742 Syncytial cell biolink:Cell skos:exactMatch SNOMEDCT:72263005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3819","identifierIndex":0} +UMLS:C1254547 Hypochromic erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:397021001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3811","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4740204 Cells.CD4+2H4 biolink:Cell skos:exactMatch UMLS:C4740204 Cells.CD4+2H4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3820"} +UMLS:C1524111 Erythrocyte (RBC) (MMHCC) biolink:Cell skos:exactMatch NCIT:C22566 Mouse Erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3821","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1997486 biolink:Cell skos:exactMatch UMLS:C1997486 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3822"} +CL:0000951 IgE short lived plasma cell biolink:Cell skos:exactMatch CL:0000951 IgE short lived plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3823","subject_information_content":100.0} +UMLS:C2326946 Goblet cell of epithelium of duodenal gland biolink:Cell skos:exactMatch UMLS:C2326946 Goblet cell of epithelium of duodenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3824"} +UMLS:C4322736 CD25+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322736 CD25+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3825"} +UMLS:C4733016 PP14 derivative-treated HLA-matched donor mononuclear cell-enriched leukocytes biolink:Cell skos:exactMatch UMLS:C4733016 PP14 derivative-treated HLA-matched donor mononuclear cell-enriched leukocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3826"} +CL:0000980 plasmablast biolink:Cell skos:exactMatch CL:0000980 plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3827","subject_information_content":85.74066969721673} +UMLS:C4246843 Cranial neural crest cell biolink:Cell skos:exactMatch UMLS:C4246843 Cranial neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3828"} +UMLS:C5157354 CD19+CD27+IgD-IgM- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157354 CD19+CD27+IgD-IgM- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3829"} +UMLS:C5197771 Cerebellar Golgi Cells biolink:Cell skos:exactMatch MESH:D000080906 Cerebellar Golgi Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3830","identifierIndex":0} +CL:0000049 common myeloid progenitor biolink:Cell skos:exactMatch CL:0000049 common myeloid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3831","subject_information_content":89.84144812560278} +UMLS:C1519793 Unipolar neuron biolink:Cell skos:exactMatch NCIT:C33834 Unipolar Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3832","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0314590 Colony-forming unit, granulocyte-monocyte biolink:Cell skos:exactMatch UMLS:C0314590 Colony-forming unit, granulocyte-monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3833"} +UMLS:C3850017 Endothelial Progenitor Cells biolink:Cell skos:exactMatch NCIT:C124145 Endothelial Progenitor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3834","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229628 Basophilic normoblast biolink:Cell skos:exactMatch NCIT:C13130 Basophilic Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3835","subject_information_content":100.0,"identifierIndex":0} +CL:0000908 CD8-positive, alpha-beta cytokine secreting effector T cell biolink:Cell skos:exactMatch CL:0000908 CD8-positive, alpha-beta cytokine secreting effector T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3836","subject_information_content":89.84144812560278} +CL:4023019 L5/6 cck, vip cortical GABAergic interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023019 L5/6 cck, vip cortical GABAergic interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3837","subject_information_content":100.0} +UMLS:C1518312 Nevus Cell A-Type biolink:Cell skos:exactMatch NCIT:C36864 Nevus Cell A-Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3838","subject_information_content":100.0,"identifierIndex":0} +CL:0000006 neuronal receptor cell biolink:Cell skos:exactMatch CL:0000006 neuronal receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3839","subject_information_content":69.99727273406087} +UMLS:C1179471 Surface mucous cell of stomach biolink:Cell skos:exactMatch UMLS:C1179471 Surface mucous cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3840"} +UMLS:C2333057 Myocyte of middle internodal tract biolink:Cell skos:exactMatch UMLS:C2333057 Myocyte of middle internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3841"} +UMLS:C1631818 Cells.CD20+CD117+ biolink:Cell skos:exactMatch UMLS:C1631818 Cells.CD20+CD117+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3842"} +UMLS:C1515628 gp100-Pulsed Peripheral Blood Mononuclear Cell biolink:Cell skos:exactMatch NCIT:C2762 gp100-Pulsed Peripheral Blood Mononuclear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3843","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3850017 Endothelial Progenitor Cells biolink:Cell skos:exactMatch MESH:D066026 Endothelial Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3834","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0229628 Basophilic normoblast biolink:Cell skos:exactMatch SNOMEDCT:464005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3835","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1514038 Neoplastic Myeloid Blast biolink:Cell skos:exactMatch NCIT:C37067 Neoplastic Myeloid Blast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3844","subject_information_content":81.20444558259193,"identifierIndex":0} +UMLS:C4246839 Sacral/lumbosacral neural crest cell biolink:Cell skos:exactMatch UMLS:C4246839 Sacral/lumbosacral neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3845"} +UMLS:C5206754 Anti-CD70 CAR-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C162699 Anti-CD70 CAR-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3846","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163451 Eosinophils | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163451 Eosinophils | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3847"} +UMLS:C2986886 Rapamycin-Polarized Th1/Tc1 Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C95080 Rapamycin-Polarized Th1/Tc1 Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3848","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514088 Neoplastic Small Immature Neuroepithelial Cell biolink:Cell skos:exactMatch NCIT:C41836 Neoplastic Small Immature Neuroepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3849","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5382905 HLA-A2 CMV specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382905 HLA-A2 CMV specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3850"} +UMLS:C5157494 CD34 cells | Blood product unit | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157494 CD34 cells | Blood product unit | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3851"} +UMLS:C5419626 ROBO1-targeted BiCAR-NKT Cells biolink:Cell skos:exactMatch NCIT:C172380 ROBO1-targeted BiCAR-NKT Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3852","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4054455 Multinucleated Hepatocyte biolink:Cell skos:exactMatch NCIT:C120900 Multinucleated Hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3853","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1184137 Myoepithelial cell of main lactiferous duct biolink:Cell skos:exactMatch UMLS:C1184137 Myoepithelial cell of main lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3854"} +CL:0002200 oxyphil cell of thyroid biolink:Cell skos:exactMatch CL:0002200 oxyphil cell of thyroid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3855","subject_information_content":100.0} +UMLS:C1179503 Cementocyte biolink:Cell skos:exactMatch NCIT:C32275 Cementocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3856","subject_information_content":100.0,"identifierIndex":0} +CL:0002079 pancreatic ductal cell biolink:Cell skos:exactMatch CL:0002079 pancreatic ductal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3857","subject_information_content":100.0} +CL:0000701 paraganglia type 2 cell biolink:Cell skos:exactMatch CL:0000701 paraganglia type 2 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3858","subject_information_content":100.0} +UMLS:C2924221 Cells.CD11c-CD103+ biolink:Cell skos:exactMatch UMLS:C2924221 Cells.CD11c-CD103+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3859"} +UMLS:C1267984 Lymphocyte positive for CD97 antigen biolink:Cell skos:exactMatch SNOMEDCT:117424006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3860","identifierIndex":0} +UMLS:C5157543 CD4+CD45+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157543 CD4+CD45+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3861"} +UMLS:C0206152 Cell Transplants biolink:Cell skos:exactMatch UMLS:C0206152 Cell Transplants biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3862"} +CL:1000191 pillar cell biolink:Cell skos:exactMatch CL:1000191 pillar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3863","subject_information_content":91.94953810872488} +UMLS:C5170451 Lambda lymphocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5170451 Lambda lymphocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3864"} +UMLS:C0333633 Hemosiderin-laden macrophage biolink:Cell skos:exactMatch UMLS:C0333633 Hemosiderin-laden macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3865"} +UMLS:C4764367 iPSC-derived Natural Killer Cells FT500 biolink:Cell skos:exactMatch NCIT:C158438 iPSC-derived Natural Killer Cells FT500 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3866","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440422 Cells.TCR gamma delta biolink:Cell skos:exactMatch UMLS:C1440422 Cells.TCR gamma delta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3867"} +NCIT:C41410 Neuroepithelial Cell biolink:Cell skos:exactMatch NCIT:C41410 Neuroepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3868","subject_information_content":78.81980028025117} +UMLS:C3496266 B3 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496266 B3 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3869"} +UMLS:C1883279 Terminal Duct Cell biolink:Cell skos:exactMatch NCIT:C62170 Terminal Duct Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3870","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4697026 Cells.CD27+IgD-IgM+ biolink:Cell skos:exactMatch UMLS:C4697026 Cells.CD27+IgD-IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3871"} +CL:0000069 branched duct epithelial cell biolink:Cell skos:exactMatch CL:0000069 branched duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3872","subject_information_content":82.42859222307153} +UMLS:C1518056 Lymphoblast-Like Neoplastic B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39748 Lymphoblast-Like Neoplastic B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3873","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513972 Neoplastic Germ Cell with Clear to Lightly Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37130 Neoplastic Germ Cell with Clear to Lightly Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3874","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682613 hepatocyte structure biolink:Cell skos:exactMatch UMLS:C0682613 hepatocyte structure biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3875"} +UMLS:C1267841 Lymphocyte positive for both CD4 antigen and 2H4 antigen biolink:Cell skos:exactMatch SNOMEDCT:117528006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3876","identifierIndex":0} +UMLS:C5545270 Virtual Memory T Cells biolink:Cell skos:exactMatch UMLS:C5545270 Virtual Memory T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3877"} +UMLS:C4253015 Set of type D cells of pancreatic islet biolink:Cell skos:exactMatch UMLS:C4253015 Set of type D cells of pancreatic islet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3878"} +UMLS:C5184820 Variant lymphocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184820 Variant lymphocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3879"} +CL:0000858 fast muscle myoblast biolink:Cell skos:exactMatch CL:0000858 fast muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3880","subject_information_content":100.0} +UMLS:C5216215 Erythrocytes|NCnc|Pt|Gast fld biolink:Cell skos:exactMatch UMLS:C5216215 Erythrocytes|NCnc|Pt|Gast fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3881"} +CL:0001064 malignant cell biolink:Cell skos:exactMatch CL:0001064 malignant cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3882","subject_information_content":100.0} +NCIT:C12530 Granulocyte biolink:Cell skos:exactMatch NCIT:C12530 Granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3883","subject_information_content":83.89907621744979} +CL:0002409 mature Vgamma2-negative thymocyte biolink:Cell skos:exactMatch CL:0002409 mature Vgamma2-negative thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3884","subject_information_content":100.0} +UMLS:C1707939 Neoplastic Epithelioid Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C49117 Neoplastic Epithelioid Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3885","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000506 enkephalin secreting cell biolink:Cell skos:exactMatch CL:0000506 enkephalin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3886","subject_information_content":86.87026217152628} +UMLS:C1182637 Secondary follicular cell of ovary biolink:Cell skos:exactMatch UMLS:C1182637 Secondary follicular cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3887"} +UMLS:C4322669 CD56+ NK lymphocyte biolink:Cell skos:exactMatch UMLS:C4322669 CD56+ NK lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3888"} +UMLS:C0935440 Cuboidal cell biolink:Cell skos:exactMatch NCIT:C13157 Cuboidal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3889","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000802 CD8-alpha alpha positive, gamma-delta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000802 CD8-alpha alpha positive, gamma-delta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3890","subject_information_content":91.94953810872488} +UMLS:C4740238 Spermatozoa.excess residual cytoplasm biolink:Cell skos:exactMatch UMLS:C4740238 Spermatozoa.excess residual cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3891"} +UMLS:C1267798 CV+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117502008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3892","identifierIndex":0} +CL:0000325 stuff accumulating cell biolink:Cell skos:exactMatch CL:0000325 stuff accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3893","subject_information_content":62.23747174134722} +CL:0008031 cortical interneuron biolink:Cell skos:exactMatch CL:0008031 cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3894","subject_information_content":100.0} +UMLS:C1267933 Lymphocyte positive for CD46 antigen biolink:Cell skos:exactMatch SNOMEDCT:117376006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3895","identifierIndex":0} +UMLS:C1184141 Myoepithelial cell of quarternary lactiferous duct biolink:Cell skos:exactMatch UMLS:C1184141 Myoepithelial cell of quarternary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3896"} +CL:0000346 hair follicle dermal papilla cell biolink:Cell skos:exactMatch CL:0000346 hair follicle dermal papilla cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3897","subject_information_content":94.92072406280138} +CL:0002475 lymphoid MHC-II-negative non-classical monocyte biolink:Cell skos:exactMatch CL:0002475 lymphoid MHC-II-negative non-classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3898","subject_information_content":100.0} +UMLS:C4725100 Autologous CD22-4SCAR-expressing T-cells 4SCAR22 biolink:Cell skos:exactMatch NCIT:C148524 Autologous CD22-4SCAR-expressing T-cells 4SCAR22 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3899","subject_information_content":100.0,"identifierIndex":0} +CL:1000489 reticular cell of splenic cord biolink:Cell skos:exactMatch CL:1000489 reticular cell of splenic cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3900","subject_information_content":100.0} +CL:0008029 inhibitory neuron biolink:Cell skos:exactMatch CL:0008029 inhibitory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3901","subject_information_content":100.0} +UMLS:C0814995 Skin cell biolink:Cell skos:exactMatch SNOMEDCT:314819008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3902","identifierIndex":0} +UMLS:C1522105 Mouse Pre-B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C22574 Mouse Pre-B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3903","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522104 Spindle Melanoma Cell biolink:Cell skos:exactMatch NCIT:C36874 Spindle Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3904","subject_information_content":91.94953810872488,"identifierIndex":0} +NCIT:C12586 Goblet Cell biolink:Cell skos:exactMatch NCIT:C12586 Goblet Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3905","subject_information_content":91.94953810872488} +UMLS:C2987368 Autologous CD8 Positive PBL Sensitized to Drosophila Cell-Presented Melanoma Peptides biolink:Cell skos:exactMatch NCIT:C95715 Autologous CD8 Positive PBL Sensitized to Drosophila Cell-Presented Melanoma Peptides biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3906","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512640 Immature Spindle Cell biolink:Cell skos:exactMatch NCIT:C36958 Immature Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3907","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000765 erythroblast biolink:Cell skos:exactMatch CL:0000765 erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3908","subject_information_content":83.1270105625346} +UMLS:C1514656 RL10 biolink:Cell skos:exactMatch NCIT:C20290 RL10 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3909","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163444 Eosinophils | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163444 Eosinophils | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3910"} +UMLS:C0229542 Pituitary amphophil cell biolink:Cell skos:exactMatch SNOMEDCT:19992001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3911","identifierIndex":0} +UMLS:C1514105 Neoplastic Subependymal Glial Cell biolink:Cell skos:exactMatch NCIT:C41451 Neoplastic Subependymal Glial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3912","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267703 Inner mesothelial cell of arachnoid biolink:Cell skos:exactMatch SNOMEDCT:110662000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3913","identifierIndex":0} +CL:0002413 mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte biolink:Cell skos:exactMatch CL:0002413 mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3914","subject_information_content":100.0} +UMLS:C5203928 Autologous HER2-CAR-modified Adenovirus-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C158744 Autologous HER2-CAR-modified Adenovirus-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3915","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3178867 Plant Cells biolink:Cell skos:exactMatch MESH:D059828 Plant Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3916","identifierIndex":0} +UMLS:C5216231 Leukocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216231 Leukocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3917"} +CL:0002227 nucleated secondary lens fiber biolink:Cell skos:exactMatch CL:0002227 nucleated secondary lens fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3918","subject_information_content":100.0} +CL:0002240 marrow fibroblast biolink:Cell skos:exactMatch CL:0002240 marrow fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3919","subject_information_content":100.0} +UMLS:C2709167 Plateletpheresis half units biolink:Cell skos:exactMatch UMLS:C2709167 Plateletpheresis half units biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3920"} +UMLS:C5154003 B lymphocytes | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5154003 B lymphocytes | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3921"} +UMLS:C1708892 Malignant Neuroectodermal Round Cell biolink:Cell skos:exactMatch NCIT:C54042 Malignant Neuroectodermal Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3922","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4284002 Type 1 Regulatory T-Cell biolink:Cell skos:exactMatch NCIT:C126755 Type 1 Regulatory T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3923","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517819 Mouse Pro-B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C22575 Mouse Pro-B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3924","subject_information_content":100.0,"identifierIndex":0} +CL:0000486 garland cell biolink:Cell skos:exactMatch CL:0000486 garland cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3925","subject_information_content":100.0} +CL:1000468 myoepithelial cell of acinus of lactiferous gland biolink:Cell skos:exactMatch CL:1000468 myoepithelial cell of acinus of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3926","subject_information_content":100.0} +UMLS:C5382938 Interferon-gamma producing Cytomegalovirus-specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382938 Interferon-gamma producing Cytomegalovirus-specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3927"} +UMLS:C0229609 Secretory macrophage biolink:Cell skos:exactMatch SNOMEDCT:35113007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3928","identifierIndex":0} +CL:0000877 splenic tingible body macrophage biolink:Cell skos:exactMatch CL:0000877 splenic tingible body macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3929","subject_information_content":100.0} +UMLS:C4697022 Cells.CD27+CD45RO+CD62L+CCR7+ biolink:Cell skos:exactMatch UMLS:C4697022 Cells.CD27+CD45RO+CD62L+CCR7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3930"} +UMLS:C0229545 Pituicyte biolink:Cell skos:exactMatch UMLS:C0229545 Pituicyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3931"} +UMLS:C0007600 Cultured Cell Line biolink:Cell skos:exactMatch NCIT:C16403 Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3932","subject_information_content":62.76425030338926,"identifierIndex":0} +UMLS:C5157524 CD3-CD45+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157524 CD3-CD45+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3933"} +CL:0000147 pigment cell biolink:Cell skos:exactMatch CL:0000147 pigment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3934","subject_information_content":75.07654867125949} +CL:1000370 transitional myocyte of left branch of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000370 transitional myocyte of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3935","subject_information_content":89.84144812560278} +UMLS:C1517654 Karolinska ES Cell Line biolink:Cell skos:exactMatch NCIT:C20267 Karolinska ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3936","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0002303 pigmented ciliary epithelial cell biolink:Cell skos:exactMatch CL:0002303 pigmented ciliary epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3937","subject_information_content":100.0} +UMLS:C4246477 Mesomesenchymal cell biolink:Cell skos:exactMatch UMLS:C4246477 Mesomesenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3938"} +UMLS:C1522072 Skin - Epidermis - Keratinocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22542 Mouse Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3939","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708885 Malignant Lactotroph Cell biolink:Cell skos:exactMatch NCIT:C45951 Malignant Lactotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3940","subject_information_content":100.0,"identifierIndex":0} +CL:0002457 epidermal Langerhans cell biolink:Cell skos:exactMatch CL:0002457 epidermal Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3941","subject_information_content":100.0} +UMLS:C0007600 Cultured Cell Line biolink:Cell skos:exactMatch MESH:D002460 Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3932","subject_information_content":62.76425030338926,"identifierIndex":1} +MESH:D016539 Reed-Sternberg Cells biolink:Cell skos:exactMatch MESH:D016539 Reed-Sternberg Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3942"} +UMLS:C1440233 Cell positive for CD100 antigen biolink:Cell skos:exactMatch SNOMEDCT:725325003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3943","identifierIndex":0} +UMLS:C1513026 Mature Lymphocyte biolink:Cell skos:exactMatch NCIT:C38439 Mature Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3944","subject_information_content":69.29885439459781,"identifierIndex":0} +CL:0000744 columnar chondrocyte biolink:Cell skos:exactMatch CL:0000744 columnar chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3945","subject_information_content":100.0} +UMLS:C1267872 Lymphocyte positive for CD13 antigen biolink:Cell skos:exactMatch SNOMEDCT:117551006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3946","identifierIndex":0} +CL:0000854 interneuromast cell biolink:Cell skos:exactMatch CL:0000854 interneuromast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3947","subject_information_content":100.0} +UMLS:C1514175 Pleomorphic Medium-Sized to Large T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39602 Pleomorphic Medium-Sized to Large T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3948","subject_information_content":100.0,"identifierIndex":0} +CL:0002280 type N enteroendocrine cell biolink:Cell skos:exactMatch CL:0002280 type N enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3949","subject_information_content":100.0} +CL:0010001 stromal cell of bone marrow biolink:Cell skos:exactMatch CL:0010001 stromal cell of bone marrow biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3950","subject_information_content":100.0} +UMLS:C2924223 Cells.CD13+CD34+ biolink:Cell skos:exactMatch UMLS:C2924223 Cells.CD13+CD34+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3951"} +UMLS:C2717771 Generative Cells, Plant biolink:Cell skos:exactMatch UMLS:C2717771 Generative Cells, Plant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3952"} +CL:1000494 nephron tubule epithelial cell biolink:Cell skos:exactMatch CL:1000494 nephron tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3953","subject_information_content":78.81980028025117} +UMLS:C5157455 CD3+CD8+ (T8 suppressor cells) cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157455 CD3+CD8+ (T8 suppressor cells) cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3954"} +CL:1000692 kidney interstitial fibroblast biolink:Cell skos:exactMatch CL:1000692 kidney interstitial fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3955","subject_information_content":100.0} +CL:1000338 enterocyte of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell skos:exactMatch CL:1000338 enterocyte of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3956","subject_information_content":100.0} +UMLS:C4725691 Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T Lymphocytes BinD19 biolink:Cell skos:exactMatch NCIT:C150378 Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T Lymphocytes BinD19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3957","subject_information_content":100.0,"identifierIndex":0} +CL:0002248 pluripotent stem cell biolink:Cell skos:exactMatch CL:0002248 pluripotent stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3958","subject_information_content":89.84144812560278} +UMLS:C1267797 Lymphocyte positive for CDA antigen biolink:Cell skos:exactMatch SNOMEDCT:117501001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3959","identifierIndex":0} +CL:0002170 keratinized cell of the oral mucosa biolink:Cell skos:exactMatch CL:0002170 keratinized cell of the oral mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3960","subject_information_content":100.0} +UMLS:C2709137 Frozen packed erythrocytes biolink:Cell skos:exactMatch UMLS:C2709137 Frozen packed erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3961"} +UMLS:C1440274 CD25+ CD19+ cells biolink:Cell skos:exactMatch UMLS:C1440274 CD25+ CD19+ cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3962"} +CL:0001066 erythroid progenitor cell, mammalian biolink:Cell skos:exactMatch CL:0001066 erythroid progenitor cell, mammalian biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3963","subject_information_content":91.94953810872488} +UMLS:C5163742 Erythrocytes.dysmorphic | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163742 Erythrocytes.dysmorphic | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3964"} +CL:0001055 CD14-positive, CD16-low monocyte biolink:Cell skos:exactMatch CL:0001055 CD14-positive, CD16-low monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3965","subject_information_content":100.0} +CL:0000600 heterokaryon biolink:Cell skos:exactMatch CL:0000600 heterokaryon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3966","subject_information_content":94.92072406280138} +CL:0000424 excretory cell biolink:Cell skos:exactMatch CL:0000424 excretory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3967","subject_information_content":83.89907621744979} +UMLS:C2323499 Hematopoietic cell biolink:Cell skos:exactMatch UMLS:C2323499 Hematopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3968"} +UMLS:C5205480 Autologous Anti-BCMA CAR T-cells IM21 biolink:Cell skos:exactMatch NCIT:C160704 Autologous Anti-BCMA CAR T-cells IM21 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3969","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1978098 Prekeratocytes biolink:Cell skos:exactMatch UMLS:C1978098 Prekeratocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3970"} +UMLS:C2330431 Goblet cell of epithelium proper of duodenum biolink:Cell skos:exactMatch UMLS:C2330431 Goblet cell of epithelium proper of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3971"} +UMLS:C0333858 Small non-cleaved cell biolink:Cell skos:exactMatch SNOMEDCT:33872006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3972","identifierIndex":0} +UMLS:C0599415 Spodoptera frugiperda cell line biolink:Cell skos:exactMatch UMLS:C0599415 Spodoptera frugiperda cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3973"} +UMLS:C1514205 Polylobated T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39599 Polylobated T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3974","subject_information_content":100.0,"identifierIndex":0} +CL:0000166 chromaffin cell biolink:Cell skos:exactMatch CL:0000166 chromaffin cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3975","subject_information_content":75.84861432617468} +UMLS:C4744703 Autologous Anti-BCMA-CAR-TCRz/4-1BB-expressing T-lymphocytes CART-BCMA biolink:Cell skos:exactMatch NCIT:C156272 Autologous Anti-BCMA-CAR-TCRz/4-1BB-expressing T-lymphocytes CART-BCMA biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3976","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4317150 Vacuolated lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:725384001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3977","identifierIndex":0} +CL:0000409 scolopidial sheath cell biolink:Cell skos:exactMatch CL:0000409 scolopidial sheath cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3978","subject_information_content":100.0} +CL:0000001 primary cultured cell biolink:Cell skos:exactMatch CL:0000001 primary cultured cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3979","subject_information_content":100.0} +UMLS:C2327597 Central neuroglial cell biolink:Cell skos:exactMatch UMLS:C2327597 Central neuroglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3980"} +NCIT:C33240 Outer Supporting Cell biolink:Cell skos:exactMatch NCIT:C33240 Outer Supporting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3981","subject_information_content":100.0} +CL:1000718 kidney inner medulla collecting duct principal cell biolink:Cell skos:exactMatch CL:1000718 kidney inner medulla collecting duct principal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3982","subject_information_content":100.0} +UMLS:C1514435 Primitive Mesenchymal Cell biolink:Cell skos:exactMatch NCIT:C36907 Primitive Mesenchymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3983","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C0677626 hepatoma cell biolink:Cell skos:exactMatch UMLS:C0677626 hepatoma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3984"} +UMLS:C5157461 CD3+CD8+CD28+HLA DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157461 CD3+CD8+CD28+HLA DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3985"} +CL:0002274 histamine secreting cell biolink:Cell skos:exactMatch CL:0002274 histamine secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3986","subject_information_content":84.76217218840416} +UMLS:C2335952 Type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell skos:exactMatch UMLS:C2335952 Type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3987"} +UMLS:C1518368 Non-Keratinizing Malignant Small Squamous Cell biolink:Cell skos:exactMatch NCIT:C36790 Non-Keratinizing Malignant Small Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3988","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514274 Postgerminal Center Memory B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38339 Postgerminal Center Memory B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3989","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157283 CD123 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157283 CD123 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3990"} +UMLS:C4277548 Cancer-Associated Fibroblasts biolink:Cell skos:exactMatch NCIT:C168534 Cancer-Associated Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3991","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5181334 Spermatozoa | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5181334 Spermatozoa | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3992"} +UMLS:C0333741 Touton giant cell biolink:Cell skos:exactMatch NCIT:C36732 Touton Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3993","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2981182 Autologous EBV-CTL CD19CAR zeta biolink:Cell skos:exactMatch NCIT:C78824 Autologous EBV-CTL CD19CAR zeta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3994","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5155308 Blister cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155308 Blister cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3995"} +UMLS:C0333805 Macrocytic erythrocyte biolink:Cell skos:exactMatch NCIT:C13112 Macrocytic Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3996","subject_information_content":100.0,"identifierIndex":0} +CL:1000482 myocardial endocrine cell of interventricular septum biolink:Cell skos:exactMatch CL:1000482 myocardial endocrine cell of interventricular septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3997","subject_information_content":100.0} +UMLS:C5157666 CD8+CD11b+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157666 CD8+CD11b+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3998"} +UMLS:C3899032 Genetically Engineered NY-ESO-1-specific T Lymphocytes biolink:Cell skos:exactMatch NCIT:C116846 Genetically Engineered NY-ESO-1-specific T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3999","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517813 Mouse Leukoblast biolink:Cell skos:exactMatch NCIT:C22569 Mouse Leukoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4000","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4277548 Cancer-Associated Fibroblasts biolink:Cell skos:exactMatch MESH:D000072645 Cancer-Associated Fibroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3991","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C0333741 Touton giant cell biolink:Cell skos:exactMatch SNOMEDCT:71203006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3993","subject_information_content":100.0,"identifierIndex":1} +UMLS:C2333471 Set of adrenergic cells biolink:Cell skos:exactMatch UMLS:C2333471 Set of adrenergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4001"} +UMLS:C0333805 Macrocytic erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:259681001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#3996","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1522158 Leukocyte - Myeloblast (MMHCC) biolink:Cell skos:exactMatch NCIT:C22589 Mouse Myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4002","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0598090 permanent cell line biolink:Cell skos:exactMatch UMLS:C0598090 permanent cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4003"} +CL:1000702 kidney pelvis smooth muscle cell biolink:Cell skos:exactMatch CL:1000702 kidney pelvis smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4004","subject_information_content":100.0} +UMLS:C5157379 CD20 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157379 CD20 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4005"} +UMLS:C0033416 Promyelocytes biolink:Cell skos:exactMatch NCIT:C13114 Promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4006","subject_information_content":100.0,"identifierIndex":0} +CL:0000017 spermatocyte biolink:Cell skos:exactMatch CL:0000017 spermatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4007","subject_information_content":91.94953810872488} +CL:0002096 internodal tract myocyte biolink:Cell skos:exactMatch CL:0002096 internodal tract myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4008","subject_information_content":81.20444558259193} +UMLS:C2348359 EGFRBi-Armed Autologous T Cells biolink:Cell skos:exactMatch NCIT:C71536 EGFRBi-Armed Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4009","subject_information_content":100.0,"identifierIndex":0} +CL:1000354 microfold cell of epithelium of intestinal villus biolink:Cell skos:exactMatch CL:1000354 microfold cell of epithelium of intestinal villus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4010","subject_information_content":94.92072406280138} +CL:0009031 T cell of appendix biolink:Cell skos:exactMatch CL:0009031 T cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4011","subject_information_content":100.0} +UMLS:C0682699 neuron type by location biolink:Cell skos:exactMatch UMLS:C0682699 neuron type by location biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4012"} +CL:0002672 retinal progenitor cell biolink:Cell skos:exactMatch CL:0002672 retinal progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4013","subject_information_content":100.0} +NCIT:C12482 Fibroblast biolink:Cell skos:exactMatch NCIT:C12482 Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4014","subject_information_content":94.92072406280138} +CL:1001571 hippocampal pyramidal neuron biolink:Cell skos:exactMatch CL:1001571 hippocampal pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4015","subject_information_content":100.0} +UMLS:C0033416 Promyelocytes biolink:Cell skos:exactMatch SNOMEDCT:43446009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4006","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4086000 Autologous Anti-CD19 CAR-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C125691 Autologous Anti-CD19 CAR-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4016","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157352 CD19+CD27+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157352 CD19+CD27+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4017"} +UMLS:C0545585 Blood small lymphocyte biolink:Cell skos:exactMatch UMLS:C0545585 Blood small lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4018"} +UMLS:C4696655 Cells.CD3+CD8+CD28+HLA DR+ biolink:Cell skos:exactMatch UMLS:C4696655 Cells.CD3+CD8+CD28+HLA DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4019"} +UMLS:C1519265 Mouse Testis Sertoli Cell biolink:Cell skos:exactMatch NCIT:C22183 Mouse Testis Sertoli Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4020","subject_information_content":100.0,"identifierIndex":0} +CL:0000857 slow muscle myoblast biolink:Cell skos:exactMatch CL:0000857 slow muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4021","subject_information_content":100.0} +UMLS:C2337324 Glandular cell of prostate biolink:Cell skos:exactMatch UMLS:C2337324 Glandular cell of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4022"} +MESH:D011387 Prokaryotic Cells biolink:Cell skos:exactMatch MESH:D011387 Prokaryotic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4023"} +UMLS:C0882814 Cell positive for CD2 antigen biolink:Cell skos:exactMatch SNOMEDCT:732268004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4024","identifierIndex":0} +UMLS:C4525956 Autologous Tumor Infiltrating Lymphocytes LN-145 biolink:Cell skos:exactMatch NCIT:C135634 Autologous Tumor Infiltrating Lymphocytes LN-145 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4025","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12652 Pyramidal Cell biolink:Cell skos:exactMatch NCIT:C12652 Pyramidal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4026","subject_information_content":100.0} +CL:1000411 endothelial cell of Peyer's patch biolink:Cell skos:exactMatch CL:1000411 endothelial cell of Peyer's patch biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4027","subject_information_content":100.0} +CL:1000355 microfold cell of epithelium proper of small intestine biolink:Cell skos:exactMatch CL:1000355 microfold cell of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4028","subject_information_content":100.0} +UMLS:C5157452 CD3+CD57+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157452 CD3+CD57+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4029"} +UMLS:C1440418 Cells.t(9;22)(q22;q12.2)(NR4A3,EWSR1) biolink:Cell skos:exactMatch UMLS:C1440418 Cells.t(9;22)(q22;q12.2)(NR4A3,EWSR1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4030"} +UMLS:C5171656 Lymphocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5171656 Lymphocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4031"} +CL:0002611 neuron of the dorsal spinal cord biolink:Cell skos:exactMatch CL:0002611 neuron of the dorsal spinal cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4032","subject_information_content":94.92072406280138} +MESH:D059290 Dopaminergic Neurons biolink:Cell skos:exactMatch MESH:D059290 Dopaminergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4033"} +UMLS:C2336931 Goblet cell of epithelium proper of large intestine biolink:Cell skos:exactMatch UMLS:C2336931 Goblet cell of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4034"} +UMLS:C0333720 Glycogenic cell biolink:Cell skos:exactMatch SNOMEDCT:58726005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4035","identifierIndex":0} +UMLS:C2340138 Hepatic Stellate Cells biolink:Cell skos:exactMatch MESH:D055166 Hepatic Stellate Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4036","identifierIndex":0} +UMLS:C0882831 Cells.CD3+CD26+ biolink:Cell skos:exactMatch UMLS:C0882831 Cells.CD3+CD26+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4037"} +UMLS:C5157673 CD8+HLA-DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157673 CD8+HLA-DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4038"} +UMLS:C1182790 Epithelial cell of parietal layer of glomerular capsule biolink:Cell skos:exactMatch UMLS:C1182790 Epithelial cell of parietal layer of glomerular capsule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4039"} +UMLS:C1516469 Chicken Cells biolink:Cell skos:exactMatch NCIT:C18695 Chicken Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4040","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1710398 Thymic Epithelial Cell Capable of Differentiating Towards Cortical Cell Type biolink:Cell skos:exactMatch NCIT:C45705 Thymic Epithelial Cell Capable of Differentiating Towards Cortical Cell Type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4041","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157396 CD22 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157396 CD22 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4042"} +UMLS:C1440394 Cells.S phase biolink:Cell skos:exactMatch UMLS:C1440394 Cells.S phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4043"} +UMLS:C4240447 Vascular smooth muscle cell of abdominal aorta biolink:Cell skos:exactMatch UMLS:C4240447 Vascular smooth muscle cell of abdominal aorta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4044"} +UMLS:C5184417 Unspecified cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184417 Unspecified cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4045"} +UMLS:C1515880 Activated Mature Cytotoxic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39687 Activated Mature Cytotoxic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4046","subject_information_content":100.0,"identifierIndex":0} +CL:0002503 adventitial cell biolink:Cell skos:exactMatch CL:0002503 adventitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4047","subject_information_content":88.2062864997332} +UMLS:C0030281 Structure of beta Cell of islet biolink:Cell skos:exactMatch UMLS:C0030281 Structure of beta Cell of islet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4048"} +UMLS:C1514094 Neoplastic Small T-Prolymphocyte biolink:Cell skos:exactMatch NCIT:C39571 Neoplastic Small T-Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4049","subject_information_content":100.0,"identifierIndex":0} +CL:4023071 L5/6 cck cortical GABAergic interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023071 L5/6 cck cortical GABAergic interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4050","subject_information_content":94.92072406280138} +NCIT:C12631 Type II Hair Cell biolink:Cell skos:exactMatch NCIT:C12631 Type II Hair Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4051","subject_information_content":100.0} +UMLS:C1440314 Cells.CD45+CD14+ biolink:Cell skos:exactMatch UMLS:C1440314 Cells.CD45+CD14+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4052"} +UMLS:C2322913 Transitional myocyte of ventricular part of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2322913 Transitional myocyte of ventricular part of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4053"} +UMLS:C0029974 Ovum biolink:Cell skos:exactMatch MESH:D010063 Ovum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4054","identifierIndex":0} +UMLS:C4304486 Population of all nonhematic cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719702007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4055","identifierIndex":0} +UMLS:C0947305 Erythrocytes.CD59 biolink:Cell skos:exactMatch UMLS:C0947305 Erythrocytes.CD59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4056"} +CL:0002615 adipocyte of omentum tissue biolink:Cell skos:exactMatch CL:0002615 adipocyte of omentum tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4057","subject_information_content":100.0} +UMLS:C1513715 Mucinous Bronchial Cell biolink:Cell skos:exactMatch NCIT:C33922 Mucinous Bronchial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4058","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0521183 Buhot cell biolink:Cell skos:exactMatch SNOMEDCT:30469008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4059","identifierIndex":0} +UMLS:C1440416 Cells.t(9;11)(p22;q23)(MLLT3,MLL) biolink:Cell skos:exactMatch UMLS:C1440416 Cells.t(9;11)(p22;q23)(MLLT3,MLL) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4060"} +UMLS:C1267971 Lymphocyte positive for CD79B antigen biolink:Cell skos:exactMatch SNOMEDCT:117411006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4061","identifierIndex":0} +CL:1001287 outer medulla vasa recta descending limb cell biolink:Cell skos:exactMatch CL:1001287 outer medulla vasa recta descending limb cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4062","subject_information_content":100.0} +UMLS:C1513924 Neoplastic Acinar Cell biolink:Cell skos:exactMatch NCIT:C36943 Neoplastic Acinar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4063","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157438 CD3+CD4+ (T4 helper) cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157438 CD3+CD4+ (T4 helper) cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4064"} +UMLS:C0506994 Goblet Cells biolink:Cell skos:exactMatch UMLS:C0506994 Goblet Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4065"} +UMLS:C5417817 iPSC-derived CD16/IL-15RF-expressing Anti-CD19 CAR-NK Cells FT596 biolink:Cell skos:exactMatch NCIT:C170800 iPSC-derived CD16/IL-15RF-expressing Anti-CD19 CAR-NK Cells FT596 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4066","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177776 Polyclonal plasma cells/Plasma cells.total | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177776 Polyclonal plasma cells/Plasma cells.total | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4067"} +UMLS:C5446552 Autologous Bispecific BCMA/CD19-targeted CAR-T Cells GC012F biolink:Cell skos:exactMatch NCIT:C175471 Autologous Bispecific BCMA/CD19-targeted CAR-T Cells GC012F biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4068","subject_information_content":100.0,"identifierIndex":0} +CL:0002588 smooth muscle cell of the umbilical vein biolink:Cell skos:exactMatch CL:0002588 smooth muscle cell of the umbilical vein biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4069","subject_information_content":100.0} +UMLS:C0596890 MCF-7 Cells biolink:Cell skos:exactMatch NCIT:C18096 MCF7 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4070","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3871181 Erythrocytes.hyperchromic biolink:Cell skos:exactMatch UMLS:C3871181 Erythrocytes.hyperchromic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4071"} +UMLS:C1514025 Neoplastic Mesothelial Cell biolink:Cell skos:exactMatch NCIT:C41605 Neoplastic Mesothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4072","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:1000703 kidney pelvis urothelial cell biolink:Cell skos:exactMatch CL:1000703 kidney pelvis urothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4073","subject_information_content":100.0} +UMLS:C2697994 Allogeneic Multipotent Adult Progenitor Cells biolink:Cell skos:exactMatch UMLS:C2697994 Allogeneic Multipotent Adult Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4074"} +UMLS:C1517738 Large Round Epithelioid Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37094 Large Round Epithelioid Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4075","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1631611 Bone marrow derived somatic stem cell biolink:Cell skos:exactMatch SNOMEDCT:420190000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4076","identifierIndex":0} +UMLS:C1879716 Apocrine Carcinoma Cell with Eosinophilic Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C62206 Apocrine Carcinoma Cell with Eosinophilic Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4077","subject_information_content":100.0,"identifierIndex":0} +CL:0002581 perirenal preadipocyte biolink:Cell skos:exactMatch CL:0002581 perirenal preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4078","subject_information_content":100.0} +CL:0002333 neural crest derived fat cell biolink:Cell skos:exactMatch CL:0002333 neural crest derived fat cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4079","subject_information_content":100.0} +UMLS:C0596890 MCF-7 Cells biolink:Cell skos:exactMatch MESH:D061986 MCF-7 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4070","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5157539 CD4+CD25+CD45RO+CD127Low+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157539 CD4+CD25+CD45RO+CD127Low+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4080"} +UMLS:C4724730 Autologous Mesothelin-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies biolink:Cell skos:exactMatch NCIT:C150682 Autologous Mesothelin-specific CAR-T-Cells Expressing Anti-PD-1/CTLA-4 Antibodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4081","subject_information_content":100.0,"identifierIndex":0} +CL:0002163 internal pillar cell of cochlea biolink:Cell skos:exactMatch CL:0002163 internal pillar cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4082","subject_information_content":100.0} +CL:1001214 arcuate artery smooth muscle cell biolink:Cell skos:exactMatch CL:1001214 arcuate artery smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4083","subject_information_content":100.0} +UMLS:C1510965 Atypical Squamous Cells biolink:Cell skos:exactMatch NCIT:C36913 Atypical Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4084","subject_information_content":86.87026217152628,"identifierIndex":0} +CL:0000202 auditory hair cell biolink:Cell skos:exactMatch CL:0000202 auditory hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4085","subject_information_content":89.84144812560278} +CL:0002254 epithelial cell of small intestine biolink:Cell skos:exactMatch CL:0002254 epithelial cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4086","subject_information_content":74.60362031400695} +UMLS:C0229616 Small lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:91233007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4087","identifierIndex":0} +CL:0011017 vagal neural crest cell biolink:Cell skos:exactMatch CL:0011017 vagal neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4088","subject_information_content":100.0} +UMLS:C5216205 Eosinophils|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216205 Eosinophils|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4089"} +UMLS:C2348423 Allogeneic CD4+ Memory Th1-like T Cells/Microparticle-bound Anti-CD3/anti-CD28 biolink:Cell skos:exactMatch UMLS:C2348423 Allogeneic CD4+ Memory Th1-like T Cells/Microparticle-bound Anti-CD3/anti-CD28 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4090"} +UMLS:C1708909 Malignant Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C49124 Malignant Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4091","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5175603 Other cells | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175603 Other cells | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4092"} +NCIT:C12747 Mast Cell biolink:Cell skos:exactMatch NCIT:C12747 Mast Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4093","subject_information_content":100.0} +UMLS:C5171671 Lymphocytes | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171671 Lymphocytes | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4094"} +UMLS:C5400722 Natural Killer Cell biolink:Cell skos:exactMatch UMLS:C5400722 Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4095"} +CL:0000015 male germ cell biolink:Cell skos:exactMatch CL:0000015 male germ cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4096","subject_information_content":79.23864834624368} +UMLS:C3898190 NY-ESO-1-specific CD4-positive T Lymphocytes biolink:Cell skos:exactMatch NCIT:C117724 NY-ESO-1-specific CD4-positive T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4097","subject_information_content":100.0,"identifierIndex":0} +CL:0000206 chemoreceptor cell biolink:Cell skos:exactMatch CL:0000206 chemoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4098","subject_information_content":81.20444558259193} +UMLS:C1882409 Pluripotent Bronchial Precursor Cell biolink:Cell skos:exactMatch NCIT:C55819 Pluripotent Bronchial Precursor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4099","subject_information_content":100.0,"identifierIndex":0} +CL:1000696 kidney interstitial inflammatory macrophage biolink:Cell skos:exactMatch CL:1000696 kidney interstitial inflammatory macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4101","subject_information_content":100.0} +CL:2000082 melanocyte of foreskin biolink:Cell skos:exactMatch CL:2000082 melanocyte of foreskin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4100","subject_information_content":100.0} +CL:0000762 nucleated thrombocyte biolink:Cell skos:exactMatch CL:0000762 nucleated thrombocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4102","subject_information_content":100.0} +CL:0000514 smooth muscle myoblast biolink:Cell skos:exactMatch CL:0000514 smooth muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4103","subject_information_content":100.0} +UMLS:C1518999 Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C12946 Peripheral Blood Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4104","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2963403 Cells.CD79 biolink:Cell skos:exactMatch UMLS:C2963403 Cells.CD79 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4105"} +UMLS:C1267934 Lymphocyte positive for CD47 antigen biolink:Cell skos:exactMatch SNOMEDCT:117377002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4106","identifierIndex":0} +CL:0000947 IgE plasma cell biolink:Cell skos:exactMatch CL:0000947 IgE plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4107","subject_information_content":100.0} +UMLS:C1440293 Cells.CD31 biolink:Cell skos:exactMatch UMLS:C1440293 Cells.CD31 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4108"} +UMLS:C1512565 Hypolobated Megakaryocyte biolink:Cell skos:exactMatch NCIT:C37047 Hypolobated Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4109","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2362002 CD41-Bf biolink:Cell skos:exactMatch UMLS:C2362002 CD41-Bf biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4110"} +UMLS:C5219006 Erythrocytes|NCnc|Urine biolink:Cell skos:exactMatch UMLS:C5219006 Erythrocytes|NCnc|Urine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4111"} +UMLS:C5419548 Modified Conditionally Reprogrammed Cells biolink:Cell skos:exactMatch NCIT:C172258 Modified Conditionally Reprogrammed Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4112","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517631 K-562 biolink:Cell skos:exactMatch NCIT:C19437 K-562 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4113","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518999 Peripheral Blood Stem Cells biolink:Cell skos:exactMatch MESH:D000072916 Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4104","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C3900029 Anti-CD22-CAR m971-BBz Lentiviral Vector-transduced Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C120035 Anti-CD22-CAR m971-BBz Lentiviral Vector-transduced Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4114","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0546502 P.B. megakaryocyte biolink:Cell skos:exactMatch UMLS:C0546502 P.B. megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4115"} +UMLS:C0229643 Eosinophilic metamyelocyte biolink:Cell skos:exactMatch SNOMEDCT:80036001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4116","identifierIndex":0} +UMLS:C2340121 Fusiform cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2340121 Fusiform cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4117"} +UMLS:C5184398 Unidentified cells | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184398 Unidentified cells | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4118"} +UMLS:C5170952 Leukocytes other | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170952 Leukocytes other | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4119"} +CL:1000285 smooth muscle cell of sigmoid colon biolink:Cell skos:exactMatch CL:1000285 smooth muscle cell of sigmoid colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4120","subject_information_content":100.0} +UMLS:C1979086 Blasts.CD11a biolink:Cell skos:exactMatch UMLS:C1979086 Blasts.CD11a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4121"} +UMLS:C4510900 Blast cell positive for CD1 antigen biolink:Cell skos:exactMatch SNOMEDCT:724246004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4122","identifierIndex":0} +UMLS:C1518999 Peripheral Blood Stem Cells biolink:Cell skos:exactMatch SNOMEDCT:419583006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4104","subject_information_content":94.92072406280138,"identifierIndex":2} +UMLS:C1181530 Type I cell of adrenal medulla biolink:Cell skos:exactMatch UMLS:C1181530 Type I cell of adrenal medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4123"} +UMLS:C1708876 Malignant Fibroblast biolink:Cell skos:exactMatch NCIT:C49028 Malignant Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4124","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1514167 Pleomorphic B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C36996 Pleomorphic B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4125","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163446 Eosinophils | Stool | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163446 Eosinophils | Stool | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4126"} +CL:0000950 IgE plasmablast biolink:Cell skos:exactMatch CL:0000950 IgE plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4127","subject_information_content":100.0} +CL:0000059 ameloblast biolink:Cell skos:exactMatch CL:0000059 ameloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4128","subject_information_content":100.0} +UMLS:C5157565 CD42 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157565 CD42 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4129"} +UMLS:C5163726 Erythrocytes | Stool | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163726 Erythrocytes | Stool | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4130"} +UMLS:C1183167 Set of aminergic cells biolink:Cell skos:exactMatch UMLS:C1183167 Set of aminergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4131"} +UMLS:C2952444 Mononuclear phagocyte biolink:Cell skos:exactMatch UMLS:C2952444 Mononuclear phagocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4132"} +UMLS:C4240450 Vascular smooth muscle cell of arteriole biolink:Cell skos:exactMatch UMLS:C4240450 Vascular smooth muscle cell of arteriole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4133"} +CL:0000051 common lymphoid progenitor biolink:Cell skos:exactMatch CL:0000051 common lymphoid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4134","subject_information_content":88.2062864997332} +UMLS:C1979671 Cells.CD3-CD16+CD56+CD244+ biolink:Cell skos:exactMatch UMLS:C1979671 Cells.CD3-CD16+CD56+CD244+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4135"} +UMLS:C2338315 Epithelial cell of large intestine biolink:Cell skos:exactMatch UMLS:C2338315 Epithelial cell of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4136"} +UMLS:C4745325 ECT-001 Expanded Cord Blood biolink:Cell skos:exactMatch NCIT:C156693 ECT-001 Expanded Cord Blood biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4137","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514075 Neoplastic Promyelocyte biolink:Cell skos:exactMatch NCIT:C37072 Neoplastic Promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4138","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5180942 Siderocytes per HPF | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180942 Siderocytes per HPF | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4139"} +UMLS:C4085987 Anti-mesothelin CAR Vector-transduced Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C124650 Anti-mesothelin CAR Vector-transduced Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4140","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183328 Cell body of bipolar cell of retina biolink:Cell skos:exactMatch UMLS:C1183328 Cell body of bipolar cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4141"} +UMLS:C0487022 Irregularly contracted cell biolink:Cell skos:exactMatch SNOMEDCT:725684008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4142","identifierIndex":0} +CL:0000657 secondary spermatocyte biolink:Cell skos:exactMatch CL:0000657 secondary spermatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4143","subject_information_content":100.0} +UMLS:C1306700 Platycyte biolink:Cell skos:exactMatch UMLS:C1306700 Platycyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4144"} +UMLS:C0949666 Oxyphil Cells biolink:Cell skos:exactMatch NCIT:C12654 Oxyphil Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4145","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000495 blue sensitive photoreceptor cell biolink:Cell skos:exactMatch CL:0000495 blue sensitive photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4146","subject_information_content":100.0} +CL:0000173 pancreatic D cell biolink:Cell skos:exactMatch CL:0000173 pancreatic D cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4147","subject_information_content":100.0} +UMLS:C1516094 Atypical Epithelioid Cell biolink:Cell skos:exactMatch NCIT:C37118 Atypical Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4148","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514081 Neoplastic Serous Epithelial Cell biolink:Cell skos:exactMatch NCIT:C37114 Neoplastic Serous Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4149","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1507172 Cells.CD3+TCR gamma delta+ biolink:Cell skos:exactMatch UMLS:C1507172 Cells.CD3+TCR gamma delta+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4150"} +UMLS:C0027882 Neurons biolink:Cell skos:exactMatch SNOMEDCT:47220008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4151","identifierIndex":0} +UMLS:C4518170 Population of all immature eosinophils in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725440002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4152","identifierIndex":0} +UMLS:C5216293 Neutrophils|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216293 Neutrophils|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4153"} +UMLS:C5157405 CD235a cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157405 CD235a cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4154"} +UMLS:C0949666 Oxyphil Cells biolink:Cell skos:exactMatch MESH:D024862 Oxyphil Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4145","subject_information_content":91.94953810872488,"identifierIndex":1} +MESH:D007801 Langerhans Cells biolink:Cell skos:exactMatch MESH:D007801 Langerhans Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4155"} +UMLS:C1514172 Pleomorphic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C37170 Pleomorphic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4156","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1257740 Swiss 3T3 Cells biolink:Cell skos:exactMatch MESH:D041701 Swiss 3T3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4157","identifierIndex":0} +UMLS:C1181540 Chromaffin cell of paraganglion biolink:Cell skos:exactMatch UMLS:C1181540 Chromaffin cell of paraganglion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4158"} +UMLS:C1182804 Epithelial cell of endocrine pancreas biolink:Cell skos:exactMatch UMLS:C1182804 Epithelial cell of endocrine pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4159"} +UMLS:C1883178 Subclone biolink:Cell skos:exactMatch NCIT:C62037 Subclone biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4160","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3890599 Circulating Melanoma Cell biolink:Cell skos:exactMatch NCIT:C118497 Circulating Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4161","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4330672 Membrane-bound Interleukin-21-Expanded Haploidentical Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C131901 Membrane-bound Interleukin-21-Expanded Haploidentical Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4162","subject_information_content":100.0,"identifierIndex":0} +CL:0002301 type B synovial cell biolink:Cell skos:exactMatch CL:0002301 type B synovial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4163","subject_information_content":100.0} +UMLS:C0227276 Paneth Cells biolink:Cell skos:exactMatch UMLS:C0227276 Paneth Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4164"} +UMLS:C0041362 Tumor Cells, Cultured biolink:Cell skos:exactMatch MESH:D014407 Tumor Cells, Cultured biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4165","identifierIndex":0} +UMLS:C2360583 Transfuse packed erythrocytes biolink:Cell skos:exactMatch UMLS:C2360583 Transfuse packed erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4166"} +UMLS:C0333844 Flaming plasma cell biolink:Cell skos:exactMatch SNOMEDCT:81739009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4167","identifierIndex":0} +UMLS:C5238225 Chlorotoxin (EQ)-CD28-CD3zeta-CD19t-expressing CAR T-lymphocytes biolink:Cell skos:exactMatch NCIT:C167056 Chlorotoxin (EQ)-CD28-CD3zeta-CD19t-expressing CAR T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4168","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1706715 Adenohypophysial Cell biolink:Cell skos:exactMatch NCIT:C45920 Adenohypophysial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4169","subject_information_content":81.79098623432766,"identifierIndex":0} +UMLS:C1711380 Neoplastic Medium to Large Size Erythroblast biolink:Cell skos:exactMatch NCIT:C43218 Neoplastic Medium to Large Size Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4170","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514302 Precursor Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C39300 Precursor Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4171","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440365 Cells.CD88 biolink:Cell skos:exactMatch UMLS:C1440365 Cells.CD88 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4172"} +UMLS:C5171871 Macrophages | Urine sediment | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171871 Macrophages | Urine sediment | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4173"} +UMLS:C2963402 Cells.CD4+CD26- biolink:Cell skos:exactMatch UMLS:C2963402 Cells.CD4+CD26- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4174"} +CL:1000417 myoepithelial cell of sweat gland biolink:Cell skos:exactMatch CL:1000417 myoepithelial cell of sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4175","subject_information_content":100.0} +UMLS:C4085984 Anti-Programmed Cell Death Protein 1 Antibody Expressing Pluripotent Killer T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C125654 Anti-Programmed Cell Death Protein 1 Antibody Expressing Pluripotent Killer T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4176","subject_information_content":100.0,"identifierIndex":0} +CL:1000371 transitional myocyte of right branch of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000371 transitional myocyte of right branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4177","subject_information_content":100.0} +CL:0000061 cementoblast biolink:Cell skos:exactMatch CL:0000061 cementoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4178","subject_information_content":100.0} +UMLS:C5178306 Promyelocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178306 Promyelocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4179"} +CL:0000411 Caenorhabditis hypodermal cell biolink:Cell skos:exactMatch CL:0000411 Caenorhabditis hypodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4180","subject_information_content":100.0} +UMLS:C5160255 Clue cells | XXX | Microbiology biolink:Cell skos:exactMatch UMLS:C5160255 Clue cells | XXX | Microbiology biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4181"} +UMLS:C1267861 Lymphoblast positive for CD10 antigen biolink:Cell skos:exactMatch SNOMEDCT:117543008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4182","identifierIndex":0} +UMLS:C4323914 Set of cranial neural crest cells biolink:Cell skos:exactMatch UMLS:C4323914 Set of cranial neural crest cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4183"} +UMLS:C5157399 CD227 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157399 CD227 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4184"} +UMLS:C5157372 CD2 cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157372 CD2 cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4185"} +UMLS:C1148429 Unidentified cell biolink:Cell skos:exactMatch SNOMEDCT:115425006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4186","identifierIndex":0} +UMLS:C0229630 Sideroblast biolink:Cell skos:exactMatch NCIT:C36718 Sideroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4187","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000953 preBCR-negative large pre-B-II cell biolink:Cell skos:exactMatch CL:0000953 preBCR-negative large pre-B-II cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4188","subject_information_content":100.0} +UMLS:C1521882 WA07 cell line biolink:Cell skos:exactMatch NCIT:C20309 WA07 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4189","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3899623 Circulating Stem Cell biolink:Cell skos:exactMatch NCIT:C115116 Circulating Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4190","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1440938 Immature Lymphocyte biolink:Cell skos:exactMatch NCIT:C13118 Immature Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4191","subject_information_content":83.1270105625346,"identifierIndex":0} +UMLS:C1183359 Type-3 epithelial cell of thymus biolink:Cell skos:exactMatch UMLS:C1183359 Type-3 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4192"} +UMLS:C3831170 CD138CAR-CD137/TCRzeta-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C107505 CD138CAR-CD137/TCRzeta-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4193","subject_information_content":100.0,"identifierIndex":0} +CL:0002114 CD38-positive unswitched memory B cell biolink:Cell skos:exactMatch CL:0002114 CD38-positive unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4194","subject_information_content":91.94953810872488} +UMLS:C0225323 Lipoblast (cell) biolink:Cell skos:exactMatch NCIT:C32990 Lipoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4195","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170980 Leukocytes+Platelets | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170980 Leukocytes+Platelets | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4196"} +UMLS:C0229630 Sideroblast biolink:Cell skos:exactMatch SNOMEDCT:53838007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4187","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:1000073 spinal cord radial glial cell biolink:Cell skos:exactMatch CL:1000073 spinal cord radial glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4197","subject_information_content":100.0} +UMLS:C1511119 Binucleated Reed-Sternberg Cell biolink:Cell skos:exactMatch NCIT:C37022 Binucleated Reed-Sternberg Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4198","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2950978 Endothelial cell of endocardium for atrium biolink:Cell skos:exactMatch UMLS:C2950978 Endothelial cell of endocardium for atrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4199"} +UMLS:C1440349 Cells.CD69 biolink:Cell skos:exactMatch UMLS:C1440349 Cells.CD69 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4200"} +CL:0000934 CD4-positive, alpha-beta cytotoxic T cell biolink:Cell skos:exactMatch CL:0000934 CD4-positive, alpha-beta cytotoxic T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4201","subject_information_content":100.0} +UMLS:C1515963 Anaplastic Carcinoma Cell biolink:Cell skos:exactMatch NCIT:C36848 Anaplastic Carcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4202","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4324141 Wasserhelle cell biolink:Cell skos:exactMatch UMLS:C4324141 Wasserhelle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4203"} +UMLS:C0225323 Lipoblast (cell) biolink:Cell skos:exactMatch SNOMEDCT:81186000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4195","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4704951 Multipotent Mesenchymal Stromal Cells biolink:Cell skos:exactMatch UMLS:C4704951 Multipotent Mesenchymal Stromal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4204"} +UMLS:C4505244 Suprachiasmatic Nucleus Cells biolink:Cell skos:exactMatch UMLS:C4505244 Suprachiasmatic Nucleus Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4205"} +CL:0002501 type D1 enteroendocrine cell biolink:Cell skos:exactMatch CL:0002501 type D1 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4206","subject_information_content":100.0} +CL:0002639 amniotic stem cell biolink:Cell skos:exactMatch CL:0002639 amniotic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4207","subject_information_content":100.0} +UMLS:C3495621 A15 dopamine cells biolink:Cell skos:exactMatch UMLS:C3495621 A15 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4208"} +CL:0009005 salivary gland cell biolink:Cell skos:exactMatch CL:0009005 salivary gland cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4209","subject_information_content":100.0} +UMLS:C5170942 Leukocytes | Urethra | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170942 Leukocytes | Urethra | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4210"} +UMLS:C4253022 Set of cells of pancreatic islet biolink:Cell skos:exactMatch UMLS:C4253022 Set of cells of pancreatic islet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4211"} +UMLS:C1183361 Type-5 epithelial cell of thymus biolink:Cell skos:exactMatch UMLS:C1183361 Type-5 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4212"} +UMLS:C0225323 Lipoblast (cell) biolink:Cell skos:exactMatch SNOMEDCT:82851002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4195","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0683191 Ooblast biolink:Cell skos:exactMatch UMLS:C0683191 Ooblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4213"} +UMLS:C2325162 Primary afferent neuron biolink:Cell skos:exactMatch UMLS:C2325162 Primary afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4214"} +UMLS:C4289974 Anti-CD22 CAR-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C128556 Anti-CD22 CAR-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4215","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5180939 Sickle cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180939 Sickle cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4216"} +UMLS:C4527157 LMP1-specific Chimeric Antigen Receptor-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C136986 LMP1-specific Chimeric Antigen Receptor-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4217","subject_information_content":100.0,"identifierIndex":0} +CL:0011012 neural crest cell biolink:Cell skos:exactMatch CL:0011012 neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4218","subject_information_content":84.76217218840416} +CL:0000405 neuroepidermoblast biolink:Cell skos:exactMatch CL:0000405 neuroepidermoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4219","subject_information_content":100.0} +UMLS:C5148822 Reticulocytes.high fluorescence biolink:Cell skos:exactMatch UMLS:C5148822 Reticulocytes.high fluorescence biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4220"} +CL:1000331 serous cell of epithelium of bronchus biolink:Cell skos:exactMatch CL:1000331 serous cell of epithelium of bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4221","subject_information_content":91.94953810872488} +UMLS:C1882053 Neoplastic Ghost Cell biolink:Cell skos:exactMatch NCIT:C62111 Neoplastic Ghost Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4222","subject_information_content":100.0,"identifierIndex":0} +CL:0002034 long term hematopoietic stem cell biolink:Cell skos:exactMatch CL:0002034 long term hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4223","subject_information_content":100.0} +UMLS:C3496264 B1 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496264 B1 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4224"} +UMLS:C1709102 Myopericyte biolink:Cell skos:exactMatch NCIT:C51141 Myopericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4225","subject_information_content":100.0,"identifierIndex":0} +CL:0002638 bronchioalveolar stem cell biolink:Cell skos:exactMatch CL:0002638 bronchioalveolar stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4226","subject_information_content":100.0} +UMLS:C1518228 Malignant Oncocyte biolink:Cell skos:exactMatch NCIT:C36942 Malignant Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4227","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C2828335 Balloon Melanoma Cell biolink:Cell skos:exactMatch NCIT:C62403 Balloon Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4228","subject_information_content":100.0,"identifierIndex":0} +CL:0000893 thymocyte biolink:Cell skos:exactMatch CL:0000893 thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4229","subject_information_content":73.34432806080346} +UMLS:C0242598 LLC-PK1 Cells biolink:Cell skos:exactMatch MESH:D018374 LLC-PK1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4230","identifierIndex":0} +UMLS:C3166352 Spermatozoa.abnormal head shape biolink:Cell skos:exactMatch UMLS:C3166352 Spermatozoa.abnormal head shape biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4231"} +CL:1000466 chromaffin cell of right ovary biolink:Cell skos:exactMatch CL:1000466 chromaffin cell of right ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4232","subject_information_content":100.0} +UMLS:C5401602 Virus Specific T-Cell biolink:Cell skos:exactMatch UMLS:C5401602 Virus Specific T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4233"} +UMLS:C4324222 CD16+CD57+NK lymphocyte biolink:Cell skos:exactMatch UMLS:C4324222 CD16+CD57+NK lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4234"} +UMLS:C2981629 Anti-CD19-CAR Retroviral Vector-Transduced Autologous T Cells biolink:Cell skos:exactMatch NCIT:C88055 Anti-CD19-CAR Retroviral Vector-Transduced Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4235","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440303 Cells.CD39 biolink:Cell skos:exactMatch UMLS:C1440303 Cells.CD39 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4236"} +UMLS:C1514078 Neoplastic Round Cell with Neuronal Differentiation biolink:Cell skos:exactMatch NCIT:C37101 Neoplastic Round Cell with Neuronal Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4237","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709082 Mucin-Producing Malignant Epithelial Cell biolink:Cell skos:exactMatch NCIT:C54219 Mucin-Producing Malignant Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4238","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1135917 Myoblasts, Cardiac biolink:Cell skos:exactMatch MESH:D032386 Myoblasts, Cardiac biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4239","identifierIndex":0} +CL:0008020 skeletal muscle satellite myogenic cell biolink:Cell skos:exactMatch CL:0008020 skeletal muscle satellite myogenic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4240","subject_information_content":100.0} +UMLS:C1517545 Giant Neoplastic Germ Cell biolink:Cell skos:exactMatch NCIT:C37134 Giant Neoplastic Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4241","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:2000070 optic choroid fibroblast biolink:Cell skos:exactMatch CL:2000070 optic choroid fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4242","subject_information_content":100.0} +UMLS:C1882051 Neoplastic Epithelial Small Oval Cell biolink:Cell skos:exactMatch NCIT:C60998 Neoplastic Epithelial Small Oval Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4243","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4082186 Degenerating muscle fiber biolink:Cell skos:exactMatch SNOMEDCT:85613007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4244","identifierIndex":0} +UMLS:C3831510 Anti-VEGFR2-CAR Retroviral Vector-transduced Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C111038 Anti-VEGFR2-CAR Retroviral Vector-transduced Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4245","subject_information_content":100.0,"identifierIndex":0} +CL:0000652 pinealocyte biolink:Cell skos:exactMatch CL:0000652 pinealocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4246","subject_information_content":91.94953810872488} +UMLS:C0037866 Spermatogonia biolink:Cell skos:exactMatch NCIT:C12606 Spermatogonium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4247","subject_information_content":100.0,"identifierIndex":0} +CL:1001573 nasopharyngeal epithelial cell biolink:Cell skos:exactMatch CL:1001573 nasopharyngeal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4248","subject_information_content":100.0} +UMLS:C1515627 gp100-Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell skos:exactMatch NCIT:C38125 gp100-Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4249","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0521392 Peripheral motor neuron biolink:Cell skos:exactMatch SNOMEDCT:18249007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4250","identifierIndex":0} +CL:0001006 dermal dendritic cell biolink:Cell skos:exactMatch CL:0001006 dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4251","subject_information_content":82.42859222307153} +UMLS:C5184819 Variant lymphocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184819 Variant lymphocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4252"} +CL:0000512 paracrine cell biolink:Cell skos:exactMatch CL:0000512 paracrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4253","subject_information_content":100.0} +UMLS:C1267875 Lymphocyte positive for CD16 antigen biolink:Cell skos:exactMatch SNOMEDCT:117554003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4254","identifierIndex":0} +UMLS:C1267804 GPA+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117508007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4255","identifierIndex":0} +UMLS:C1518170 Malignant Clear Squamous Cell biolink:Cell skos:exactMatch NCIT:C36814 Malignant Clear Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4256","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0037866 Spermatogonia biolink:Cell skos:exactMatch MESH:D013093 Spermatogonia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4247","subject_information_content":100.0,"identifierIndex":1} +CL:0000684 littoral cell of liver biolink:Cell skos:exactMatch CL:0000684 littoral cell of liver biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4257","subject_information_content":100.0} +UMLS:C1711303 Malignant Sebocyte biolink:Cell skos:exactMatch NCIT:C43339 Malignant Sebocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4258","subject_information_content":100.0,"identifierIndex":0} +CL:0002414 immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte biolink:Cell skos:exactMatch CL:0002414 immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4259","subject_information_content":100.0} +UMLS:C1440248 Cells.CD11c+CD25+ biolink:Cell skos:exactMatch UMLS:C1440248 Cells.CD11c+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4260"} +UMLS:C5174096 Myelocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174096 Myelocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4261"} +UMLS:C1514181 Pleomorphic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C36997 Pleomorphic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4262","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0011025 exhausted T cell biolink:Cell skos:exactMatch CL:0011025 exhausted T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4263","subject_information_content":100.0} +UMLS:C4758096 Entire G cell of digestive tract biolink:Cell skos:exactMatch SNOMEDCT:781207006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4264","identifierIndex":0} +CL:0000064 ciliated cell biolink:Cell skos:exactMatch CL:0000064 ciliated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4265","subject_information_content":74.15937240904506} +UMLS:C0037866 Spermatogonia biolink:Cell skos:exactMatch SNOMEDCT:67807008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4247","subject_information_content":100.0,"identifierIndex":2} +CL:0000177 testosterone secreting cell biolink:Cell skos:exactMatch CL:0000177 testosterone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4266","subject_information_content":91.94953810872488} +UMLS:C1545462 CD19+ CD103+ cells biolink:Cell skos:exactMatch UMLS:C1545462 CD19+ CD103+ cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4267"} +UMLS:C0314592 Colony-forming unit of macrophagocytic lineage biolink:Cell skos:exactMatch SNOMEDCT:445092004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4268","identifierIndex":0} +CL:0000029 neural crest derived neuron biolink:Cell skos:exactMatch CL:0000029 neural crest derived neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4269","subject_information_content":94.92072406280138} +UMLS:C5446656 Tall Columnar Adenocarcinoma Cell with Reversed Polarity biolink:Cell skos:exactMatch NCIT:C175606 Tall Columnar Adenocarcinoma Cell with Reversed Polarity biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4270","subject_information_content":100.0,"identifierIndex":0} +CL:0011109 hypocretin-secreting neuron biolink:Cell skos:exactMatch CL:0011109 hypocretin-secreting neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4271","subject_information_content":100.0} +UMLS:C1440142 Blasts.CD14 biolink:Cell skos:exactMatch UMLS:C1440142 Blasts.CD14 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4272"} +CL:0002306 epithelial cell of proximal tubule biolink:Cell skos:exactMatch CL:0002306 epithelial cell of proximal tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4273","subject_information_content":89.84144812560278} +CL:0000728 secondary pigment cell biolink:Cell skos:exactMatch CL:0000728 secondary pigment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4274","subject_information_content":100.0} +UMLS:C2331834 Brush cell of epithelium of lobular bronchiole biolink:Cell skos:exactMatch UMLS:C2331834 Brush cell of epithelium of lobular bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4275"} +NCIT:C12598 Oocyte biolink:Cell skos:exactMatch NCIT:C12598 Oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4276","subject_information_content":91.94953810872488} +UMLS:C5426723 100 Cells.CD3-CD14-CD19+CD45+ biolink:Cell skos:exactMatch UMLS:C5426723 100 Cells.CD3-CD14-CD19+CD45+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4277"} +CL:2000078 placental pericyte biolink:Cell skos:exactMatch CL:2000078 placental pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4278","subject_information_content":94.92072406280138} +UMLS:C5157321 CD158 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157321 CD158 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4279"} +CL:0002350 endocardial cell biolink:Cell skos:exactMatch CL:0002350 endocardial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4280","subject_information_content":100.0} +UMLS:C1514068 Neoplastic Polygonal Cell biolink:Cell skos:exactMatch NCIT:C36851 Neoplastic Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4281","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C0524817 Mossy Fibers, Hippocampal biolink:Cell skos:exactMatch MESH:D019599 Mossy Fibers, Hippocampal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4282","identifierIndex":0} +CL:2000084 conjunctiva goblet cell biolink:Cell skos:exactMatch CL:2000084 conjunctiva goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4283","subject_information_content":100.0} +CL:1000274 trophectodermal cell biolink:Cell skos:exactMatch CL:1000274 trophectodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4284","subject_information_content":100.0} +UMLS:C5432371 CLBS119 biolink:Cell skos:exactMatch UMLS:C5432371 CLBS119 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4285"} +NCIT:C33771 Thymic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C33771 Thymic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4286","subject_information_content":88.2062864997332} +MESH:D052681 Gonadotrophs biolink:Cell skos:exactMatch MESH:D052681 Gonadotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4287"} +UMLS:C1514097 Neoplastic Small to Medium-Sized T-Lymphocyte with Irregular Nucleus biolink:Cell skos:exactMatch NCIT:C39681 Neoplastic Small to Medium-Sized T-Lymphocyte with Irregular Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4288","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0440752 Inflammatory cell biolink:Cell skos:exactMatch SNOMEDCT:256923004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4289","identifierIndex":0} +UMLS:C1267884 Lymphocyte positive for CD18 antigen biolink:Cell skos:exactMatch SNOMEDCT:117561004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4290","identifierIndex":0} +UMLS:C1440401 Cells.t(11;22)(q24;q12.2)(FLI1,EWSR1) biolink:Cell skos:exactMatch UMLS:C1440401 Cells.t(11;22)(q24;q12.2)(FLI1,EWSR1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4291"} +UMLS:C5157492 CD34 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157492 CD34 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4292"} +CL:0001018 immature CD8_alpha-low Langerhans cell biolink:Cell skos:exactMatch CL:0001018 immature CD8_alpha-low Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4293","subject_information_content":100.0} +UMLS:C3640209 Mesothelin-specific Chimeric Antigen Receptor-engineered Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C101773 Mesothelin-specific Chimeric Antigen Receptor-engineered Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4294","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267864 Lymphocyte positive for CD11 antigen biolink:Cell skos:exactMatch SNOMEDCT:117545001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4295","identifierIndex":0} +UMLS:C4084782 4H11-28z/fIL-12/EGFRt-expressing Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C123823 4H11-28z/fIL-12/EGFRt-expressing Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4296","subject_information_content":100.0,"identifierIndex":0} +CL:0001034 cell in vitro biolink:Cell skos:exactMatch CL:0001034 cell in vitro biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4297","subject_information_content":46.84768457661483} +UMLS:C1267927 Lymphocyte positive for CD44R antigen biolink:Cell skos:exactMatch SNOMEDCT:117371001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4298","identifierIndex":0} +UMLS:C5419240 Cenplacel-L biolink:Cell skos:exactMatch NCIT:C171653 Cenplacel-L biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4299","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440364 Cells.CD87 biolink:Cell skos:exactMatch UMLS:C1440364 Cells.CD87 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4300"} +CL:0000419 seam cell biolink:Cell skos:exactMatch CL:0000419 seam cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4301","subject_information_content":100.0} +UMLS:C5163710 Erythrocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163710 Erythrocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4302"} +UMLS:C0807107 Vacuolated neutrophil biolink:Cell skos:exactMatch SNOMEDCT:726746002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4303","identifierIndex":0} +UMLS:C5181480 Spherocytes.micro | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5181480 Spherocytes.micro | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4304"} +UMLS:C0312867 Sensitized platelet biolink:Cell skos:exactMatch SNOMEDCT:65533007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4305","identifierIndex":0} +CL:0007023 flask cell biolink:Cell skos:exactMatch CL:0007023 flask cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4306","subject_information_content":100.0} +UMLS:C0085820 Antibody-Secreting Cells biolink:Cell skos:exactMatch UMLS:C0085820 Antibody-Secreting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4307"} +CL:1000418 myoepithelial cell of lactiferous alveolus biolink:Cell skos:exactMatch CL:1000418 myoepithelial cell of lactiferous alveolus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4308","subject_information_content":100.0} +UMLS:C0524455 Structure of exocervical epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:91687006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4309","identifierIndex":0} +UMLS:C0229892 Lymph lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:90385004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4310","identifierIndex":0} +UMLS:C1440395 Cells.SmIg biolink:Cell skos:exactMatch UMLS:C1440395 Cells.SmIg biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4311"} +UMLS:C1257742 BALB 3T3 clone A31 biolink:Cell skos:exactMatch UMLS:C1257742 BALB 3T3 clone A31 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4312"} +UMLS:C1518169 Malignant Clear Cell Oncocyte biolink:Cell skos:exactMatch NCIT:C36940 Malignant Clear Cell Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4313","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4740205 Cells.TACI biolink:Cell skos:exactMatch UMLS:C4740205 Cells.TACI biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4314"} +UMLS:C1182709 Epithelial cell of stratum spinosum of esophagus biolink:Cell skos:exactMatch UMLS:C1182709 Epithelial cell of stratum spinosum of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4315"} +CL:0000100 motor neuron biolink:Cell skos:exactMatch CL:0000100 motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4316","subject_information_content":76.12516964539331} +UMLS:C5157614 CD55+CD59 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157614 CD55+CD59 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4317"} +UMLS:C0684115 macroblast of Naegeli biolink:Cell skos:exactMatch UMLS:C0684115 macroblast of Naegeli biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4318"} +UMLS:C0312738 Pre-B Lymphocytes biolink:Cell skos:exactMatch UMLS:C0312738 Pre-B Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4319"} +UMLS:C2331714 Regular interventricular cardiac myocyte biolink:Cell skos:exactMatch UMLS:C2331714 Regular interventricular cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4320"} +UMLS:C5446926 Anti-CD19-targeting CAR-T Cells biolink:Cell skos:exactMatch NCIT:C176018 Anti-CD19-targeting CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4321","subject_information_content":69.87614855147147,"identifierIndex":0} +UMLS:C5173493 Mononuclear cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173493 Mononuclear cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4322"} +UMLS:C5157546 CD4+CD45RA+CD45RB+CD45RC+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157546 CD4+CD45RA+CD45RB+CD45RC+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4323"} +UMLS:C2338777 Midget ganglion cell of retina biolink:Cell skos:exactMatch UMLS:C2338777 Midget ganglion cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4324"} +CL:0001070 beige adipocyte biolink:Cell skos:exactMatch CL:0001070 beige adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4325","subject_information_content":100.0} +UMLS:C5157263 CD117 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157263 CD117 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4326"} +UMLS:C5163555 Epithelial cells.squamous | Bronchoalveolar lavage | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163555 Epithelial cells.squamous | Bronchoalveolar lavage | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4327"} +NCIT:C33266 Parathyroid Gland Chief Cell biolink:Cell skos:exactMatch NCIT:C33266 Parathyroid Gland Chief Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4328","subject_information_content":100.0} +NCIT:C12628 Sensory Neuron biolink:Cell skos:exactMatch NCIT:C12628 Sensory Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4329","subject_information_content":81.20444558259193} +MESH:D006057 Golgi-Mazzoni Corpuscles biolink:Cell skos:exactMatch MESH:D006057 Golgi-Mazzoni Corpuscles biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4330"} +UMLS:C1514170 Pleomorphic Cell biolink:Cell skos:exactMatch NCIT:C37111 Pleomorphic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4331","subject_information_content":81.79098623432766,"identifierIndex":0} +CL:4023043 L5/6 near-projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023043 L5/6 near-projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4332","subject_information_content":100.0} +UMLS:C1512995 Maria ES Cell Line biolink:Cell skos:exactMatch NCIT:C20274 Maria ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4333","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C3827167 Autologous Lymphoid Effector Cells Specific Against Tumor Cells biolink:Cell skos:exactMatch NCIT:C112495 Autologous Lymphoid Effector Cells Specific Against Tumor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4334","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3282679 foreskin keratinocyte, neonatal biolink:Cell skos:exactMatch UMLS:C3282679 foreskin keratinocyte, neonatal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4335"} +CL:0002017 Kit-negative, Ly-76 high orthochromatophilic erythroblasts biolink:Cell skos:exactMatch CL:0002017 Kit-negative, Ly-76 high orthochromatophilic erythroblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4336","subject_information_content":100.0} +UMLS:C3899996 Autologous MAGE-A3-specific HLA-A*01-Restricted T Cell Receptor Gene Engineered Lymphocytes biolink:Cell skos:exactMatch NCIT:C116711 Autologous MAGE-A3-specific HLA-A*01-Restricted T Cell Receptor Gene Engineered Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4337","subject_information_content":100.0,"identifierIndex":0} +CL:0000853 olfactory epithelial supporting cell biolink:Cell skos:exactMatch CL:0000853 olfactory epithelial supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4338","subject_information_content":100.0} +UMLS:C2709162 Mycobacterium tuberculosis A60 biolink:Cell skos:exactMatch UMLS:C2709162 Mycobacterium tuberculosis A60 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4339"} +UMLS:C5174098 Myelocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174098 Myelocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4340"} +CL:0009002 inflammatory cell biolink:Cell skos:exactMatch CL:0009002 inflammatory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4341","subject_information_content":100.0} +UMLS:C1545461 Cells.CD11c+CD19+ biolink:Cell skos:exactMatch UMLS:C1545461 Cells.CD11c+CD19+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4342"} +CL:0000094 granulocyte biolink:Cell skos:exactMatch CL:0000094 granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4343","subject_information_content":77.69020780594161} +UMLS:C0312737 Immunologic cell biolink:Cell skos:exactMatch SNOMEDCT:64419002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4344","identifierIndex":0} +UMLS:C5164690 FLAER cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5164690 FLAER cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4345"} +NCIT:C33151 Myoblast biolink:Cell skos:exactMatch NCIT:C33151 Myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4346","subject_information_content":100.0} +UMLS:C5237449 Anti-CD19-CAR-CD28/CD20-CAR-4-1BB-expressing Autologous T-lymphocytes Hu1928-Hu20BB biolink:Cell skos:exactMatch NCIT:C165774 Anti-CD19-CAR-CD28/CD20-CAR-4-1BB-expressing Autologous T-lymphocytes Hu1928-Hu20BB biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4347","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333735 Gemistocyte biolink:Cell skos:exactMatch UMLS:C0333735 Gemistocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4348"} +UMLS:C1522667 Leukocyte - Monocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22586 Mouse Monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4349","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5155100 Bizarre cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155100 Bizarre cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4350"} +UMLS:C5219005 Epithelial cells|NCnc|Urine biolink:Cell skos:exactMatch UMLS:C5219005 Epithelial cells|NCnc|Urine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4351"} +UMLS:C2326607 Adipocyte of epicardial fat of left ventricle biolink:Cell skos:exactMatch UMLS:C2326607 Adipocyte of epicardial fat of left ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4352"} +CL:0008005 obliquely striated somatic muscle cell biolink:Cell skos:exactMatch CL:0008005 obliquely striated somatic muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4353","subject_information_content":100.0} +MESH:D033661 Oocysts biolink:Cell skos:exactMatch MESH:D033661 Oocysts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4354"} +UMLS:C2986401 GITRL RNA-transfected Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C94216 GITRL RNA-transfected Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4355","subject_information_content":100.0,"identifierIndex":0} +CL:1001576 oral mucosa squamous cell biolink:Cell skos:exactMatch CL:1001576 oral mucosa squamous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4356","subject_information_content":100.0} +CL:0000905 effector memory CD4-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000905 effector memory CD4-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4357","subject_information_content":100.0} +CL:0002033 short term hematopoietic stem cell biolink:Cell skos:exactMatch CL:0002033 short term hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4358","subject_information_content":100.0} +UMLS:C5401677 CYP-001 biolink:Cell skos:exactMatch UMLS:C5401677 CYP-001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4359"} +UMLS:C4725690 Autologous Anti-CD19 CAR-T Cells TBI-1501 biolink:Cell skos:exactMatch NCIT:C150377 Autologous Anti-CD19 CAR-T Cells TBI-1501 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4360","subject_information_content":100.0,"identifierIndex":0} +CL:0002057 CD14-positive, CD16-negative classical monocyte biolink:Cell skos:exactMatch CL:0002057 CD14-positive, CD16-negative classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4361","subject_information_content":100.0} +UMLS:C1516899 Eosinophilic Brown Fat Cell biolink:Cell skos:exactMatch NCIT:C36969 Eosinophilic Brown Fat Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4362","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182636 Primary follicular cell of ovary biolink:Cell skos:exactMatch UMLS:C1182636 Primary follicular cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4363"} +MESH:D000938 Antigen-Presenting Cells biolink:Cell skos:exactMatch MESH:D000938 Antigen-Presenting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4364"} +UMLS:C0024432 macrophage biolink:Cell skos:exactMatch UMLS:C0024432 macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4365"} +UMLS:C2339635 Enterocyte of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell skos:exactMatch UMLS:C2339635 Enterocyte of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4366"} +UMLS:C2335684 Myocyte of anterior internodal tract biolink:Cell skos:exactMatch UMLS:C2335684 Myocyte of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4367"} +UMLS:C0947288 Cell positive for CD71 antigen biolink:Cell skos:exactMatch SNOMEDCT:116830006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4368","identifierIndex":0} +UMLS:C4288532 PDCD-1 Knockout Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C128281 PDCD-1 Knockout Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4369","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0483187 CD19+SmIg lambda+ biolink:Cell skos:exactMatch UMLS:C0483187 CD19+SmIg lambda+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4370"} +CL:0002389 uninucleate arthroconidium biolink:Cell skos:exactMatch CL:0002389 uninucleate arthroconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4371","subject_information_content":100.0} +UMLS:C3495991 C2 adrenaline cells biolink:Cell skos:exactMatch UMLS:C3495991 C2 adrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4372"} +UMLS:C0684128 lymphoid megakaryocyte biolink:Cell skos:exactMatch UMLS:C0684128 lymphoid megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4373"} +UMLS:C0887811 Radiation Hybrids biolink:Cell skos:exactMatch UMLS:C0887811 Radiation Hybrids biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4374"} +CL:0000142 hyalocyte biolink:Cell skos:exactMatch CL:0000142 hyalocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4375","subject_information_content":100.0} +UMLS:C0871657 Auditory Neurons biolink:Cell skos:exactMatch UMLS:C0871657 Auditory Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4376"} +UMLS:C0314593 Colony-forming unit of megakarocytic lineage biolink:Cell skos:exactMatch NCIT:C121478 Megakaryocyte Colony Forming Unit biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4377","subject_information_content":100.0,"identifierIndex":0} +CL:0000155 peptic cell biolink:Cell skos:exactMatch CL:0000155 peptic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4378","subject_information_content":100.0} +UMLS:C1710694 Xanthomatous Cell biolink:Cell skos:exactMatch NCIT:C49071 Xanthomatous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4379","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:4023015 sncg GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023015 sncg GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4380","subject_information_content":100.0} +UMLS:C1440405 Cells.t(12;22)(q13;q12.2)(ATF1,EWSR1) biolink:Cell skos:exactMatch UMLS:C1440405 Cells.t(12;22)(q13;q12.2)(ATF1,EWSR1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4381"} +NCIT:C13123 Memory B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C13123 Memory B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4382","subject_information_content":94.92072406280138} +UMLS:C2326979 Diffuse amacrine cell of retina biolink:Cell skos:exactMatch UMLS:C2326979 Diffuse amacrine cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4383"} +UMLS:C5184822 Variant lymphocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184822 Variant lymphocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4384"} +CL:1000547 kidney inner medulla collecting duct epithelial cell biolink:Cell skos:exactMatch CL:1000547 kidney inner medulla collecting duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4385","subject_information_content":91.94953810872488} +CL:0009084 epithelial cell of endometrial gland biolink:Cell skos:exactMatch CL:0009084 epithelial cell of endometrial gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4386"} +UMLS:C0314593 Colony-forming unit of megakarocytic lineage biolink:Cell skos:exactMatch SNOMEDCT:445093009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4377","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1522099 Leukocyte - Lymphoblast (MMHCC) biolink:Cell skos:exactMatch NCIT:C22571 Mouse Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4387","subject_information_content":100.0,"identifierIndex":0} +CL:0011027 skeletal muscle fibroblast biolink:Cell skos:exactMatch CL:0011027 skeletal muscle fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4388","subject_information_content":100.0} +UMLS:C1511008 BG03 biolink:Cell skos:exactMatch NCIT:C20235 BG03 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4389","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267918 Lymphocyte positive for CD41 antigen biolink:Cell skos:exactMatch SNOMEDCT:117586008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4390","identifierIndex":0} +NCIT:C12588 Hepatocyte biolink:Cell skos:exactMatch NCIT:C12588 Hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4391","subject_information_content":100.0} +UMLS:C5177468 Plasma cells/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177468 Plasma cells/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4392"} +CL:0000239 brush border epithelial cell biolink:Cell skos:exactMatch CL:0000239 brush border epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4393","subject_information_content":78.42360399800205} +CL:0000801 gamma-delta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000801 gamma-delta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4394","subject_information_content":88.2062864997332} +UMLS:C5161796 Cytoplasmic CD179a blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5161796 Cytoplasmic CD179a blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4395"} +UMLS:C5157424 CD3 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157424 CD3 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4396"} +CL:0009065 tuft cell of anorectum biolink:Cell skos:exactMatch CL:0009065 tuft cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4397","subject_information_content":100.0} +NCIT:C12657 Phagocytic Cell biolink:Cell skos:exactMatch NCIT:C12657 Phagocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4398","subject_information_content":78.81980028025117} +UMLS:C4329372 Autologous PD-1-targeted Chimeric Switch Receptor-modified T Lymphocytes biolink:Cell skos:exactMatch NCIT:C132251 Autologous PD-1-targeted Chimeric Switch Receptor-modified T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4399","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4245840 Set of regular cardiac myocytes biolink:Cell skos:exactMatch UMLS:C4245840 Set of regular cardiac myocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4401"} +UMLS:C1517733 Large Megakaryocyte biolink:Cell skos:exactMatch NCIT:C37044 Large Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4400","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1510955 Malignant Glomus Cell biolink:Cell skos:exactMatch NCIT:C36966 Malignant Glomus Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4402","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4246710 Vascular smooth muscle cell of coronary artery biolink:Cell skos:exactMatch UMLS:C4246710 Vascular smooth muscle cell of coronary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4403"} +UMLS:C0225698 Alveolar Epithelial Cells biolink:Cell skos:exactMatch UMLS:C0225698 Alveolar Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4404"} +UMLS:C5157544 CD4+CD45RA+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157544 CD4+CD45RA+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4405"} +UMLS:C5177779 Polymorphonuclear cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177779 Polymorphonuclear cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4406"} +CL:0008015 inhibitory motor neuron biolink:Cell skos:exactMatch CL:0008015 inhibitory motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4407","subject_information_content":100.0} +CL:4023054 mesothelial fibroblast biolink:Cell skos:exactMatch CL:4023054 mesothelial fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4408","subject_information_content":88.2062864997332} +CL:0001068 ILC1 biolink:Cell skos:exactMatch CL:0001068 ILC1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4410","subject_information_content":94.92072406280138} +UMLS:C5156214 Burr cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5156214 Burr cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4411"} +UMLS:C4527227 Allogeneic CD19-specific Universal CAR19-expressing T-lymphocytes biolink:Cell skos:exactMatch UMLS:C4527227 Allogeneic CD19-specific Universal CAR19-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4412"} +UMLS:C1979696 Ependymal+Choroid plexus cells biolink:Cell skos:exactMatch UMLS:C1979696 Ependymal+Choroid plexus cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4413"} +UMLS:C1710151 Spindle B Melanoma Cell biolink:Cell skos:exactMatch NCIT:C54159 Spindle B Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4414","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5448071 Tumor-Infiltrating T Helper 17 Cell biolink:Cell skos:exactMatch NCIT:C176757 Tumor-Infiltrating T Helper 17 Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4415","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3488038 human breast tumor cell biolink:Cell skos:exactMatch UMLS:C3488038 human breast tumor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4416"} +CL:0002671 endothelial stalk cell biolink:Cell skos:exactMatch CL:0002671 endothelial stalk cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4417","subject_information_content":100.0} +UMLS:C1516095 Atypical Fibroblastic Spindle Cell biolink:Cell skos:exactMatch NCIT:C36956 Atypical Fibroblastic Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4418","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2330822 Goblet cell of epithelium of crypt of Lieberkuhn of large intestine biolink:Cell skos:exactMatch UMLS:C2330822 Goblet cell of epithelium of crypt of Lieberkuhn of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4419"} +UMLS:C1440224 CD43.T-Cell monocyte+Myeloid cell biolink:Cell skos:exactMatch UMLS:C1440224 CD43.T-Cell monocyte+Myeloid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4420"} +CL:0000360 morula cell biolink:Cell skos:exactMatch CL:0000360 morula cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4421","subject_information_content":100.0} +UMLS:C4551909 Bone Marrow Stromal Stem Cells biolink:Cell skos:exactMatch SNOMEDCT:418460001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4422","identifierIndex":0} +UMLS:C1514182 Mesothelial cell of pleura biolink:Cell skos:exactMatch NCIT:C33330 Pleural Mesothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4423","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157615 CD55+CD59 deficient RBC+Granulocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157615 CD55+CD59 deficient RBC+Granulocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4424"} +CL:0000226 single nucleate cell biolink:Cell skos:exactMatch CL:0000226 single nucleate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4425","subject_information_content":55.87886689381522} +UMLS:C1514051 Neoplastic Non-Cutaneous Basaloid Cell biolink:Cell skos:exactMatch NCIT:C36782 Neoplastic Non-Cutaneous Basaloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4426","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5177775 Polyclonal plasma cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177775 Polyclonal plasma cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4427"} +UMLS:C0682541 polyhedral cell biolink:Cell skos:exactMatch UMLS:C0682541 polyhedral cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4428"} +CL:1000467 chromaffin cell of left ovary biolink:Cell skos:exactMatch CL:1000467 chromaffin cell of left ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4429","subject_information_content":100.0} +NCIT:C33523 Secondary Oocyte biolink:Cell skos:exactMatch NCIT:C33523 Secondary Oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4430","subject_information_content":100.0} +UMLS:C1514014 Neoplastic Maturing Ganglion Cell biolink:Cell skos:exactMatch NCIT:C42093 Neoplastic Maturing Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4431","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519458 Neoplastic Spindle-Shaped Fibroblast biolink:Cell skos:exactMatch NCIT:C36955 Neoplastic Spindle-Shaped Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4432","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1710037 Sebocyte biolink:Cell skos:exactMatch NCIT:C43337 Sebocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4433","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4522887 Cells, Cultured, Autologous, Genetically-modified biolink:Cell skos:exactMatch UMLS:C4522887 Cells, Cultured, Autologous, Genetically-modified biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4434"} +UMLS:C1978802 Cytokeratin cells biolink:Cell skos:exactMatch UMLS:C1978802 Cytokeratin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4435"} +UMLS:C5155095 Bite cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155095 Bite cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4436"} +UMLS:C0228129 Outer mesothelial cell biolink:Cell skos:exactMatch SNOMEDCT:90459004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4437","identifierIndex":0} +CL:0008016 activated skeletal muscle satellite cell biolink:Cell skos:exactMatch CL:0008016 activated skeletal muscle satellite cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4438","subject_information_content":100.0} +UMLS:C2951544 Type D enteroendocrine cell of epithelium proper of jejunum biolink:Cell skos:exactMatch UMLS:C2951544 Type D enteroendocrine cell of epithelium proper of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4439"} +UMLS:C1708887 Malignant Large Squamous Cell biolink:Cell skos:exactMatch NCIT:C54235 Malignant Large Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4440","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5237228 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells CT053 biolink:Cell skos:exactMatch NCIT:C165507 Zevorcabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4441","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4510909 Blast cell positive for CD34 antigen biolink:Cell skos:exactMatch SNOMEDCT:725170002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4442","identifierIndex":0} +UMLS:C4253021 Set of type A cells of pancreatic islet biolink:Cell skos:exactMatch UMLS:C4253021 Set of type A cells of pancreatic islet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4443"} +UMLS:C1267800 CYCD79+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117504009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4444","identifierIndex":0} +UMLS:C4331503 Virus-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C131870 Virus-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4409","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1510719 Abnormal Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37086 Abnormal Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4445","subject_information_content":80.66139376001811,"identifierIndex":0} +UMLS:C5419828 SARS-CoV-2 Antigen-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C172750 SARS-CoV-2 Antigen-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4446","subject_information_content":100.0,"identifierIndex":0} +CL:1000484 Purkinje myocyte of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000484 Purkinje myocyte of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4447","subject_information_content":100.0} +CL:0002395 Gr1-high classical monocyte biolink:Cell skos:exactMatch CL:0002395 Gr1-high classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4448","subject_information_content":89.84144812560278} +CL:0000440 melanocyte stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000440 melanocyte stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4449","subject_information_content":100.0} +CL:0000718 compound eye cone cell biolink:Cell skos:exactMatch CL:0000718 compound eye cone cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4450","subject_information_content":89.84144812560278} +UMLS:C5186734 Leukocytes | Blood Product unit.platelet pheresis | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186734 Leukocytes | Blood Product unit.platelet pheresis | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4451"} +UMLS:C2924222 Cells.CD11c-CD25+ biolink:Cell skos:exactMatch UMLS:C2924222 Cells.CD11c-CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4452"} +CL:0002478 F4/80-negative adipose macrophage biolink:Cell skos:exactMatch CL:0002478 F4/80-negative adipose macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4453","subject_information_content":100.0} +UMLS:C1280425 Entire alpha Cell of islet biolink:Cell skos:exactMatch SNOMEDCT:247770008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4454","identifierIndex":0} +CL:0000373 histoblast biolink:Cell skos:exactMatch CL:0000373 histoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4455","subject_information_content":100.0} +CL:0002388 multinucleate arthroconidium biolink:Cell skos:exactMatch CL:0002388 multinucleate arthroconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4456","subject_information_content":100.0} +UMLS:C2330928 Basal cell of urothelium biolink:Cell skos:exactMatch UMLS:C2330928 Basal cell of urothelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4457"} +UMLS:C1708875 Malignant Epithelioid Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C49127 Malignant Epithelioid Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4458","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170930 Leukocytes | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170930 Leukocytes | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4459"} +UMLS:C5170959 Leukocytes other | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170959 Leukocytes other | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4460"} +UMLS:C4683836 IL13Ralpha2-specific Hinge-optimized 4-1BB-co-stimulatory CAR/Truncated CD19-expressing Autologous TN/MEM Cells biolink:Cell skos:exactMatch NCIT:C141460 IL13Ralpha2-specific Hinge-optimized 4-1BB-co-stimulatory CAR/Truncated CD19-expressing Autologous TN/MEM Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4461","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517098 FSH Cells biolink:Cell skos:exactMatch NCIT:C32641 FSH Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4462","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4725117 Anti-CD3/MUC1 Antibody-armed PD-1 Inhibitor-induced Cytokine-induced Killer Cells biolink:Cell skos:exactMatch NCIT:C148543 Anti-CD3/MUC1 Antibody-armed PD-1 Inhibitor-induced Cytokine-induced Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4463","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512636 Immature Myxoid Mesenchymal Cell biolink:Cell skos:exactMatch NCIT:C37119 Immature Myxoid Mesenchymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4464","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682546 Acidophil cell biolink:Cell skos:exactMatch NCIT:C32044 Acidophilic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4465","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0002089 group 2 innate lymphoid cell, mouse biolink:Cell skos:exactMatch CL:0002089 group 2 innate lymphoid cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4466","subject_information_content":100.0} +UMLS:C0882849 Cell positive for CD34 antigen biolink:Cell skos:exactMatch SNOMEDCT:116826008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4467","identifierIndex":0} +UMLS:C5447541 Autologous HER2-targeted Dual-switch CAR-T Cells BPX-603 biolink:Cell skos:exactMatch NCIT:C176990 Autologous HER2-targeted Dual-switch CAR-T Cells BPX-603 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4468","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0598170 Melanoblast biolink:Cell skos:exactMatch NCIT:C85503 Melanoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4469","subject_information_content":100.0,"identifierIndex":0} +CL:0000257 Eumycetozoan cell biolink:Cell skos:exactMatch CL:0000257 Eumycetozoan cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4470","subject_information_content":100.0} +UMLS:C1267885 Lymphoblast positive for CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:117562006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4471","identifierIndex":0} +UMLS:C4085937 Adipose-derived Stromal Vascular Fraction Cells biolink:Cell skos:exactMatch NCIT:C124992 Adipose-derived Stromal Vascular Fraction Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4472","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5454454 Epithelial cells | Cervix or Vagina | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5454454 Epithelial cells | Cervix or Vagina | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4473"} +MESH:D006377 T-Lymphocytes, Helper-Inducer biolink:Cell skos:exactMatch MESH:D006377 T-Lymphocytes, Helper-Inducer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4474"} +UMLS:C5383249 Leukocytes | Stem cell product | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5383249 Leukocytes | Stem cell product | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4475"} +UMLS:C2362797 Blood cell precursor - general anatomical term biolink:Cell skos:exactMatch UMLS:C2362797 Blood cell precursor - general anatomical term biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4476"} +UMLS:C5177619 Platelets | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177619 Platelets | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4477"} +UMLS:C5157347 CD19 cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157347 CD19 cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4478"} +UMLS:C4034569 Erythrocytes.ghost cells biolink:Cell skos:exactMatch UMLS:C4034569 Erythrocytes.ghost cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4479"} +UMLS:C1179683 Mucous cell of stomach biolink:Cell skos:exactMatch UMLS:C1179683 Mucous cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4480"} +CL:0009025 mesothelial cell of colon biolink:Cell skos:exactMatch CL:0009025 mesothelial cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4481","subject_information_content":91.94953810872488} +UMLS:C3899739 CXCL12-Abundant Reticular Cell biolink:Cell skos:exactMatch NCIT:C114786 CXCL12-Abundant Reticular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4482","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2338514 Set of Ch3 cholinergic cells biolink:Cell skos:exactMatch UMLS:C2338514 Set of Ch3 cholinergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4483"} +CL:0000000 cell biolink:Cell skos:exactMatch CL:0000000 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4484","subject_information_content":39.48734808720143} +UMLS:C5157476 CD30 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157476 CD30 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4485"} +MESH:D016676 Macrophages, Alveolar biolink:Cell skos:exactMatch MESH:D016676 Macrophages, Alveolar biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4486"} +CL:0009081 specified double negative thymocyte (Homo sapiens) biolink:Cell skos:exactMatch CL:0009081 specified double negative thymocyte (Homo sapiens) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4487"} +CL:0000236 B cell biolink:Cell skos:exactMatch CL:0000236 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4488","subject_information_content":66.94511527980866} +CL:0000767 basophil biolink:Cell skos:exactMatch CL:0000767 basophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4489","subject_information_content":86.87026217152628} +UMLS:C0599819 PBL (peripheral blood lymphocyte) biolink:Cell skos:exactMatch UMLS:C0599819 PBL (peripheral blood lymphocyte) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4490"} +CL:0008013 cranial visceromotor neuron biolink:Cell skos:exactMatch CL:0008013 cranial visceromotor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4491","subject_information_content":100.0} +CL:0002145 ciliated columnar cell of tracheobronchial tree biolink:Cell skos:exactMatch CL:0002145 ciliated columnar cell of tracheobronchial tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4492","subject_information_content":94.92072406280138} +UMLS:C1519378 Small Meningothelial Cell biolink:Cell skos:exactMatch NCIT:C37161 Small Meningothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4493","subject_information_content":100.0,"identifierIndex":0} +CL:0008046 extrafusal muscle fiber biolink:Cell skos:exactMatch CL:0008046 extrafusal muscle fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4494","subject_information_content":83.1270105625346} +UMLS:C0600432 K562 Cells biolink:Cell skos:exactMatch MESH:D020014 K562 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4495","identifierIndex":0} +CL:0000179 progesterone secreting cell biolink:Cell skos:exactMatch CL:0000179 progesterone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4496","subject_information_content":89.84144812560278} +UMLS:C4763629 Valproic Acid-Expanded Umbilical Cord Blood-derived CD34-positive Cells biolink:Cell skos:exactMatch NCIT:C157453 Valproic Acid-Expanded Umbilical Cord Blood-derived CD34-positive Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4497","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1441345 100 spermatozoa biolink:Cell skos:exactMatch UMLS:C1441345 100 spermatozoa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4498"} +UMLS:C5216257 Macrophages|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216257 Macrophages|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4499"} +CL:0002344 CD56-negative, CD161-positive immature natural killer cell, human biolink:Cell skos:exactMatch CL:0002344 CD56-negative, CD161-positive immature natural killer cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4500","subject_information_content":100.0} +CL:0000041 mature eosinophil biolink:Cell skos:exactMatch CL:0000041 mature eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4501","subject_information_content":100.0} +UMLS:C5175648 Ovalocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175648 Ovalocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4502"} +UMLS:C1267888 Lymphocyte positive for both CD19 antigen and surface lambda immunoglobulin light chain biolink:Cell skos:exactMatch SNOMEDCT:117564007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4503","identifierIndex":0} +CL:0000733 lymph gland plasmatocyte biolink:Cell skos:exactMatch CL:0000733 lymph gland plasmatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4504","subject_information_content":100.0} +UMLS:C0229649 Heterophil biolink:Cell skos:exactMatch SNOMEDCT:76335007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4505","identifierIndex":0} +CL:1000362 transitional myocyte of interventricular septum biolink:Cell skos:exactMatch CL:1000362 transitional myocyte of interventricular septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4506","subject_information_content":100.0} +UMLS:C4707434 Technetium (99m-Tc) exametazime labeled leukocytes biolink:Cell skos:exactMatch SNOMEDCT:765339002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4507","identifierIndex":0} +CL:0002571 hepatic mesenchymal stem cell biolink:Cell skos:exactMatch CL:0002571 hepatic mesenchymal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4508","subject_information_content":100.0} +CL:0002434 CD24-positive, CD8 single-positive thymocyte biolink:Cell skos:exactMatch CL:0002434 CD24-positive, CD8 single-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4509","subject_information_content":100.0} +UMLS:C5173438 Monocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173438 Monocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4510"} +CL:1001432 kidney collecting duct intercalated cell biolink:Cell skos:exactMatch CL:1001432 kidney collecting duct intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4511","subject_information_content":88.2062864997332} +CL:0000101 sensory neuron biolink:Cell skos:exactMatch CL:0000101 sensory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4512","subject_information_content":67.53165593154439} +UMLS:C1440348 Cells.CD68 biolink:Cell skos:exactMatch UMLS:C1440348 Cells.CD68 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4513"} +CL:4023045 medulla-projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023045 medulla-projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4514","subject_information_content":100.0} +UMLS:C2333949 Cholinergic Neurons biolink:Cell skos:exactMatch MESH:D059329 Cholinergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4515","identifierIndex":0} +UMLS:C1709176 Neoplastic Follicle Center B-Cell biolink:Cell skos:exactMatch NCIT:C45317 Neoplastic Follicle Center B-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4516","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0009074 medullary thymic epithelial cell type 4 biolink:Cell skos:exactMatch CL:0009074 medullary thymic epithelial cell type 4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4517"} +UMLS:C1254552 Band Form Leukocytes biolink:Cell skos:exactMatch UMLS:C1254552 Band Form Leukocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4518"} +UMLS:C4038423 cervical cells biolink:Cell skos:exactMatch UMLS:C4038423 cervical cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4519"} +CL:0010011 cerebral cortex GABAergic interneuron biolink:Cell skos:exactMatch CL:0010011 cerebral cortex GABAergic interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4520","subject_information_content":75.84861432617468} +UMLS:C0596030 Acinar Cell biolink:Cell skos:exactMatch NCIT:C13077 Acinar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4521","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0002265 type D cell of colon biolink:Cell skos:exactMatch CL:0002265 type D cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4522","subject_information_content":100.0} +UMLS:C4085971 Anti-Epidermal Growth Factor Receptor 2 Antibody Expressing Pluripotent Killer T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C125633 Anti-Epidermal Growth Factor Receptor 2 Antibody Expressing Pluripotent Killer T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4523","subject_information_content":100.0,"identifierIndex":0} +CL:0002553 fibroblast of lung biolink:Cell skos:exactMatch CL:0002553 fibroblast of lung biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4524","subject_information_content":94.92072406280138} +UMLS:C0225369 Chondrocyte biolink:Cell skos:exactMatch NCIT:C12557 Chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4525","subject_information_content":100.0,"identifierIndex":0} +CL:0000745 retina horizontal cell biolink:Cell skos:exactMatch CL:0000745 retina horizontal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4526","subject_information_content":100.0} +UMLS:C1267827 T lymphocyte positive for both CD8 antigen and CD11a antigen biolink:Cell skos:exactMatch SNOMEDCT:115413008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4527","identifierIndex":0} +UMLS:C0079852 Monocytes, Activated Killer biolink:Cell skos:exactMatch NCIT:C12548 Monocyte, Activated Killer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4528","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4744619 Autologous Anti-CD38 A2 CAR2-expressing T-cells biolink:Cell skos:exactMatch NCIT:C156170 Autologous Anti-CD38 A2 CAR2-expressing T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4529","subject_information_content":100.0,"identifierIndex":0} +CL:1001505 parvocellular neurosecretory cell biolink:Cell skos:exactMatch CL:1001505 parvocellular neurosecretory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4530","subject_information_content":100.0} +UMLS:C0596030 Acinar Cell biolink:Cell skos:exactMatch MESH:D061354 Acinar Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4521","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:0000071 blood vessel endothelial cell biolink:Cell skos:exactMatch CL:0000071 blood vessel endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4531","subject_information_content":71.7867105046421} +UMLS:C5184824 Variant lymphocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184824 Variant lymphocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4532"} +UMLS:C2359880 Transfuse platelet concentrate biolink:Cell skos:exactMatch UMLS:C2359880 Transfuse platelet concentrate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4533"} +UMLS:C0225369 Chondrocyte biolink:Cell skos:exactMatch MESH:D019902 Chondrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4525","subject_information_content":100.0,"identifierIndex":1} +UMLS:C2985194 E. coli CD-expressing Genetically Modified Neural Stem Cells biolink:Cell skos:exactMatch NCIT:C92585 E. coli CD-expressing Genetically Modified Neural Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4534","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401601 Human Embryonic Stem Cell-derived M Cell biolink:Cell skos:exactMatch UMLS:C5401601 Human Embryonic Stem Cell-derived M Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4535"} +UMLS:C0079852 Monocytes, Activated Killer biolink:Cell skos:exactMatch MESH:D016260 Monocytes, Activated Killer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4528","subject_information_content":100.0,"identifierIndex":1} +CL:0009052 smooth muscle cell of anorectum biolink:Cell skos:exactMatch CL:0009052 smooth muscle cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4536","subject_information_content":100.0} +UMLS:C0682550 silver-staining cell biolink:Cell skos:exactMatch UMLS:C0682550 silver-staining cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4537"} +CL:0002006 Kit-positive, CD34-negative megakaryocyte erythroid progenitor cell biolink:Cell skos:exactMatch CL:0002006 Kit-positive, CD34-negative megakaryocyte erythroid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4538","subject_information_content":100.0} +UMLS:C4086008 Autologous Interferon-producing Killer Dendritic Cells biolink:Cell skos:exactMatch NCIT:C125667 Autologous Interferon-producing Killer Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4539","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5187118 Variant lymphocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5187118 Variant lymphocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4540"} +UMLS:C1513755 Multivacuolated Lipoblast biolink:Cell skos:exactMatch NCIT:C36973 Multivacuolated Lipoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4541","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225369 Chondrocyte biolink:Cell skos:exactMatch SNOMEDCT:433180002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4525","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1514082 Neoplastic Sertoli Cell biolink:Cell skos:exactMatch NCIT:C36895 Neoplastic Sertoli Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4543","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:1001045 kidney cortex artery cell biolink:Cell skos:exactMatch CL:1001045 kidney cortex artery cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4542","subject_information_content":83.89907621744979} +UMLS:C1184139 Myoepithelial cell of secondary lactiferous duct biolink:Cell skos:exactMatch UMLS:C1184139 Myoepithelial cell of secondary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4544"} +CL:1000596 inner renal cortex cell biolink:Cell skos:exactMatch CL:1000596 inner renal cortex cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4545","subject_information_content":100.0} +UMLS:C4763825 Autologous Anti-PSCA-CAR-4-1BB/TCRzeta-CD19t-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C157746 Autologous Anti-PSCA-CAR-4-1BB/TCRzeta-CD19t-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4546","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513930 Neoplastic B-Prolymphocyte biolink:Cell skos:exactMatch NCIT:C37183 Neoplastic B-Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4547","subject_information_content":100.0,"identifierIndex":0} +CL:0002076 endo-epithelial cell biolink:Cell skos:exactMatch CL:0002076 endo-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4548","subject_information_content":60.99380152038639} +UMLS:C1179476 Mucous cell of gastric gland biolink:Cell skos:exactMatch UMLS:C1179476 Mucous cell of gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4549"} +UMLS:C4733226 CAR.CD30-expressing autologous Epstein-Barr virus-specific cytotoxic T-lymphocytes biolink:Cell skos:exactMatch UMLS:C4733226 CAR.CD30-expressing autologous Epstein-Barr virus-specific cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4550"} +UMLS:C0225369 Chondrocyte biolink:Cell skos:exactMatch SNOMEDCT:81272008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4525","subject_information_content":100.0,"identifierIndex":3} +UMLS:C1636199 Adipose derived adult stem cell biolink:Cell skos:exactMatch SNOMEDCT:419288001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4551","identifierIndex":0} +UMLS:C1519262 Serous Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C37115 Serous Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4552","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512865 Intermediate Type Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C33920 Intermediate Type Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4553","subject_information_content":100.0,"identifierIndex":0} +CL:0002263 transitional cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002263 transitional cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4554","subject_information_content":100.0} +UMLS:C1179829 Epithelial cell of tracheobronchial tree biolink:Cell skos:exactMatch UMLS:C1179829 Epithelial cell of tracheobronchial tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4555"} +CL:1001145 interlobular vein cell biolink:Cell skos:exactMatch CL:1001145 interlobular vein cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4556","subject_information_content":91.94953810872488} +UMLS:C4697029 Cells.CD3+CD8+CD27- biolink:Cell skos:exactMatch UMLS:C4697029 Cells.CD3+CD8+CD27- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4557"} +UMLS:C1267887 CD19+SMIG KAPPA+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117563001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4558","identifierIndex":0} +UMLS:C5181345 Spermatozoa Agglutinated | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5181345 Spermatozoa Agglutinated | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4559"} +CL:1000369 transitional myocyte of septal division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000369 transitional myocyte of septal division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4560","subject_information_content":100.0} +UMLS:C2826155 2G-1 TCR Retroviral Vector-Transduced Lymphocytes biolink:Cell skos:exactMatch NCIT:C82408 2G-1 TCR Retroviral Vector-Transduced Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4561","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0028875 Odontoblasts biolink:Cell skos:exactMatch UMLS:C0028875 Odontoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4562"} +UMLS:C3896982 Autologous CD123CAR-CD28-CD3zeta-EGFRt-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C116329 Autologous CD123CAR-CD28-CD3zeta-EGFRt-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4563","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5205502 Allogeneic CD25/Treg-depleted Donor Lymphocytes biolink:Cell skos:exactMatch NCIT:C160729 Allogeneic CD25/Treg-depleted Donor Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4564","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979650 Blasts.cytoplasmic CD34 biolink:Cell skos:exactMatch UMLS:C1979650 Blasts.cytoplasmic CD34 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4565"} +CL:0002533 immature CD16-positive myeloid dendritic cell biolink:Cell skos:exactMatch CL:0002533 immature CD16-positive myeloid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4566","subject_information_content":100.0} +UMLS:C5446539 Autologous CLL1-CAR-CD28-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C175458 Autologous CLL1-CAR-CD28-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4567","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513935 Neoplastic Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37105 Neoplastic Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4568","subject_information_content":79.68289625120555,"identifierIndex":0} +UMLS:C5175161 Nucleated erythrocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175161 Nucleated erythrocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4569"} +CL:4030000 choroidal melanocyte biolink:Cell skos:exactMatch CL:4030000 choroidal melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4570"} +UMLS:C1184140 Myoepithelial cell of tertiary lactiferous duct biolink:Cell skos:exactMatch UMLS:C1184140 Myoepithelial cell of tertiary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4571"} +UMLS:C5216277 Monocytes|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216277 Monocytes|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4572"} +UMLS:C1511184 Bizarre Cell with Evidence of Skeletal Muscle Differentiation biolink:Cell skos:exactMatch NCIT:C36953 Bizarre Cell with Evidence of Skeletal Muscle Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4573","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5173061 Microcytes | Urine | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173061 Microcytes | Urine | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4574"} +UMLS:C4552849 haNK biolink:Cell skos:exactMatch UMLS:C4552849 haNK biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4575"} +UMLS:C1267943 Lymphocyte positive for CD51 antigen biolink:Cell skos:exactMatch SNOMEDCT:117386007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4576","identifierIndex":0} +UMLS:C4733125 biolink:Cell skos:exactMatch UMLS:C4733125 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4577"} +UMLS:C4038493 Cells.CD4+CD3- biolink:Cell skos:exactMatch UMLS:C4038493 Cells.CD4+CD3- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4578"} +CL:4023088 large basket cell biolink:Cell skos:exactMatch CL:4023088 large basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4579","subject_information_content":100.0} +CL:1001126 inner renal medulla vasa recta cell biolink:Cell skos:exactMatch CL:1001126 inner renal medulla vasa recta cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4580","subject_information_content":91.94953810872488} +UMLS:C0427530 Lymphosarcoma cell biolink:Cell skos:exactMatch SNOMEDCT:250289002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4581","identifierIndex":0} +CL:1000329 tracheal goblet cell biolink:Cell skos:exactMatch CL:1000329 tracheal goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4582","subject_information_content":100.0} +UMLS:C1328049 LMP2A-Specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C62784 LMP2A-Specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4583","subject_information_content":100.0,"identifierIndex":0} +CL:0011032 lysosome-rich enterocyte biolink:Cell skos:exactMatch CL:0011032 lysosome-rich enterocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4584"} +UMLS:C5216198 Cells|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216198 Cells|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4585"} +UMLS:C1267912 Lymphocyte positive for CD35 antigen biolink:Cell skos:exactMatch SNOMEDCT:117035005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4586","identifierIndex":0} +CL:0000377 tracheoblast biolink:Cell skos:exactMatch CL:0000377 tracheoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4587","subject_information_content":100.0} +CL:0000027 smooth muscle cell neural crest derived biolink:Cell skos:exactMatch CL:0000027 smooth muscle cell neural crest derived biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4588","subject_information_content":100.0} +UMLS:C5181335 Spermatozoa | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5181335 Spermatozoa | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4589"} +UMLS:C2339058 Myocyte of atrial branch of anterior internodal tract biolink:Cell skos:exactMatch UMLS:C2339058 Myocyte of atrial branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4590"} +CL:0002511 CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell biolink:Cell skos:exactMatch CL:0002511 CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4591","subject_information_content":100.0} +UMLS:C1254949 Nk Lymphocyte biolink:Cell skos:exactMatch UMLS:C1254949 Nk Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4592"} +NCIT:C129906 Natural Killer T-Cell biolink:Cell skos:exactMatch NCIT:C129906 Natural Killer T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4593","subject_information_content":100.0} +CL:0002175 primary follicular cell of ovary biolink:Cell skos:exactMatch CL:0002175 primary follicular cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4594","subject_information_content":100.0} +UMLS:C1708645 Large Multinucleated Malignant Histiocyte biolink:Cell skos:exactMatch NCIT:C43256 Large Multinucleated Malignant Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4595","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267837 B lymphocyte positive for CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:115417009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4596","identifierIndex":0} +CL:1000324 duodenal goblet cell biolink:Cell skos:exactMatch CL:1000324 duodenal goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4597","subject_information_content":100.0} +CL:0000556 megakaryocyte biolink:Cell skos:exactMatch CL:0000556 megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4598","subject_information_content":91.94953810872488} +UMLS:C5216285 Neutrophils.band form|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216285 Neutrophils.band form|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4599"} +CL:0001082 immature innate lymphoid cell biolink:Cell skos:exactMatch CL:0001082 immature innate lymphoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4600","subject_information_content":82.42859222307153} +UMLS:C4764235 Autologous Anti-MUC1*-CAR-4-1BB-CD3zeta-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C158439 Autologous Anti-MUC1*-CAR-4-1BB-CD3zeta-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4601","subject_information_content":100.0,"identifierIndex":0} +CL:0009063 enteroendocrine cell of anorectum biolink:Cell skos:exactMatch CL:0009063 enteroendocrine cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4602","subject_information_content":100.0} +UMLS:C1518995 Peripheral B-Lymphocyte of Inner Mantle Zone biolink:Cell skos:exactMatch NCIT:C38332 Peripheral B-Lymphocyte of Inner Mantle Zone biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4603","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4072755 Cells.TRA+TRD gene rearrangements biolink:Cell skos:exactMatch UMLS:C4072755 Cells.TRA+TRD gene rearrangements biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4604"} +UMLS:C4724925 Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells ST-400 biolink:Cell skos:exactMatch NCIT:C148240 Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells ST-400 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4605","subject_information_content":100.0,"identifierIndex":0} +CL:1000278 smooth muscle fiber of ileum biolink:Cell skos:exactMatch CL:1000278 smooth muscle fiber of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4606","subject_information_content":100.0} +CL:0000607 ascospore biolink:Cell skos:exactMatch CL:0000607 ascospore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4607","subject_information_content":100.0} +UMLS:C1708270 Ex Vivo-Expanded HER2-Specific T Cells biolink:Cell skos:exactMatch NCIT:C52192 Ex Vivo-Expanded HER2-Specific T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4608","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182668 Endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182668 Endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4609"} +UMLS:C0333798 Poikilocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:397020000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4610","identifierIndex":0} +CL:0000091 Kupffer cell biolink:Cell skos:exactMatch CL:0000091 Kupffer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4611","subject_information_content":100.0} +CL:0000199 mechanoreceptor cell biolink:Cell skos:exactMatch CL:0000199 mechanoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4612","subject_information_content":75.5821178228195} +UMLS:C2924433 Intestinal goblet cell biolink:Cell skos:exactMatch UMLS:C2924433 Intestinal goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4613"} +UMLS:C5418020 Autologous NKG2D CAR T-cells CYAD-02 biolink:Cell skos:exactMatch NCIT:C173710 Autologous NKG2D CAR T-cells CYAD-02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4614","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0036387 Schwann Cells biolink:Cell skos:exactMatch UMLS:C0036387 Schwann Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4615"} +CL:0002137 type III cell of adrenal cortex biolink:Cell skos:exactMatch CL:0002137 type III cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4616","subject_information_content":100.0} +UMLS:C5186954 Promyelocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186954 Promyelocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4617"} +UMLS:C1709174 Neoplastic Epithelioid Stromal Cell biolink:Cell skos:exactMatch NCIT:C54002 Neoplastic Epithelioid Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4618","subject_information_content":100.0,"identifierIndex":0} +CL:0010006 cardiac blood vessel endothelial cell biolink:Cell skos:exactMatch CL:0010006 cardiac blood vessel endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4619","subject_information_content":94.92072406280138} +UMLS:C5157384 CD20+FMC7+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157384 CD20+FMC7+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4620"} +UMLS:C4038497 Cells.aneuploid.G2 phase population biolink:Cell skos:exactMatch UMLS:C4038497 Cells.aneuploid.G2 phase population biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4621"} +UMLS:C3639094 Adenovirus/Cytomegalovirus/Epstein-Barr Virus-specific Allogeneic Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C100102 Adenovirus/Cytomegalovirus/Epstein-Barr Virus-specific Allogeneic Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4622","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182609 Epithelial cell of choroid plexus biolink:Cell skos:exactMatch UMLS:C1182609 Epithelial cell of choroid plexus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4623"} +UMLS:C2324490 Set of B4 serotoninergic cells biolink:Cell skos:exactMatch UMLS:C2324490 Set of B4 serotoninergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4624"} +UMLS:C5181333 Spermatogonia | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5181333 Spermatogonia | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4625"} +UMLS:C1510729 Abnormal Large Granular Lymphocyte biolink:Cell skos:exactMatch NCIT:C40983 Abnormal Large Granular Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4626","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5184396 Unidentified cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184396 Unidentified cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4627"} +CL:0000792 CD4-positive, CD25-positive, alpha-beta regulatory T cell biolink:Cell skos:exactMatch CL:0000792 CD4-positive, CD25-positive, alpha-beta regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4628","subject_information_content":83.89907621744979} +UMLS:C1518267 Mouse Neuroblast biolink:Cell skos:exactMatch NCIT:C22630 Mouse Neuroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4629","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0018497 Inner Auditory Hair Cells biolink:Cell skos:exactMatch NCIT:C32805 Inner Hair Cell of the Organ of the Corti biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4630","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514049 Neoplastic Neuroepithelial Cell and Neoplastic Perineural Cell biolink:Cell skos:exactMatch NCIT:C41408 Neoplastic Neuroepithelial Cell and Neoplastic Perineural Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4631","subject_information_content":72.96845868813736,"identifierIndex":0} +UMLS:C5447470 Allogeneic Anti-CD19 1XX-CAR T-cells FT819 biolink:Cell skos:exactMatch NCIT:C176850 Allogeneic Anti-CD19 1XX-CAR T-cells FT819 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4632","subject_information_content":100.0,"identifierIndex":0} +CL:0000163 endocrine cell biolink:Cell skos:exactMatch CL:0000163 endocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4633","subject_information_content":66.10891051776997} +UMLS:C0684133 neure biolink:Cell skos:exactMatch UMLS:C0684133 neure biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4634"} +UMLS:C5216318 Reticulocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216318 Reticulocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4635"} +UMLS:C2347347 Ad5F35-LMP1/LMP2-Transduced Autologous Dendritic Cells biolink:Cell skos:exactMatch NCIT:C73995 Ad5F35-LMP1/LMP2-Transduced Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4636","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518985 Perineurial Cell biolink:Cell skos:exactMatch NCIT:C41442 Perineurial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4637","subject_information_content":100.0,"identifierIndex":0} +CL:4023012 near-projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023012 near-projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4638","subject_information_content":89.84144812560278} +UMLS:C3661517 Neutrophil Band Cells biolink:Cell skos:exactMatch UMLS:C3661517 Neutrophil Band Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4639"} +UMLS:C0018497 Inner Auditory Hair Cells biolink:Cell skos:exactMatch MESH:D006199 Hair Cells, Auditory, Inner biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4630","subject_information_content":100.0,"identifierIndex":1} +CL:0009055 paneth cell of anorectum biolink:Cell skos:exactMatch CL:0009055 paneth cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4640","subject_information_content":100.0} +UMLS:C4733675 Autologous PRAME-targeting TCR-modified T Cells MDG1011 biolink:Cell skos:exactMatch NCIT:C156136 Autologous PRAME-targeting TCR-modified T Cells MDG1011 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4641","subject_information_content":100.0,"identifierIndex":0} +CL:1000471 myoepithelial cell of secondary lactiferous duct biolink:Cell skos:exactMatch CL:1000471 myoepithelial cell of secondary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4642","subject_information_content":100.0} +CL:0002023 CD34-positive, CD41-positive, CD42-positive megakaryocyte progenitor cell biolink:Cell skos:exactMatch CL:0002023 CD34-positive, CD41-positive, CD42-positive megakaryocyte progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4643","subject_information_content":100.0} +CL:0000438 luteinizing hormone secreting cell biolink:Cell skos:exactMatch CL:0000438 luteinizing hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4644","subject_information_content":94.92072406280138} +CL:0000321 seminal fluid secreting cell biolink:Cell skos:exactMatch CL:0000321 seminal fluid secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4645","subject_information_content":100.0} +UMLS:C5187201 RBC^Patient biolink:Cell skos:exactMatch UMLS:C5187201 RBC^Patient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4646"} +CL:0008022 endocardial cushion cell biolink:Cell skos:exactMatch CL:0008022 endocardial cushion cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4647","subject_information_content":100.0} +UMLS:C5157466 CD3+HLA-DR+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157466 CD3+HLA-DR+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4648"} +UMLS:C0018497 Inner Auditory Hair Cells biolink:Cell skos:exactMatch SNOMEDCT:11520008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4630","subject_information_content":100.0,"identifierIndex":2} +UMLS:C5447112 Autologous Anti-GPRC5D-CAR-4-1BB-expressing T-cells MCARH109 biolink:Cell skos:exactMatch NCIT:C176222 Autologous Anti-GPRC5D-CAR-4-1BB-expressing T-cells MCARH109 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4649","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12625 Interneuron biolink:Cell skos:exactMatch NCIT:C12625 Interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4650","subject_information_content":91.94953810872488} +CL:0009004 retinal cell biolink:Cell skos:exactMatch CL:0009004 retinal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4651","subject_information_content":77.02358060617253} +UMLS:C1267949 Lymphocyte positive for CD57 antigen biolink:Cell skos:exactMatch SNOMEDCT:116855000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4652","identifierIndex":0} +UMLS:C5157522 CD3-CD16+CD56+ (Natural killer) cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157522 CD3-CD16+CD56+ (Natural killer) cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4653"} +UMLS:C2327016 Type I cell of adrenal cortex biolink:Cell skos:exactMatch UMLS:C2327016 Type I cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4654"} +UMLS:C5417988 Autologous Tumor Infiltrating Lymphocytes LN-145-S1 biolink:Cell skos:exactMatch NCIT:C173508 Autologous Tumor Infiltrating Lymphocytes LN-145-S1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4655","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514042 Neoplastic Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C36994 Neoplastic Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4656","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5171868 Macrophages | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171868 Macrophages | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4657"} +UMLS:C0933803 Type A synoviocyte biolink:Cell skos:exactMatch UMLS:C0933803 Type A synoviocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4658"} +CL:0002302 type A synovial cell biolink:Cell skos:exactMatch CL:0002302 type A synovial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4659","subject_information_content":100.0} +UMLS:C5157275 CD11c-CD20+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157275 CD11c-CD20+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4660"} +UMLS:C1180059 Nucleated cell biolink:Cell skos:exactMatch UMLS:C1180059 Nucleated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4661"} +CL:0002546 embryonic blood vessel endothelial progenitor cell biolink:Cell skos:exactMatch CL:0002546 embryonic blood vessel endothelial progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4662","subject_information_content":100.0} +UMLS:C0022567 keratinocyte biolink:Cell skos:exactMatch UMLS:C0022567 keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4663"} +CL:0002176 secondary follicular cell of ovary biolink:Cell skos:exactMatch CL:0002176 secondary follicular cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4664","subject_information_content":100.0} +UMLS:C1267845 Lymphocyte positive for CD5 antigen biolink:Cell skos:exactMatch SNOMEDCT:116854001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4665","identifierIndex":0} +UMLS:C5216308 Platelets|NCnc|Pt|BldCo biolink:Cell skos:exactMatch UMLS:C5216308 Platelets|NCnc|Pt|BldCo biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4666"} +UMLS:C1514436 Primitive Mesenchymal Plump Cell biolink:Cell skos:exactMatch NCIT:C37090 Primitive Mesenchymal Plump Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4667","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519010 Mesothelial cell of peritoneum biolink:Cell skos:exactMatch NCIT:C33310 Peritoneal Mesothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4668","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511462 CY10 biolink:Cell skos:exactMatch NCIT:C20245 CY10 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4669","subject_information_content":100.0,"identifierIndex":0} +CL:0002283 ecto-epithelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch CL:0002283 ecto-epithelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4670","subject_information_content":100.0} +CL:0002527 immature CD14-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002527 immature CD14-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4671","subject_information_content":100.0} +UMLS:C1276860 Entire granular polyhedral cells of breast biolink:Cell skos:exactMatch SNOMEDCT:205384000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4672","identifierIndex":0} +UMLS:C3496528 A5 noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3496528 A5 noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4673"} +UMLS:C3495988 A2 noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3495988 A2 noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4674"} +UMLS:C4518165 Population of all spermatozoa with abnormal head shape in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725223008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4675","identifierIndex":0} +UMLS:C2708698 Cells.HLA-B27 biolink:Cell skos:exactMatch UMLS:C2708698 Cells.HLA-B27 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4676"} +CL:0008028 visual system neuron biolink:Cell skos:exactMatch CL:0008028 visual system neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4677","subject_information_content":79.68289625120555} +UMLS:C4510908 Blast cell positive for CD135 antigen biolink:Cell skos:exactMatch SNOMEDCT:724253008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4678","identifierIndex":0} +UMLS:C1268008 Eosinophilic granulocytic cell biolink:Cell skos:exactMatch SNOMEDCT:127916009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4679","identifierIndex":0} +UMLS:C1514092 Neoplastic Small Round Cell biolink:Cell skos:exactMatch NCIT:C37100 Neoplastic Small Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4680","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0682521 primate cell line biolink:Cell skos:exactMatch UMLS:C0682521 primate cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4681"} +CL:1000022 mesonephric nephron tubule epithelial cell biolink:Cell skos:exactMatch CL:1000022 mesonephric nephron tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4682","subject_information_content":100.0} +UMLS:C1516963 Glandular cell of esophagus biolink:Cell skos:exactMatch NCIT:C32537 Esophageal Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4683","subject_information_content":100.0,"identifierIndex":0} +CL:0000183 contractile cell biolink:Cell skos:exactMatch CL:0000183 contractile cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4684","subject_information_content":62.58441683152963} +CL:1001589 duodenum glandular cell biolink:Cell skos:exactMatch CL:1001589 duodenum glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4685","subject_information_content":94.92072406280138} +CL:0002158 external epithelial cell of tympanic membrane biolink:Cell skos:exactMatch CL:0002158 external epithelial cell of tympanic membrane biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4686","subject_information_content":91.94953810872488} +UMLS:C2338276 Microfold cell of epithelium proper of small intestine biolink:Cell skos:exactMatch UMLS:C2338276 Microfold cell of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4687"} +UMLS:C1514809 Reed-Sternberg-Like Cell biolink:Cell skos:exactMatch NCIT:C37024 Reed-Sternberg-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4688","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440410 Cells.t(21;22)(q22.3;q12.2)(ERG,EWSR1) biolink:Cell skos:exactMatch UMLS:C1440410 Cells.t(21;22)(q22.3;q12.2)(ERG,EWSR1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4689"} +UMLS:C1267822 CD4+ CD25+ Regulatory T Cells biolink:Cell skos:exactMatch UMLS:C1267822 CD4+ CD25+ Regulatory T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4690"} +UMLS:C3829190 MART-1 Reactive CD8+ T-lymphocytes biolink:Cell skos:exactMatch NCIT:C111683 MART-1 Reactive CD8+ T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4691","subject_information_content":100.0,"identifierIndex":0} +CL:4023031 L4 sst GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023031 L4 sst GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4692","subject_information_content":100.0} +CL:0009035 stromal cell of lamina propria of vermiform appendix biolink:Cell skos:exactMatch CL:0009035 stromal cell of lamina propria of vermiform appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4693","subject_information_content":100.0} +UMLS:C5186846 Neutrophils | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186846 Neutrophils | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4694"} +UMLS:C5216239 Leukocytes|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216239 Leukocytes|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4695"} +UMLS:C4518166 Population of all spermatozoa with duplicate head in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725247001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4696","identifierIndex":0} +CL:1001609 muscle fibroblast biolink:Cell skos:exactMatch CL:1001609 muscle fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4697","subject_information_content":94.92072406280138} +CL:0000743 hypertrophic chondrocyte biolink:Cell skos:exactMatch CL:0000743 hypertrophic chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4698","subject_information_content":100.0} +UMLS:C0027836 Neuroglia biolink:Cell skos:exactMatch NCIT:C12615 Glial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4699","subject_information_content":83.89907621744979,"identifierIndex":0} +UMLS:C5382812 Cytomegalovirus-specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382812 Cytomegalovirus-specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4700"} +UMLS:C0222678 Undifferentiated mesenchymal cell biolink:Cell skos:exactMatch SNOMEDCT:75091002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4701","identifierIndex":0} +CL:0002279 type L enteroendocrine cell biolink:Cell skos:exactMatch CL:0002279 type L enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4702","subject_information_content":100.0} +CL:0000457 biogenic amine secreting cell biolink:Cell skos:exactMatch CL:0000457 biogenic amine secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4703","subject_information_content":76.12516964539331} +UMLS:C1513814 NC01 biolink:Cell skos:exactMatch NCIT:C20281 NC01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4704","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1180369 Type V taste bud cell biolink:Cell skos:exactMatch UMLS:C1180369 Type V taste bud cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4705"} +UMLS:C3496150 A4 noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3496150 A4 noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4706"} +UMLS:C0229648 Nonsegmented basophil biolink:Cell skos:exactMatch SNOMEDCT:3383001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4707","identifierIndex":0} +UMLS:C1269647 Entire cell biolink:Cell skos:exactMatch SNOMEDCT:362837007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4708","identifierIndex":0} +UMLS:C0027836 Neuroglia biolink:Cell skos:exactMatch MESH:D009457 Neuroglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4699","subject_information_content":83.89907621744979,"identifierIndex":1} +UMLS:C2329916 Fibroblast of outer membrane of prostatic capsule biolink:Cell skos:exactMatch UMLS:C2329916 Fibroblast of outer membrane of prostatic capsule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4709"} +UMLS:C0086031 Colony-Forming Units, Hematopoietic biolink:Cell skos:exactMatch UMLS:C0086031 Colony-Forming Units, Hematopoietic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4710"} +UMLS:C1522160 Leukocyte - Myelocyte (Granulocyte) (MMHCC) biolink:Cell skos:exactMatch NCIT:C22590 Mouse Granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4711","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:1000312 bronchial goblet cell biolink:Cell skos:exactMatch CL:1000312 bronchial goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4712","subject_information_content":100.0} +UMLS:C2346885 Autologous LMP1-/LMP2- Specific Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C70836 Autologous LMP1-/LMP2- Specific Cytotoxic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4713","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1710401 Thymic Medullary Epithelial Cell biolink:Cell skos:exactMatch NCIT:C45702 Thymic Medullary Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4714","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4484192 Neutrophil.fMLP stimulated.DHR biolink:Cell skos:exactMatch UMLS:C4484192 Neutrophil.fMLP stimulated.DHR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4715"} +UMLS:C0027836 Neuroglia biolink:Cell skos:exactMatch SNOMEDCT:2156000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4699","subject_information_content":83.89907621744979,"identifierIndex":2} +CL:0000680 muscle precursor cell biolink:Cell skos:exactMatch CL:0000680 muscle precursor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4716","subject_information_content":78.04773462533598} +UMLS:C5382751 CD11a cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382751 CD11a cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4717"} +UMLS:C4042878 Embryonic Germ Cells biolink:Cell skos:exactMatch MESH:D000066473 Embryonic Germ Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4718","identifierIndex":0} +UMLS:C3891065 Mucosal-Associated Invariant T-Cell biolink:Cell skos:exactMatch UMLS:C3891065 Mucosal-Associated Invariant T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4719"} +UMLS:C1267876 Lymphocyte positive for both CD16 antigen and CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:117555002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4720","identifierIndex":0} +UMLS:C4723730 Anti-K-RAS G12D mTCR-transduced Autologous Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C156889 Anti-K-RAS G12D mTCR-transduced Autologous Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4721","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5174621 Neutrophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174621 Neutrophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4722"} +UMLS:C1317625 Plasma cell precursor biolink:Cell skos:exactMatch UMLS:C1317625 Plasma cell precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4723"} +UMLS:C0027836 Neuroglia biolink:Cell skos:exactMatch SNOMEDCT:58861006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4699","subject_information_content":83.89907621744979,"identifierIndex":3} +UMLS:C1254573 Mature Erythrocytes biolink:Cell skos:exactMatch UMLS:C1254573 Mature Erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4724"} +UMLS:C1267924 Lymphocyte positive for CD42D antigen biolink:Cell skos:exactMatch SNOMEDCT:117368009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4725","identifierIndex":0} +UMLS:C1183324 Endothelial cell of venous sinusoid of spleen biolink:Cell skos:exactMatch UMLS:C1183324 Endothelial cell of venous sinusoid of spleen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4726"} +UMLS:C5157926 Cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5157926 Cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4727"} +CL:1001430 urethra urothelial cell biolink:Cell skos:exactMatch CL:1001430 urethra urothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4728","subject_information_content":100.0} +UMLS:C4053742 Anti-thyroglobulin mTCR-transduced Autologous Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C121552 Anti-thyroglobulin mTCR-transduced Autologous Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4729","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4053624 Lifileucel biolink:Cell skos:exactMatch NCIT:C120552 Lifileucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4730","subject_information_content":100.0,"identifierIndex":0} +CL:0000104 multipolar neuron biolink:Cell skos:exactMatch CL:0000104 multipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4731","subject_information_content":72.4385040025727} +UMLS:C1979669 Cells.CD19+IgG+ biolink:Cell skos:exactMatch UMLS:C1979669 Cells.CD19+IgG+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4732"} +CL:1001033 peritubular capillary endothelial cell biolink:Cell skos:exactMatch CL:1001033 peritubular capillary endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4733","subject_information_content":91.94953810872488} +UMLS:C0682525 W138 cell biolink:Cell skos:exactMatch UMLS:C0682525 W138 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4734"} +UMLS:C1370096 Cells.CD3+CD8+CD45RO+CD45RA+/100 cells biolink:Cell skos:exactMatch UMLS:C1370096 Cells.CD3+CD8+CD45RO+CD45RA+/100 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4735"} +CL:0002549 fibroblast of choroid plexus biolink:Cell skos:exactMatch CL:0002549 fibroblast of choroid plexus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4736","subject_information_content":100.0} +UMLS:C4696632 Cells.CD3-CD45+ biolink:Cell skos:exactMatch UMLS:C4696632 Cells.CD3-CD45+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4737"} +UMLS:C4323727 Cardiac neural crest cell biolink:Cell skos:exactMatch UMLS:C4323727 Cardiac neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4738"} +UMLS:C1514095 Neoplastic Small to Medium-Sized Lymphocyte biolink:Cell skos:exactMatch NCIT:C36990 Neoplastic Small to Medium-Sized Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4739","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C1267950 Lymphocyte positive for CD58 antigen biolink:Cell skos:exactMatch SNOMEDCT:117391008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4740","identifierIndex":0} +CL:0011028 olfactory ensheathing cell biolink:Cell skos:exactMatch CL:0011028 olfactory ensheathing cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4741","subject_information_content":100.0} +UMLS:C5179530 Reticulocytes.mature | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179530 Reticulocytes.mature | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4742"} +UMLS:C1515313 Mouse Testicular Interstitial Cell biolink:Cell skos:exactMatch NCIT:C22180 Mouse Testicular Interstitial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4743","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267840 Lymphocyte negative for CD3 antigen and positive for CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:116734009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4744","identifierIndex":0} +UMLS:C1517919 Lobular Carcinoma Cell biolink:Cell skos:exactMatch NCIT:C36879 Lobular Carcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4745","subject_information_content":100.0,"identifierIndex":0} +CL:2000075 anterior visceral endoderm cell biolink:Cell skos:exactMatch CL:2000075 anterior visceral endoderm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4746","subject_information_content":100.0} +UMLS:C5549474 Spermatozoa | Urine | Fertility testing biolink:Cell skos:exactMatch UMLS:C5549474 Spermatozoa | Urine | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4747"} +UMLS:C0872362 primitive cell biolink:Cell skos:exactMatch UMLS:C0872362 primitive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4748"} +UMLS:C5216287 Neutrophils.hypersegmented|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216287 Neutrophils.hypersegmented|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4749"} +CL:0000729 tertiary pigment cell biolink:Cell skos:exactMatch CL:0000729 tertiary pigment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4750","subject_information_content":100.0} +CL:0000531 primary sensory neuron biolink:Cell skos:exactMatch CL:0000531 primary sensory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4751","subject_information_content":94.92072406280138} +UMLS:C1513710 Mucin-Producing Neoplastic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36891 Mucin-Producing Neoplastic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4752","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C5157557 CD4+CD95+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157557 CD4+CD95+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4753"} +UMLS:C0682542 ciliated cell biolink:Cell skos:exactMatch UMLS:C0682542 ciliated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4754"} +CL:0002547 fibroblast of the aortic adventitia biolink:Cell skos:exactMatch CL:0002547 fibroblast of the aortic adventitia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4755","subject_information_content":100.0} +UMLS:C5174860 Nonhematic cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174860 Nonhematic cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4756"} +UMLS:C5401605 Human umbilical cord blood mononuclear cell-conditioned medium biolink:Cell skos:exactMatch UMLS:C5401605 Human umbilical cord blood mononuclear cell-conditioned medium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4757"} +CL:0009015 Peyer's patch follicular dendritic cell biolink:Cell skos:exactMatch CL:0009015 Peyer's patch follicular dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4758","subject_information_content":100.0} +CL:0000805 immature single positive thymocyte biolink:Cell skos:exactMatch CL:0000805 immature single positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4759","subject_information_content":100.0} +CL:0019003 tracheobronchial goblet cell biolink:Cell skos:exactMatch CL:0019003 tracheobronchial goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4760","subject_information_content":91.94953810872488} +UMLS:C1284809 Entire supporting cell of organ of Corti biolink:Cell skos:exactMatch SNOMEDCT:362573009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4761","identifierIndex":0} +UMLS:C5153167 Anulocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5153167 Anulocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4762"} +UMLS:C4329368 Autologous Bladder Cell Carcinoma RNAs/CD40L RNA Electroporated Autologous Matured Dendritic Cells biolink:Cell skos:exactMatch NCIT:C129522 Autologous Bladder Cell Carcinoma RNAs/CD40L RNA Electroporated Autologous Matured Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4763","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2333606 Transitional myocyte of posterior division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2333606 Transitional myocyte of posterior division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4764"} +UMLS:C1180795 Endothelial cell of lymphatic vessel biolink:Cell skos:exactMatch UMLS:C1180795 Endothelial cell of lymphatic vessel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4765"} +UMLS:C2350623 Retinal Rod Cell biolink:Cell skos:exactMatch UMLS:C2350623 Retinal Rod Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4766"} +UMLS:C1518222 Malignant Neuroendocrine Small Cell biolink:Cell skos:exactMatch NCIT:C36820 Malignant Neuroendocrine Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4767","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C5448035 Afamitresgene Autoleucel biolink:Cell skos:exactMatch NCIT:C175738 Afamitresgene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4768","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1977405 Granulocytes.CD59 biolink:Cell skos:exactMatch UMLS:C1977405 Granulocytes.CD59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4769"} +CL:0002674 H minus biolink:Cell skos:exactMatch CL:0002674 H minus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4770","subject_information_content":100.0} +NCIT:C12611 Antibody-Producing Cell biolink:Cell skos:exactMatch NCIT:C12611 Antibody-Producing Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4771","subject_information_content":100.0} +CL:1000473 myoepithelial cell of quarternary lactiferous duct biolink:Cell skos:exactMatch CL:1000473 myoepithelial cell of quarternary lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4772","subject_information_content":100.0} +UMLS:C4246841 Vagal neural crest cell biolink:Cell skos:exactMatch UMLS:C4246841 Vagal neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4773"} +UMLS:C0427536 white blood cell type biolink:Cell skos:exactMatch UMLS:C0427536 white blood cell type biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4774"} +UMLS:C4764289 Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901 biolink:Cell skos:exactMatch NCIT:C158604 Autologous Anti-CD19 CAR-expressing T-lymphocytes CLIC-1901 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4775","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157349 CD19+21- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157349 CD19+21- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4776"} +UMLS:C1512977 Mammalian Cell biolink:Cell skos:exactMatch NCIT:C12958 Mammalian Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4777","subject_information_content":83.1270105625346,"identifierIndex":0} +CL:0000120 granule cell biolink:Cell skos:exactMatch CL:0000120 granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4778","subject_information_content":86.87026217152628} +UMLS:C3273605 Disseminated Tumor Cell biolink:Cell skos:exactMatch NCIT:C97750 Disseminated Tumor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4779","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0945934 Cells.CD8+CD11b+ biolink:Cell skos:exactMatch UMLS:C0945934 Cells.CD8+CD11b+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4780"} +UMLS:C1520009 Virchow Cell biolink:Cell skos:exactMatch NCIT:C33876 Virchow Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4781","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519682 Tumor Infiltrating Lymphocytes-N2-Transduced biolink:Cell skos:exactMatch NCIT:C29478 Tumor Infiltrating Lymphocytes-N2-Transduced biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4782","subject_information_content":100.0,"identifierIndex":0} +CL:0000824 mature natural killer cell biolink:Cell skos:exactMatch CL:0000824 mature natural killer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4783","subject_information_content":78.42360399800205} +UMLS:C2333944 Type PP enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2333944 Type PP enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4784"} +CL:0009089 lung pericyte biolink:Cell skos:exactMatch CL:0009089 lung pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4785"} +UMLS:C1709635 Precursor Adenohypophysial Cell biolink:Cell skos:exactMatch NCIT:C45957 Precursor Adenohypophysial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4786","subject_information_content":100.0,"identifierIndex":0} +CL:0000546 T-helper 2 cell biolink:Cell skos:exactMatch CL:0000546 T-helper 2 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4787","subject_information_content":100.0} +UMLS:C1268006 Neutrophilic granulocytic cell biolink:Cell skos:exactMatch SNOMEDCT:127913001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4788","identifierIndex":0} +UMLS:C2328956 Set of cholinergic cells of dorsal tegmental area [Ch5] biolink:Cell skos:exactMatch UMLS:C2328956 Set of cholinergic cells of dorsal tegmental area [Ch5] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4789"} +UMLS:C2330227 Type F cell of pancreatic acinus biolink:Cell skos:exactMatch UMLS:C2330227 Type F cell of pancreatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4790"} +UMLS:C0225335 Mesothelial cell biolink:Cell skos:exactMatch NCIT:C33104 Mesothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4791","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C4704952 Bone Marrow Mesenchymal Stem Cells biolink:Cell skos:exactMatch UMLS:C4704952 Bone Marrow Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4792"} +CL:0000023 oocyte biolink:Cell skos:exactMatch CL:0000023 oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4793","subject_information_content":91.94953810872488} +CL:0000381 neurosecretory neuron biolink:Cell skos:exactMatch CL:0000381 neurosecretory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4794","subject_information_content":86.87026217152628} +UMLS:C0020200 Hybrid Cells biolink:Cell skos:exactMatch MESH:D006822 Hybrid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4795","identifierIndex":0} +CL:1000454 kidney collecting duct epithelial cell biolink:Cell skos:exactMatch CL:1000454 kidney collecting duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4796","subject_information_content":82.42859222307153} +CL:0000532 CAP motoneuron biolink:Cell skos:exactMatch CL:0000532 CAP motoneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4797","subject_information_content":100.0} +CL:0000881 perivascular macrophage biolink:Cell skos:exactMatch CL:0000881 perivascular macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4798","subject_information_content":100.0} +UMLS:C0312864 Sensitized cell biolink:Cell skos:exactMatch SNOMEDCT:52976009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4799","identifierIndex":0} +UMLS:C1183184 Set of aminergic cells in ventral tegmental area [A10] biolink:Cell skos:exactMatch UMLS:C1183184 Set of aminergic cells in ventral tegmental area [A10] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4800"} +UMLS:C0225335 Mesothelial cell biolink:Cell skos:exactMatch SNOMEDCT:58966000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4791","subject_information_content":91.94953810872488,"identifierIndex":1} +CL:0000563 endospore biolink:Cell skos:exactMatch CL:0000563 endospore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4801","subject_information_content":100.0} +UMLS:C4543340 Spermatozoa component of semen biolink:Cell skos:exactMatch SNOMEDCT:734848001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4802","identifierIndex":0} +UMLS:C1440300 Cells.CD36 biolink:Cell skos:exactMatch UMLS:C1440300 Cells.CD36 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4803"} +UMLS:C0017471 Germ Cells biolink:Cell skos:exactMatch NCIT:C12597 Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4804","subject_information_content":81.79098623432766,"identifierIndex":0} +UMLS:C2329763 Transitional myocyte of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2329763 Transitional myocyte of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4805"} +CL:0002474 lymphoid MHC-II-negative classical monocyte biolink:Cell skos:exactMatch CL:0002474 lymphoid MHC-II-negative classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4806","subject_information_content":100.0} +UMLS:C1517690 LH Cells biolink:Cell skos:exactMatch NCIT:C32985 LH Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4807","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0017471 Germ Cells biolink:Cell skos:exactMatch MESH:D005854 Germ Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4804","subject_information_content":81.79098623432766,"identifierIndex":1} +UMLS:C0545060 Peripheral blood (P.B.), abnormal cell biolink:Cell skos:exactMatch UMLS:C0545060 Peripheral blood (P.B.), abnormal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4809"} +UMLS:C1513968 Neoplastic Follicular Dendritic Cell biolink:Cell skos:exactMatch NCIT:C36893 Neoplastic Follicular Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4808","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2936608 Side-Population Cells biolink:Cell skos:exactMatch MESH:D058985 Side-Population Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4810","identifierIndex":0} +UMLS:C1440421 Cells.TCR alpha beta biolink:Cell skos:exactMatch UMLS:C1440421 Cells.TCR alpha beta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4811"} +UMLS:C0017471 Germ Cells biolink:Cell skos:exactMatch SNOMEDCT:787781003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4804","subject_information_content":81.79098623432766,"identifierIndex":2} +CL:0000952 preBCR-positive large pre-B-II cell biolink:Cell skos:exactMatch CL:0000952 preBCR-positive large pre-B-II cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4812","subject_information_content":94.92072406280138} +UMLS:C1514015 Neoplastic Medium-Sized Lymphocyte biolink:Cell skos:exactMatch NCIT:C37004 Neoplastic Medium-Sized Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4813","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C1440312 Cells.CD44 biolink:Cell skos:exactMatch UMLS:C1440312 Cells.CD44 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4814"} +UMLS:C1979202 Blast cell positive for CD3 antigen biolink:Cell skos:exactMatch SNOMEDCT:724261003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4815","identifierIndex":0} +UMLS:C0025207 Melanophores biolink:Cell skos:exactMatch UMLS:C0025207 Melanophores biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4816"} +UMLS:C5184401 Unidentified cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184401 Unidentified cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4817"} +UMLS:C2736926 Cells.CD10+FMC7+ biolink:Cell skos:exactMatch UMLS:C2736926 Cells.CD10+FMC7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4818"} +CL:0005019 pancreatic epsilon cell biolink:Cell skos:exactMatch CL:0005019 pancreatic epsilon cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4819","subject_information_content":100.0} +UMLS:C5174656 Neutrophils.vacuolated+Segmented | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174656 Neutrophils.vacuolated+Segmented | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4820"} +UMLS:C2335490 Cranial parasympathetic ganglion neuron biolink:Cell skos:exactMatch UMLS:C2335490 Cranial parasympathetic ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4821"} +UMLS:C2983776 Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2 biolink:Cell skos:exactMatch NCIT:C90577 Allogeneic IL13-Zetakine/HyTK-Expressing-Glucocorticoid Resistant Cytotoxic T Lymphocytes GRm13Z40-2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4822","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4764271 Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005 biolink:Cell skos:exactMatch NCIT:C158533 Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4823","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3172555 Ciliated epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:725724001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4824","identifierIndex":0} +UMLS:C1440148 Blasts.CD5 biolink:Cell skos:exactMatch UMLS:C1440148 Blasts.CD5 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4825"} +UMLS:C0546501 P.B. promegakaryocyte biolink:Cell skos:exactMatch UMLS:C0546501 P.B. promegakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4826"} +UMLS:C2328288 Set of Ch4 cholinergic cells biolink:Cell skos:exactMatch UMLS:C2328288 Set of Ch4 cholinergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4827"} +UMLS:C1522703 Leukocyte - Lymphocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22572 Mouse Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4828","subject_information_content":81.79098623432766,"identifierIndex":0} +CL:0000809 double-positive, alpha-beta thymocyte biolink:Cell skos:exactMatch CL:0000809 double-positive, alpha-beta thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4829","subject_information_content":86.87026217152628} +UMLS:C5157403 CD23+CD38+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157403 CD23+CD38+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4830"} +CL:0000498 inhibitory interneuron biolink:Cell skos:exactMatch CL:0000498 inhibitory interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4831","subject_information_content":72.27004034867431} +UMLS:C0228009 Secondary spermatocyte biolink:Cell skos:exactMatch SNOMEDCT:3374006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4832","identifierIndex":0} +UMLS:C5420910 Mipetresgene Autoleucel biolink:Cell skos:exactMatch NCIT:C174683 Mipetresgene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4833","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440375 Cells.CD99 biolink:Cell skos:exactMatch UMLS:C1440375 Cells.CD99 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4834"} +CL:1000082 stretch receptor cell biolink:Cell skos:exactMatch CL:1000082 stretch receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4835","subject_information_content":94.92072406280138} +UMLS:C0333837 Gaucher cell biolink:Cell skos:exactMatch NCIT:C36731 Gaucher Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4836","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333837 Gaucher cell biolink:Cell skos:exactMatch SNOMEDCT:16216007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4836","subject_information_content":100.0,"identifierIndex":1} +CL:0005023 branchiomotor neuron biolink:Cell skos:exactMatch CL:0005023 branchiomotor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4837","subject_information_content":100.0} +UMLS:C1708860 Malignant Adenohypophysial Cell biolink:Cell skos:exactMatch NCIT:C45973 Malignant Adenohypophysial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4838","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C1707937 Epithelial Stem Cell biolink:Cell skos:exactMatch NCIT:C43422 Epithelial Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4839","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5419315 Evagenretcel biolink:Cell skos:exactMatch NCIT:C171809 Evagenretcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4840","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0596713 horizontal cell biolink:Cell skos:exactMatch UMLS:C0596713 horizontal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4841"} +CL:0000840 immature conventional dendritic cell biolink:Cell skos:exactMatch CL:0000840 immature conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4842","subject_information_content":82.42859222307153} +UMLS:C1545529 Invasive trophoblast biolink:Cell skos:exactMatch UMLS:C1545529 Invasive trophoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4843"} +UMLS:C3640938 Allodepleted Haploidentical T Cells-expressing Inducible Caspase 9 biolink:Cell skos:exactMatch NCIT:C102757 Allodepleted Haploidentical T Cells-expressing Inducible Caspase 9 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4844","subject_information_content":100.0,"identifierIndex":0} +CL:1001588 colon glandular cell biolink:Cell skos:exactMatch CL:1001588 colon glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4845","subject_information_content":88.2062864997332} +UMLS:C5216256 Lymphoma cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216256 Lymphoma cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4846"} +UMLS:C4266413 100 cells.CD3 biolink:Cell skos:exactMatch UMLS:C4266413 100 cells.CD3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4847"} +NCIT:C12542 CD8-Positive T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C12542 CD8-Positive T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4848","subject_information_content":85.74066969721673} +CL:0000887 lymph node subcapsular sinus macrophage biolink:Cell skos:exactMatch CL:0000887 lymph node subcapsular sinus macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4849","subject_information_content":100.0} +CL:0002329 basal epithelial cell of tracheobronchial tree biolink:Cell skos:exactMatch CL:0002329 basal epithelial cell of tracheobronchial tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4850","subject_information_content":86.87026217152628} +UMLS:C1317735 Agglutinated spermatozoa biolink:Cell skos:exactMatch SNOMEDCT:726593007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4851","identifierIndex":0} +UMLS:C5173499 Mononuclear cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173499 Mononuclear cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4852"} +UMLS:C5161799 Cytoplasmic CD22 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5161799 Cytoplasmic CD22 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4853"} +CL:0002586 retinal pigment epithelial cell biolink:Cell skos:exactMatch CL:0002586 retinal pigment epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4854","subject_information_content":100.0} +NCIT:C12623 Neuron biolink:Cell skos:exactMatch NCIT:C12623 Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4855","subject_information_content":74.37813033179641} +NCIT:C73125 Nucleated Red Blood Cell biolink:Cell skos:exactMatch NCIT:C73125 Nucleated Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4856","subject_information_content":100.0} +UMLS:C2362006 Cells.CD3+CD4-CD8-CD45+ biolink:Cell skos:exactMatch UMLS:C2362006 Cells.CD3+CD4-CD8-CD45+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4857"} +UMLS:C4331902 Immuncell-LC biolink:Cell skos:exactMatch UMLS:C4331902 Immuncell-LC biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4858"} +CL:0009024 mesothelial cell of small intestine biolink:Cell skos:exactMatch CL:0009024 mesothelial cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4859","subject_information_content":94.92072406280138} +UMLS:C1511569 CyThera ES Cell Line biolink:Cell skos:exactMatch NCIT:C20246 CyThera ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4860","subject_information_content":83.1270105625346,"identifierIndex":0} +CL:0000341 pigment cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000341 pigment cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4861","subject_information_content":88.2062864997332} +NCIT:C12593 Paneth Cell biolink:Cell skos:exactMatch NCIT:C12593 Paneth Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4862","subject_information_content":100.0} +CL:0002666 type 2 otic fibrocyte biolink:Cell skos:exactMatch CL:0002666 type 2 otic fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4863","subject_information_content":100.0} +CL:0000848 microvillous olfactory receptor neuron biolink:Cell skos:exactMatch CL:0000848 microvillous olfactory receptor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4864","subject_information_content":100.0} +UMLS:C5175608 Other cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175608 Other cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4865"} +UMLS:C4733678 Autologous Anti-mesothelin CAR-CD3zeta-4-1-BB-expressing T-cells biolink:Cell skos:exactMatch NCIT:C155909 Autologous Anti-mesothelin CAR-CD3zeta-4-1-BB-expressing T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4866","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513125 Meningothelial Cell with Elongated Processes biolink:Cell skos:exactMatch NCIT:C37157 Meningothelial Cell with Elongated Processes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4867","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514440 Primitive Striated Muscle Cell biolink:Cell skos:exactMatch NCIT:C36949 Primitive Striated Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4868","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0002318 peripheral blood mesothelial cell biolink:Cell skos:exactMatch CL:0002318 peripheral blood mesothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4869","subject_information_content":100.0} +CL:0002289 type I taste bud cell biolink:Cell skos:exactMatch CL:0002289 type I taste bud cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4870","subject_information_content":100.0} +UMLS:C1514933 Rhabdoid Cell biolink:Cell skos:exactMatch NCIT:C37149 Rhabdoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4871","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0043380 Y-Chromosome-Bearing Sperm biolink:Cell skos:exactMatch UMLS:C0043380 Y-Chromosome-Bearing Sperm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4872"} +UMLS:C2826385 Umbilical Cord Blood-Derived Mesenchymal Stem Cells biolink:Cell skos:exactMatch NCIT:C82688 Umbilical Cord Blood-Derived Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4873","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216313 Polymorphonuclear cells|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216313 Polymorphonuclear cells|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4874"} +UMLS:C1881546 Malignant Epithelial Cell with Vesicular Nucleus, Distinct Nucleolus, and Abundant Pink Cytoplasm biolink:Cell skos:exactMatch NCIT:C60664 Malignant Epithelial Cell with Vesicular Nucleus, Distinct Nucleolus, and Abundant Pink Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4875","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267873 Lymphoblast positive for CD14 antigen biolink:Cell skos:exactMatch SNOMEDCT:117552004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4876","identifierIndex":0} +UMLS:C2736929 Cells.CD19+CD20+ biolink:Cell skos:exactMatch UMLS:C2736929 Cells.CD19+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4877"} +UMLS:C0007634 Cells biolink:Cell skos:exactMatch UMLS:C0007634 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4878"} +UMLS:C5168977 Immature cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168977 Immature cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4879"} +UMLS:C5401595 Allogenic Donor CD362-enriched Human Umbilical Cord-derived Mesenchymal Stem Cells biolink:Cell skos:exactMatch UMLS:C5401595 Allogenic Donor CD362-enriched Human Umbilical Cord-derived Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4880"} +CL:1001220 arcuate vein endothelial cell biolink:Cell skos:exactMatch CL:1001220 arcuate vein endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4881","subject_information_content":100.0} +UMLS:C0229536 Acidophil cell of pars distalis of adenohypophysis biolink:Cell skos:exactMatch SNOMEDCT:54913007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4882","identifierIndex":0} +UMLS:C0598625 myeloma and spleen cell hybrid biolink:Cell skos:exactMatch UMLS:C0598625 myeloma and spleen cell hybrid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4883"} +CL:0000397 ganglion interneuron biolink:Cell skos:exactMatch CL:0000397 ganglion interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4884","subject_information_content":100.0} +UMLS:C1183499 Mesodermal cell biolink:Cell skos:exactMatch NCIT:C33936 Mesoderm Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4885","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1440249 Cells.CD12 biolink:Cell skos:exactMatch UMLS:C1440249 Cells.CD12 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4886"} +UMLS:C0333842 Niemann-Pick cell biolink:Cell skos:exactMatch UMLS:C0333842 Niemann-Pick cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4887"} +UMLS:C0333806 Macrocytic normochromic erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:7841003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4888","identifierIndex":0} +UMLS:C0229425 Primary sclerotic mastoid cell biolink:Cell skos:exactMatch SNOMEDCT:57003005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4889","identifierIndex":0} +UMLS:C1512641 Immature Mesenchymal Spindle Cell biolink:Cell skos:exactMatch NCIT:C37120 Immature Mesenchymal Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4890","subject_information_content":100.0,"identifierIndex":0} +MESH:D056885 Interstitial Cells of Cajal biolink:Cell skos:exactMatch MESH:D056885 Interstitial Cells of Cajal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4891"} +UMLS:C1514186 Pluripotent Bone Marrow Stem Cell biolink:Cell skos:exactMatch NCIT:C33331 Pluripotent Bone Marrow Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4892","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4524565 Hematopoietic Progenitor Cells from Apheresis biolink:Cell skos:exactMatch NCIT:C133328 Hematopoietic Progenitor Cells from Apheresis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4893","subject_information_content":100.0,"identifierIndex":0} +CL:0002410 pancreatic stellate cell biolink:Cell skos:exactMatch CL:0002410 pancreatic stellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4894","subject_information_content":100.0} +CL:0002468 Gr1-low myeloid suppressor cell biolink:Cell skos:exactMatch CL:0002468 Gr1-low myeloid suppressor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4895","subject_information_content":100.0} +CL:2000042 embryonic fibroblast biolink:Cell skos:exactMatch CL:2000042 embryonic fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4896","subject_information_content":100.0} +CL:1000302 fibroblast of papillary layer of dermis biolink:Cell skos:exactMatch CL:1000302 fibroblast of papillary layer of dermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4897","subject_information_content":100.0} +UMLS:C1513752 Multipolar neuron biolink:Cell skos:exactMatch NCIT:C33143 Multipolar Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4898","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C1979510 Cells.CD11c+20c+ biolink:Cell skos:exactMatch UMLS:C1979510 Cells.CD11c+20c+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4899"} +UMLS:C5157619 CD56 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157619 CD56 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4900"} +UMLS:C5420490 CD123-CD33 Compound CAR T Cells biolink:Cell skos:exactMatch NCIT:C173970 CD123-CD33 Compound CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4901","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708900 Malignant Parathyroid Gland Clear Cell biolink:Cell skos:exactMatch NCIT:C48270 Malignant Parathyroid Gland Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4902","subject_information_content":100.0,"identifierIndex":0} +CL:0007000 preameloblast biolink:Cell skos:exactMatch CL:0007000 preameloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4903","subject_information_content":100.0} +UMLS:C1449623 Neuroepithelial Bodies biolink:Cell skos:exactMatch MESH:D046568 Neuroepithelial Bodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4904","identifierIndex":0} +CL:0000533 primary motor neuron biolink:Cell skos:exactMatch CL:0000533 primary motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4906","subject_information_content":94.92072406280138} +UMLS:C1711288 Primitive Round to Oval Cell biolink:Cell skos:exactMatch NCIT:C53980 Primitive Round to Oval Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4905","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5401593 Adipose-Derived Mesenchymal Stem Cells: Autologous or Allogeneic Origins biolink:Cell skos:exactMatch UMLS:C5401593 Adipose-Derived Mesenchymal Stem Cells: Autologous or Allogeneic Origins biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4907"} +UMLS:C0882892 Cell positive for CD5 antigen biolink:Cell skos:exactMatch SNOMEDCT:116746008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4908","identifierIndex":0} +UMLS:C1510959 Atypical Melanocyte biolink:Cell skos:exactMatch NCIT:C36867 Atypical Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4909","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2825117 AlloStim biolink:Cell skos:exactMatch UMLS:C2825117 AlloStim biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4910"} +UMLS:C1510720 Abnormal Eosinophil biolink:Cell skos:exactMatch NCIT:C37032 Abnormal Eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4911","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157669 CD8+CD38+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157669 CD8+CD38+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4912"} +UMLS:C5237454 Allogeneic Anti-BCMA CAR-transduced T-cells ALLO-715 biolink:Cell skos:exactMatch NCIT:C165779 Allogeneic Anti-BCMA CAR-transduced T-cells ALLO-715 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4913","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328553 Transitional myocyte of sinuatrial node biolink:Cell skos:exactMatch UMLS:C2328553 Transitional myocyte of sinuatrial node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4914"} +UMLS:C1518847 Pagetoid Cell biolink:Cell skos:exactMatch NCIT:C36871 Pagetoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4915","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5454853 Not specified MC biolink:Cell skos:exactMatch UMLS:C5454853 Not specified MC biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4916"} +UMLS:C1514101 Neoplastic Squamous Cell biolink:Cell skos:exactMatch NCIT:C36760 Neoplastic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4917","subject_information_content":78.81980028025117,"identifierIndex":0} +UMLS:C4323049 Oocyte in dictyate arrest biolink:Cell skos:exactMatch UMLS:C4323049 Oocyte in dictyate arrest biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4918"} +UMLS:C5216193 Basophils|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216193 Basophils|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4919"} +UMLS:C3827836 TGFbDNRII-transduced Autologous Tumor Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C111992 TGFbDNRII-transduced Autologous Tumor Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4920","subject_information_content":100.0,"identifierIndex":0} +CL:0002040 immature NK T cell stage II biolink:Cell skos:exactMatch CL:0002040 immature NK T cell stage II biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4921","subject_information_content":100.0} +CL:0000819 B-1 B cell biolink:Cell skos:exactMatch CL:0000819 B-1 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4922","subject_information_content":91.94953810872488} +UMLS:C4289953 Autologous CD34-positive Hematopoietic Progenitor Cells biolink:Cell skos:exactMatch NCIT:C128249 Autologous CD34-positive Hematopoietic Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4923","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440286 Cells.CD3+CD7+ biolink:Cell skos:exactMatch UMLS:C1440286 Cells.CD3+CD7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4924"} +CL:0002554 fibroblast of lymphatic vessel biolink:Cell skos:exactMatch CL:0002554 fibroblast of lymphatic vessel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4925","subject_information_content":100.0} +UMLS:C1514050 Neoplastic Neutrophilic Precursor biolink:Cell skos:exactMatch NCIT:C37076 Neoplastic Neutrophilic Precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4926","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1184107 Myoepithelial cell of acinus of lactiferous gland biolink:Cell skos:exactMatch UMLS:C1184107 Myoepithelial cell of acinus of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4927"} +UMLS:C1182692 Clear cell of eccrine sweat gland biolink:Cell skos:exactMatch UMLS:C1182692 Clear cell of eccrine sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4928"} +CL:0019022 endothelial cell of pericentral hepatic sinusoid biolink:Cell skos:exactMatch CL:0019022 endothelial cell of pericentral hepatic sinusoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4929","subject_information_content":100.0} +UMLS:C4287595 CD16+ CD56+ CD69+ Lymphocyte biolink:Cell skos:exactMatch NCIT:C128465 CD16+ CD56+ CD69+ Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4930","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157439 CD3+CD4+ (T4 helper) cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157439 CD3+CD4+ (T4 helper) cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4931"} +UMLS:C5157628 CD59 RBC | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157628 CD59 RBC | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4932"} +CL:0002326 luminal epithelial cell of mammary gland biolink:Cell skos:exactMatch CL:0002326 luminal epithelial cell of mammary gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4933","subject_information_content":89.84144812560278} +UMLS:C1510734 Abnormal Squamous Cell biolink:Cell skos:exactMatch NCIT:C36772 Abnormal Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4934","subject_information_content":74.8362698924938,"identifierIndex":0} +UMLS:C1979162 Blasts.CD15 biolink:Cell skos:exactMatch UMLS:C1979162 Blasts.CD15 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4935"} +UMLS:C0206131 Adipocytes biolink:Cell skos:exactMatch NCIT:C12556 Adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4936","subject_information_content":100.0,"identifierIndex":0} +CL:0002569 mesenchymal stem cell of umbilical cord biolink:Cell skos:exactMatch CL:0002569 mesenchymal stem cell of umbilical cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4937","subject_information_content":94.92072406280138} +MESH:D001773 Blood Cells biolink:Cell skos:exactMatch MESH:D001773 Blood Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4938"} +CL:0001063 neoplastic cell biolink:Cell skos:exactMatch CL:0001063 neoplastic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4939","subject_information_content":91.94953810872488} +UMLS:C4510886 Blast cell positive for CD127 antigen biolink:Cell skos:exactMatch SNOMEDCT:724302005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4940","identifierIndex":0} +UMLS:C1522074 Skin - Melanocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22543 Mouse Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4941","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4697019 Cells.CD25+CD45RO+CD127Low+ biolink:Cell skos:exactMatch UMLS:C4697019 Cells.CD25+CD45RO+CD127Low+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4942"} +UMLS:C1881549 Malignant Epithelial Large Polygonal Cell biolink:Cell skos:exactMatch NCIT:C61001 Malignant Epithelial Large Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4943","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4304494 Population of all stomatocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719694005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4944","identifierIndex":0} +CL:0000099 interneuron biolink:Cell skos:exactMatch CL:0000099 interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4945","subject_information_content":67.61941561766724} +UMLS:C0206131 Adipocytes biolink:Cell skos:exactMatch MESH:D017667 Adipocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4936","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5237260 Anti-CD19 CAR T-cells XLCART001 biolink:Cell skos:exactMatch NCIT:C165551 Anti-CD19 CAR T-cells XLCART001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4946","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979744 Leukocytes.CD59 deficient biolink:Cell skos:exactMatch UMLS:C1979744 Leukocytes.CD59 deficient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4947"} +UMLS:C0014793 Abnormal Red Blood Cell biolink:Cell skos:exactMatch NCIT:C12522 Abnormal Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4948","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1517532 Germinal Center B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38335 Germinal Center B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4949","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513978 Neoplastic Glial Cell biolink:Cell skos:exactMatch NCIT:C37126 Neoplastic Glial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4950","subject_information_content":78.81980028025117,"identifierIndex":0} +CL:0000081 blood cell biolink:Cell skos:exactMatch CL:0000081 blood cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4951","subject_information_content":74.15937240904506} +UMLS:C4318752 CD5+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4318752 CD5+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4952"} +UMLS:C2964562 Viable CD34 cells biolink:Cell skos:exactMatch UMLS:C2964562 Viable CD34 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4953"} +NCIT:C13013 Lymphoblast biolink:Cell skos:exactMatch NCIT:C13013 Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4954","subject_information_content":91.94953810872488} +UMLS:C0206131 Adipocytes biolink:Cell skos:exactMatch SNOMEDCT:24826007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4936","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1523992 Leukocyte - Monocyte - Macrophage - Histiocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22588 Mouse Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4955","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709184 Neoplastic Lipocyte biolink:Cell skos:exactMatch NCIT:C48683 Neoplastic Lipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4956","subject_information_content":79.23864834624368,"identifierIndex":0} +UMLS:C0014793 Abnormal Red Blood Cell biolink:Cell skos:exactMatch MESH:D004913 Erythrocytes, Abnormal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4948","subject_information_content":84.76217218840416,"identifierIndex":1} +UMLS:C5540451 Viable and Metabolically Active Allogeneic Human NIKS Keratinocytes and Human Dermal Fibroblasts Cellularized Layered Scaffold biolink:Cell skos:exactMatch UMLS:C5540451 Viable and Metabolically Active Allogeneic Human NIKS Keratinocytes and Human Dermal Fibroblasts Cellularized Layered Scaffold biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4957"} +UMLS:C1267926 Lymphocyte positive for CD44 antigen biolink:Cell skos:exactMatch SNOMEDCT:117370000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4958","identifierIndex":0} +UMLS:C1512135 ES06 (cell line) biolink:Cell skos:exactMatch NCIT:C20254 ES06 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4959","subject_information_content":100.0,"identifierIndex":0} +CL:0000986 IgM plasma cell biolink:Cell skos:exactMatch CL:0000986 IgM plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4960","subject_information_content":100.0} +UMLS:C5401424 Innate Lymphoid Cell biolink:Cell skos:exactMatch NCIT:C171057 Innate Lymphoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4961","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163449 Eosinophils | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163449 Eosinophils | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4962"} +NCIT:C12474 B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C12474 B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4963","subject_information_content":74.8362698924938} +UMLS:C1710150 Spindle A Melanoma Cell biolink:Cell skos:exactMatch NCIT:C54158 Spindle A Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4964","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0427566 Macrothrombocyte biolink:Cell skos:exactMatch SNOMEDCT:134203001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4965","identifierIndex":0} +UMLS:C0014793 Abnormal Red Blood Cell biolink:Cell skos:exactMatch SNOMEDCT:397019006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4948","subject_information_content":84.76217218840416,"identifierIndex":2} +CL:0000205 thermoreceptor cell biolink:Cell skos:exactMatch CL:0000205 thermoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4966","subject_information_content":91.94953810872488} +UMLS:C1440146 Blasts.CD33 biolink:Cell skos:exactMatch UMLS:C1440146 Blasts.CD33 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4967"} +CL:0002651 endothelial cell of venous sinus of spleen biolink:Cell skos:exactMatch CL:0002651 endothelial cell of venous sinus of spleen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4968","subject_information_content":94.92072406280138} +UMLS:C1510929 Autologous Anti-MART-1 F5 T-Cell Receptor Gene-Engineered Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C38587 Autologous Anti-MART-1 F5 T-Cell Receptor Gene-Engineered Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4969","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0483189 CD3+DR+ biolink:Cell skos:exactMatch UMLS:C0483189 CD3+DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4970"} +CL:0000088 female germ line stem cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000088 female germ line stem cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4971","subject_information_content":100.0} +UMLS:C1709167 Neoplastic Cartilage Cell biolink:Cell skos:exactMatch NCIT:C48696 Neoplastic Cartilage Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4972","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C5205604 Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3006 biolink:Cell skos:exactMatch NCIT:C160847 Autologous CAR-mbIL15-Safety Switch T-cells PRGN-3006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4973","subject_information_content":100.0,"identifierIndex":0} +MESH:D001402 B-Lymphocytes biolink:Cell skos:exactMatch MESH:D001402 B-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4974"} +UMLS:C0225338 Columnar epithelial cell biolink:Cell skos:exactMatch UMLS:C0225338 Columnar epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4975"} +UMLS:C0229645 Basophilic promyelocyte biolink:Cell skos:exactMatch SNOMEDCT:71170001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4976","identifierIndex":0} +CL:1001436 hair-tylotrich neuron biolink:Cell skos:exactMatch CL:1001436 hair-tylotrich neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4977","subject_information_content":100.0} +UMLS:C1515968 Anaplastic Melanocyte biolink:Cell skos:exactMatch NCIT:C37110 Anaplastic Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4978","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711394 Neoplastic Thyroid Gland Follicular Cell with Large and Hyperchromatic Nucleus biolink:Cell skos:exactMatch NCIT:C47833 Neoplastic Thyroid Gland Follicular Cell with Large and Hyperchromatic Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4979","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514660 RL21 biolink:Cell skos:exactMatch NCIT:C20294 RL21 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4980","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216275 Monocytes|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216275 Monocytes|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4981"} +CL:0000670 primordial germ cell biolink:Cell skos:exactMatch CL:0000670 primordial germ cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4982","subject_information_content":89.84144812560278} +UMLS:C1513988 Neoplastic Thyroid Gland Oncocyte biolink:Cell skos:exactMatch NCIT:C37095 Neoplastic Thyroid Gland Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4983","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C3652653 indium (111In) oxinate labelled cells biolink:Cell skos:exactMatch UMLS:C3652653 indium (111In) oxinate labelled cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4984"} +UMLS:C5157330 CD16+CD57+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157330 CD16+CD57+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4985"} +CL:2000030 hypothalamus cell biolink:Cell skos:exactMatch CL:2000030 hypothalamus cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4986","subject_information_content":94.92072406280138} +UMLS:C4723769 Therapeutic Invariant Natural Killer T-cells biolink:Cell skos:exactMatch NCIT:C148557 Therapeutic Invariant Natural Killer T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4987","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514020 Neoplastic Medium-Sized to Large T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39614 Neoplastic Medium-Sized to Large T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4988","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000065 ependymal cell biolink:Cell skos:exactMatch CL:0000065 ependymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4989","subject_information_content":94.92072406280138} +UMLS:C5157387 CD20+FMC7+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157387 CD20+FMC7+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4990"} +UMLS:C0023005 Langerhans cell biolink:Cell skos:exactMatch UMLS:C0023005 Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4991"} +UMLS:C4304493 Population of all target cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719695006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4992","identifierIndex":0} +CL:0002510 CD103-negative, langerin-positive lymph node dendritic cell biolink:Cell skos:exactMatch CL:0002510 CD103-negative, langerin-positive lymph node dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4993","subject_information_content":100.0} +MESH:D016175 B-Lymphocyte Subsets biolink:Cell skos:exactMatch MESH:D016175 B-Lymphocyte Subsets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4994"} +UMLS:C5157251 CD11+CD18+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157251 CD11+CD18+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4995"} +CL:0000788 naive B cell biolink:Cell skos:exactMatch CL:0000788 naive B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4996","subject_information_content":88.2062864997332} +UMLS:C4510923 Blast cell positive for CD2 antigen biolink:Cell skos:exactMatch SNOMEDCT:725175007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4997","identifierIndex":0} +CL:0000821 B-1b B cell biolink:Cell skos:exactMatch CL:0000821 B-1b B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4998","subject_information_content":100.0} +CL:1000236 posterior lateral line nerve glial cell biolink:Cell skos:exactMatch CL:1000236 posterior lateral line nerve glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#4999","subject_information_content":100.0} +UMLS:C5154514 Basophils+Eosinophils+Monocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154514 Basophils+Eosinophils+Monocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5000"} +UMLS:C1513987 Neoplastic Hobnail Cell biolink:Cell skos:exactMatch NCIT:C36758 Neoplastic Hobnail Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5001","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:1001107 kidney loop of Henle thin ascending limb epithelial cell biolink:Cell skos:exactMatch CL:1001107 kidney loop of Henle thin ascending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5002","subject_information_content":100.0} +UMLS:C2325384 Epithelial cell of urethra biolink:Cell skos:exactMatch UMLS:C2325384 Epithelial cell of urethra biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5003"} +UMLS:C5157610 CD55 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157610 CD55 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5004"} +UMLS:C5426633 Cells.CD3-CD14+CD45+DOCK8+ biolink:Cell skos:exactMatch UMLS:C5426633 Cells.CD3-CD14+CD45+DOCK8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5005"} +CL:0011007 paraxial cell biolink:Cell skos:exactMatch CL:0011007 paraxial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5006","subject_information_content":100.0} +CL:4023049 L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023049 L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5007","subject_information_content":100.0} +CL:0002461 CD103-positive dendritic cell biolink:Cell skos:exactMatch CL:0002461 CD103-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5008","subject_information_content":89.84144812560278} +UMLS:C5206704 Autologous Anti-gp100CAR-CD3zeta-4-1BB-IL-15-PD1-expressing Tri-functional T-lymphocytes biolink:Cell skos:exactMatch NCIT:C162626 Autologous Anti-gp100CAR-CD3zeta-4-1BB-IL-15-PD1-expressing Tri-functional T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5009","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157473 CD3+TCR gamma delta+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157473 CD3+TCR gamma delta+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5010"} +UMLS:C5176574 Pencil cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5176574 Pencil cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5011"} +CL:0001073 CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001073 CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5012","subject_information_content":100.0} +UMLS:C1717525 Acute leukemia markers biolink:Cell skos:exactMatch UMLS:C1717525 Acute leukemia markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5013"} +CL:0000967 Bm5 B cell biolink:Cell skos:exactMatch CL:0000967 Bm5 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5014","subject_information_content":100.0} +CL:0002372 myotube biolink:Cell skos:exactMatch CL:0002372 myotube biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5015","subject_information_content":78.04773462533598} +UMLS:C5148826 Reticulocytes.medium fluorescence biolink:Cell skos:exactMatch UMLS:C5148826 Reticulocytes.medium fluorescence biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5016"} +UMLS:C5170950 Leukocytes other | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170950 Leukocytes other | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5017"} +UMLS:C1268005 Hematopoietic precursor cell biolink:Cell skos:exactMatch SNOMEDCT:127911004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5018","identifierIndex":0} +MESH:D050416 Glucagon-Secreting Cells biolink:Cell skos:exactMatch MESH:D050416 Glucagon-Secreting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5019"} +CL:0002305 epithelial cell of distal tubule biolink:Cell skos:exactMatch CL:0002305 epithelial cell of distal tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5020","subject_information_content":84.76217218840416} +UMLS:C1267847 Lymphocyte positive for both CD5 antigen and CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:117534004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5021","identifierIndex":0} +UMLS:C1268000 Lymphocyte positive for CD122 antigen biolink:Cell skos:exactMatch SNOMEDCT:117440009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5022","identifierIndex":0} +UMLS:C4277739 Tenocytes biolink:Cell skos:exactMatch MESH:D000070916 Tenocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5023","identifierIndex":0} +UMLS:C4277680 Adipocytes, Beige biolink:Cell skos:exactMatch MESH:D000069797 Adipocytes, Beige biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5024","identifierIndex":0} +CL:0009028 intestinal crypt stem cell of appendix biolink:Cell skos:exactMatch CL:0009028 intestinal crypt stem cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5025","subject_information_content":100.0} +UMLS:C0596508 Embryonic Stem Cells biolink:Cell skos:exactMatch NCIT:C12935 Embryonic Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5026","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1527294 GE07 cell line biolink:Cell skos:exactMatch NCIT:C20257 GE07 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5027","subject_information_content":100.0,"identifierIndex":0} +CL:0000621 fusion competent myoblast biolink:Cell skos:exactMatch CL:0000621 fusion competent myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5028","subject_information_content":100.0} +CL:0000976 IgA short lived plasma cell biolink:Cell skos:exactMatch CL:0000976 IgA short lived plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5029","subject_information_content":100.0} +UMLS:C0008010 Chemoreceptor Cells biolink:Cell skos:exactMatch MESH:D002628 Chemoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5030","identifierIndex":0} +CL:1001097 kidney afferent arteriole smooth muscle cell biolink:Cell skos:exactMatch CL:1001097 kidney afferent arteriole smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5031","subject_information_content":100.0} +UMLS:C3641794 Gene-Modified HIV-Protected Hematopoietic Stem Cells biolink:Cell skos:exactMatch NCIT:C104415 Gene-Modified HIV-Protected Hematopoietic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5032","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4684850 Autologous CD19/CD22 Chimeric Antigen Receptor T-cells biolink:Cell skos:exactMatch NCIT:C142834 Autologous CD19/CD22 Chimeric Antigen Receptor T-cells CT120 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5033","subject_information_content":100.0,"identifierIndex":0} +CL:0001019 CD115-positive monocyte OR common dendritic progenitor biolink:Cell skos:exactMatch CL:0001019 CD115-positive monocyte OR common dendritic progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5034","subject_information_content":81.20444558259193} +UMLS:C0427528 Atypical mononuclear cell biolink:Cell skos:exactMatch NCIT:C12979 Atypical Mononuclear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5035","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0596508 Embryonic Stem Cells biolink:Cell skos:exactMatch MESH:D053595 Embryonic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5026","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0228007 Prespermatogonia biolink:Cell skos:exactMatch SNOMEDCT:64216006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5036","identifierIndex":0} +CL:0000524 spheroplast biolink:Cell skos:exactMatch CL:0000524 spheroplast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5037","subject_information_content":100.0} +UMLS:C1522153 Leukocyte - Monoblast (MMHCC) biolink:Cell skos:exactMatch NCIT:C22584 Mouse Monoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5038","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512100 Dysplastic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36807 Dysplastic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5039","subject_information_content":64.00082053464784,"identifierIndex":0} +UMLS:C4322732 CD33+ hemal cell biolink:Cell skos:exactMatch UMLS:C4322732 CD33+ hemal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5040"} +CL:0001011 immature interstitial dendritic cell biolink:Cell skos:exactMatch CL:0001011 immature interstitial dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5041","subject_information_content":100.0} +CL:1001601 adrenal gland glandular cell biolink:Cell skos:exactMatch CL:1001601 adrenal gland glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5042","subject_information_content":86.87026217152628} +UMLS:C1440318 Cells.CD46 biolink:Cell skos:exactMatch UMLS:C1440318 Cells.CD46 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5043"} +UMLS:C0427528 Atypical mononuclear cell biolink:Cell skos:exactMatch SNOMEDCT:250287000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5035","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0596508 Embryonic Stem Cells biolink:Cell skos:exactMatch SNOMEDCT:419965008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5026","subject_information_content":100.0,"identifierIndex":2} +UMLS:C5186017 Blasts | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186017 Blasts | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5044"} +CL:0000649 prickle cell biolink:Cell skos:exactMatch CL:0000649 prickle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5045","subject_information_content":100.0} +UMLS:C1317495 Leukocyte clumps biolink:Cell skos:exactMatch UMLS:C1317495 Leukocyte clumps biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5046"} +CL:0009023 small intestine Peyer's patch T cell biolink:Cell skos:exactMatch CL:0009023 small intestine Peyer's patch T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5047","subject_information_content":94.92072406280138} +CL:0002507 langerin-positive lymph node dendritic cell biolink:Cell skos:exactMatch CL:0002507 langerin-positive lymph node dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5048","subject_information_content":91.94953810872488} +UMLS:C5157528 CD3-CD57+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157528 CD3-CD57+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5049"} +CL:0002446 Ly49CI-negative natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002446 Ly49CI-negative natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5050","subject_information_content":100.0} +UMLS:C2325183 Type 1 vestibular sensory cell of stato-acoustic epithelium biolink:Cell skos:exactMatch UMLS:C2325183 Type 1 vestibular sensory cell of stato-acoustic epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5051"} +UMLS:C4744852 Autologous iC9-deltaNGFR-CD19CAR-CD3zeta-4-1BB-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C156479 Autologous iC9-deltaNGFR-CD19CAR-CD3zeta-4-1BB-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5052","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1883031 Signet Ring Melanoma Cell biolink:Cell skos:exactMatch NCIT:C62402 Signet Ring Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5053","subject_information_content":100.0,"identifierIndex":0} +CL:0002380 oospore biolink:Cell skos:exactMatch CL:0002380 oospore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5054","subject_information_content":100.0} +UMLS:C5157356 CD19+CD38+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157356 CD19+CD38+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5055"} +UMLS:C0596995 Myoblasts biolink:Cell skos:exactMatch UMLS:C0596995 Myoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5056"} +CL:1000320 large intestine goblet cell biolink:Cell skos:exactMatch CL:1000320 large intestine goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5057","subject_information_content":88.2062864997332} +UMLS:C5170921 Leukocytes | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170921 Leukocytes | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5058"} +UMLS:C4267709 100 Cells.CD3+CD4+ biolink:Cell skos:exactMatch UMLS:C4267709 100 Cells.CD3+CD4+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5059"} +CL:0000019 sperm biolink:Cell skos:exactMatch CL:0000019 sperm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5060","subject_information_content":85.74066969721673} +CL:0000750 OFF-bipolar cell biolink:Cell skos:exactMatch CL:0000750 OFF-bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5061","subject_information_content":100.0} +CL:1001567 lung endothelial cell biolink:Cell skos:exactMatch CL:1001567 lung endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5062","subject_information_content":91.94953810872488} +UMLS:C2350249 Hemogenic Endothelial Cells biolink:Cell skos:exactMatch UMLS:C2350249 Hemogenic Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5063"} +CL:0000799 immature gamma-delta T cell biolink:Cell skos:exactMatch CL:0000799 immature gamma-delta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5064","subject_information_content":94.92072406280138} +UMLS:C5216280 Mononuclear cells|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216280 Mononuclear cells|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5065"} +CL:0002521 subcutaneous fat cell biolink:Cell skos:exactMatch CL:0002521 subcutaneous fat cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5066","subject_information_content":100.0} +CL:0000595 enucleate erythrocyte biolink:Cell skos:exactMatch CL:0000595 enucleate erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5067","subject_information_content":88.2062864997332} +UMLS:C5186845 Neutrophils | Control | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186845 Neutrophils | Control | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5068"} +UMLS:C1179135 Type IV taste bud cell biolink:Cell skos:exactMatch NCIT:C13185 Taste Bud Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5069","subject_information_content":100.0,"identifierIndex":0} +CL:0009034 dendritic cell of appendix biolink:Cell skos:exactMatch CL:0009034 dendritic cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5070","subject_information_content":100.0} +UMLS:C1708692 Leukemic Mast Cell biolink:Cell skos:exactMatch NCIT:C43274 Leukemic Mast Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5071","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1257751 Erythroid Cells biolink:Cell skos:exactMatch UMLS:C1257751 Erythroid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5072"} +UMLS:C0369602 Leukocytes other biolink:Cell skos:exactMatch UMLS:C0369602 Leukocytes other biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5073"} +UMLS:C2698278 Autologous Anti-PSMA Gene-Modified T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C78197 Autologous Anti-PSMA Gene-Modified T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5074","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2333349 Retinal microglial cell biolink:Cell skos:exactMatch UMLS:C2333349 Retinal microglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5075"} +UMLS:C3640939 tisagenlecleucel biolink:Cell skos:exactMatch UMLS:C3640939 tisagenlecleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5076"} +UMLS:C0805579 Cerebroventricular lining cells biolink:Cell skos:exactMatch UMLS:C0805579 Cerebroventricular lining cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5077"} +CL:0005015 inner phalangeal cell biolink:Cell skos:exactMatch CL:0005015 inner phalangeal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5078","subject_information_content":100.0} +CL:0002582 visceral preadipocyte biolink:Cell skos:exactMatch CL:0002582 visceral preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5079","subject_information_content":100.0} +UMLS:C2328847 Set of cholinergic cells of globus pallidus [Ch2] biolink:Cell skos:exactMatch UMLS:C2328847 Set of cholinergic cells of globus pallidus [Ch2] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5080"} +NCIT:C12558 Macrophage biolink:Cell skos:exactMatch NCIT:C12558 Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5081","subject_information_content":83.1270105625346} +CL:0002217 intermediate trophoblast cell biolink:Cell skos:exactMatch CL:0002217 intermediate trophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5082","subject_information_content":100.0} +UMLS:C1317190 Cells.CD2+CD7+ biolink:Cell skos:exactMatch UMLS:C1317190 Cells.CD2+CD7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5083"} +CL:0000488 visible light photoreceptor cell biolink:Cell skos:exactMatch CL:0000488 visible light photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5084","subject_information_content":81.79098623432766} +UMLS:C1440306 Cells.CD40 biolink:Cell skos:exactMatch UMLS:C1440306 Cells.CD40 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5085"} +CL:0000238 non keratinizing barrier epithelial cell biolink:Cell skos:exactMatch CL:0000238 non keratinizing barrier epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5086","subject_information_content":100.0} +UMLS:C1440255 Cells.CD138 biolink:Cell skos:exactMatch UMLS:C1440255 Cells.CD138 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5087"} +NCIT:C48687 Skeletal Muscle Cell biolink:Cell skos:exactMatch NCIT:C48687 Skeletal Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5088","subject_information_content":100.0} +UMLS:C0333719 Anuclear squame biolink:Cell skos:exactMatch SNOMEDCT:85313000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5089","identifierIndex":0} +CL:0002215 type IIb muscle cell biolink:Cell skos:exactMatch CL:0002215 type IIb muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5090","subject_information_content":100.0} +UMLS:C5142689 Plasma cells.polyclonal biolink:Cell skos:exactMatch UMLS:C5142689 Plasma cells.polyclonal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5091"} +UMLS:C2331102 Olfactory glial cell biolink:Cell skos:exactMatch UMLS:C2331102 Olfactory glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5092"} +UMLS:C1513932 Neoplastic Blast biolink:Cell skos:exactMatch NCIT:C37064 Neoplastic Blast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5093","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C2325557 Serous cell of epithelium of lobular bronchiole biolink:Cell skos:exactMatch UMLS:C2325557 Serous cell of epithelium of lobular bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5094"} +UMLS:C3496530 telencephalic dopamine cells biolink:Cell skos:exactMatch UMLS:C3496530 telencephalic dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5095"} +UMLS:C4241340 Set of enteroendocrine cells of epithelium of stomach biolink:Cell skos:exactMatch UMLS:C4241340 Set of enteroendocrine cells of epithelium of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5096"} +CL:0002353 fetal liver hematopoietic progenitor cell biolink:Cell skos:exactMatch CL:0002353 fetal liver hematopoietic progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5097","subject_information_content":100.0} +UMLS:C0333860 ABNORMAL MEGAKARYOCYTES AND PLATELETS biolink:Cell skos:exactMatch UMLS:C0333860 ABNORMAL MEGAKARYOCYTES AND PLATELETS biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5098"} +CL:0002267 type D cell of stomach biolink:Cell skos:exactMatch CL:0002267 type D cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5099","subject_information_content":100.0} +UMLS:C5168983 Immature reticulocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168983 Immature reticulocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5100"} +UMLS:C5151350 Abnormal lymphocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5151350 Abnormal lymphocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5101"} +UMLS:C5214313 Villous lymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5214313 Villous lymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5102"} +UMLS:C4300403 Cells.chromosome region 5q31 biolink:Cell skos:exactMatch UMLS:C4300403 Cells.chromosome region 5q31 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5103"} +UMLS:C1514029 Neoplastic Epithelial Cell with Intracytoplasmic Mucin biolink:Cell skos:exactMatch NCIT:C37116 Neoplastic Epithelial Cell with Intracytoplasmic Mucin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5104","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1181298 Dark chief cell of parathyroid gland biolink:Cell skos:exactMatch UMLS:C1181298 Dark chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5105"} +UMLS:C1440281 Cells.CD3+CD4+CD45RO+CD45RA- biolink:Cell skos:exactMatch UMLS:C1440281 Cells.CD3+CD4+CD45RO+CD45RA- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5106"} +UMLS:C1518217 Malignant Neuroendocrine Cell with Abundant Cytoplasm biolink:Cell skos:exactMatch NCIT:C36917 Malignant Neuroendocrine Cell with Abundant Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5107","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171959 Malignant cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171959 Malignant cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5108"} +UMLS:C4743545 Spanlecortemlocel biolink:Cell skos:exactMatch UMLS:C4743545 Spanlecortemlocel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5109"} +UMLS:C4477473 human cord blood hematopoietic progenitor cell 500000000 in 25 mL INTRAVENOUS INJECTION, SUSPENSION [CLEVECORD] biolink:Cell skos:exactMatch UMLS:C4477473 human cord blood hematopoietic progenitor cell 500000000 in 25 mL INTRAVENOUS INJECTION, SUSPENSION [CLEVECORD] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5110"} +UMLS:C5154487 Basophils.immature/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154487 Basophils.immature/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5111"} +UMLS:C1267911 Lymphocyte positive for both CD34 antigen and HLA-DR antigen biolink:Cell skos:exactMatch SNOMEDCT:117581003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5112","identifierIndex":0} +UMLS:C5177458 Plasma cells immature | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177458 Plasma cells immature | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5113"} +UMLS:C5170944 Leukocytes | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5170944 Leukocytes | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5114"} +UMLS:C1182617 External epithelial cell of tympanic membrane biolink:Cell skos:exactMatch UMLS:C1182617 External epithelial cell of tympanic membrane biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5115"} +UMLS:C5213934 Plasma cells monotypic population | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5213934 Plasma cells monotypic population | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5116"} +UMLS:C1510753 Acantholytic Keratinocyte biolink:Cell skos:exactMatch NCIT:C36747 Acantholytic Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5117","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2950201 Type D cell of duodenum biolink:Cell skos:exactMatch UMLS:C2950201 Type D cell of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5118"} +UMLS:C4696636 Cells.CD4+CD25+CD45RA+CD127Low+ biolink:Cell skos:exactMatch UMLS:C4696636 Cells.CD4+CD25+CD45RA+CD127Low+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5119"} +UMLS:C5161795 Cytoplasmic CD179a blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5161795 Cytoplasmic CD179a blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5120"} +UMLS:C4322824 CD40+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322824 CD40+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5121"} +UMLS:C4687587 NY-ESO-1 TCR Retroviral Vector-transduced Autologous PBMCs biolink:Cell skos:exactMatch NCIT:C146939 NY-ESO-1 TCR Retroviral Vector-transduced Autologous PBMCs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5122","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3178786 Noradrenergic Neurons biolink:Cell skos:exactMatch UMLS:C3178786 Noradrenergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5123"} +CL:0001032 cortical granule cell biolink:Cell skos:exactMatch CL:0001032 cortical granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5124","subject_information_content":91.94953810872488} +UMLS:C1440370 Cells.CD94 biolink:Cell skos:exactMatch UMLS:C1440370 Cells.CD94 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5125"} +UMLS:C5157595 CD5 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157595 CD5 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5126"} +CL:0002253 epithelial cell of large intestine biolink:Cell skos:exactMatch CL:0002253 epithelial cell of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5127","subject_information_content":72.10536271718298} +UMLS:C4267787 Cells.CD27-CD45RA- biolink:Cell skos:exactMatch UMLS:C4267787 Cells.CD27-CD45RA- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5128"} +CL:1000050 lateral line nerve glial cell biolink:Cell skos:exactMatch CL:1000050 lateral line nerve glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5129","subject_information_content":91.94953810872488} +UMLS:C5401608 Multipotent Adult Progenitor Cells (MAPCs) biolink:Cell skos:exactMatch UMLS:C5401608 Multipotent Adult Progenitor Cells (MAPCs) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5130"} +UMLS:C1267970 Lymphocyte positive for CD79A antigen biolink:Cell skos:exactMatch SNOMEDCT:117410007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5131","identifierIndex":0} +CL:0002190 squamous cell of epidermis biolink:Cell skos:exactMatch CL:0002190 squamous cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5132","subject_information_content":100.0} +UMLS:C4727589 Neoplastic Corticotroph Cell with Scarce Secretory Granules biolink:Cell skos:exactMatch NCIT:C154338 Neoplastic Corticotroph Cell with Scarce Secretory Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5133","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0038027 Reproduction spores biolink:Cell skos:exactMatch MESH:D013170 Spores biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5134","identifierIndex":0} +CL:0000527 efferent neuron biolink:Cell skos:exactMatch CL:0000527 efferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5135","subject_information_content":73.94695619694993} +UMLS:C1708873 Malignant Epithelial Large Cell with Vesicular Nucleus and Distinct Nucleolus biolink:Cell skos:exactMatch NCIT:C54387 Malignant Epithelial Large Cell with Vesicular Nucleus and Distinct Nucleolus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5136","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000622 acinar cell biolink:Cell skos:exactMatch CL:0000622 acinar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5137","subject_information_content":89.84144812560278} +UMLS:C1514137 Plant Tissue, Cells biolink:Cell skos:exactMatch NCIT:C18945 Plant Tissue, Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5138","subject_information_content":100.0,"identifierIndex":0} +CL:1000691 kidney interstitial myofibroblast biolink:Cell skos:exactMatch CL:1000691 kidney interstitial myofibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5139","subject_information_content":100.0} +UMLS:C5175152 Nucleated cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175152 Nucleated cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5140"} +CL:0000207 olfactory receptor cell biolink:Cell skos:exactMatch CL:0000207 olfactory receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5141","subject_information_content":89.84144812560278} +UMLS:C1267946 Lymphocyte positive for CD54 antigen biolink:Cell skos:exactMatch SNOMEDCT:117389000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5142","identifierIndex":0} +CL:0002222 vertebrate lens cell biolink:Cell skos:exactMatch CL:0002222 vertebrate lens cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5143","subject_information_content":84.76217218840416} +UMLS:C0443780 Rhytiocyte biolink:Cell skos:exactMatch UMLS:C0443780 Rhytiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5144"} +NCIT:C12521 Erythrocyte biolink:Cell skos:exactMatch NCIT:C12521 Erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5145","subject_information_content":94.92072406280138} +UMLS:C2708700 Immature cells biolink:Cell skos:exactMatch UMLS:C2708700 Immature cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5146"} +UMLS:C4744827 Derived Cell Line biolink:Cell skos:exactMatch NCIT:C156445 Derived Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5147","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3828683 Ovapuldencel-T biolink:Cell skos:exactMatch NCIT:C113651 Ovapuldencel-T biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5148","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1882057 Neoplastic Neuroendocrine Small Cell biolink:Cell skos:exactMatch NCIT:C60534 Neoplastic Neuroendocrine Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5149","subject_information_content":86.87026217152628,"identifierIndex":0} +CL:0000481 cholecystokin stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000481 cholecystokin stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5150","subject_information_content":100.0} +UMLS:C0030420 Paraganglia, Nonchromaffin biolink:Cell skos:exactMatch MESH:D010234 Paraganglia, Nonchromaffin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5151","identifierIndex":0} +UMLS:C1883046 Small Cuboidal Cell Resembling Fetal Hepatocyte biolink:Cell skos:exactMatch NCIT:C60804 Small Cuboidal Cell Resembling Fetal Hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5152","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2964631 100 cells.CD34 biolink:Cell skos:exactMatch UMLS:C2964631 100 cells.CD34 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5153"} +UMLS:C0022539 KB Cells biolink:Cell skos:exactMatch MESH:D007624 KB Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5154","identifierIndex":0} +UMLS:C4724803 NY-ESO-1/MAGE-A4/PRAME/Survivin/SSX2-specific Autologous Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C118367 NY-ESO-1/MAGE-A4/PRAME/Survivin/SSX2-specific Autologous Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5155","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333840 Non-lipid histiocyte biolink:Cell skos:exactMatch SNOMEDCT:42766006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5156","identifierIndex":0} +UMLS:C1182791 Glomerular endothelial cell biolink:Cell skos:exactMatch UMLS:C1182791 Glomerular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5157"} +CL:0009078 thymic fibroblast type 1 biolink:Cell skos:exactMatch CL:0009078 thymic fibroblast type 1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5158"} +UMLS:C1518241 Malignant Small Cell biolink:Cell skos:exactMatch NCIT:C36860 Malignant Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5160","subject_information_content":79.68289625120555,"identifierIndex":0} +CL:1000083 stratified keratinized epithelial stem cell biolink:Cell skos:exactMatch CL:1000083 stratified keratinized epithelial stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5161","subject_information_content":100.0} +UMLS:C1979641 Blast cell positive for CD24 antigen biolink:Cell skos:exactMatch SNOMEDCT:724264006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5159","identifierIndex":0} +UMLS:C1184798 Supporting cell of vestibular epithelium biolink:Cell skos:exactMatch UMLS:C1184798 Supporting cell of vestibular epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5162"} +CL:0000656 primary spermatocyte biolink:Cell skos:exactMatch CL:0000656 primary spermatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5163","subject_information_content":100.0} +UMLS:C4324113 CD38+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4324113 CD38+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5164"} +UMLS:C1182623 Unipotent stem cell biolink:Cell skos:exactMatch UMLS:C1182623 Unipotent stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5165"} +UMLS:C0333809 Microcytic hypochromic erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:62570005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5166","identifierIndex":0} +CL:0002223 anterior lens cell biolink:Cell skos:exactMatch CL:0002223 anterior lens cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5167","subject_information_content":100.0} +CL:1000339 enterocyte of epithelium proper of small intestine biolink:Cell skos:exactMatch CL:1000339 enterocyte of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5168","subject_information_content":89.84144812560278} +CL:0005012 multi-ciliated epithelial cell biolink:Cell skos:exactMatch CL:0005012 multi-ciliated epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5169","subject_information_content":88.2062864997332} +CL:0000030 glioblast biolink:Cell skos:exactMatch CL:0000030 glioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5170","subject_information_content":89.84144812560278} +CL:0001200 lymphocyte of B lineage, CD19-positive biolink:Cell skos:exactMatch CL:0001200 lymphocyte of B lineage, CD19-positive biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5171","subject_information_content":67.27451213680526} +UMLS:C1180238 Capillary Endothelial Cells biolink:Cell skos:exactMatch UMLS:C1180238 Capillary Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5172"} +UMLS:C3656573 Cells.CD3-CD8-CD57+ biolink:Cell skos:exactMatch UMLS:C3656573 Cells.CD3-CD8-CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5173"} +UMLS:C5219171 Leukocytes|PrThr|Urine biolink:Cell skos:exactMatch UMLS:C5219171 Leukocytes|PrThr|Urine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5174"} +UMLS:C4511891 Population of all plasma cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726508007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5175","identifierIndex":0} +UMLS:C1517451 Glandular cell of stomach biolink:Cell skos:exactMatch NCIT:C32655 Gastric Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5176","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5157318 CD15 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157318 CD15 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5177"} +CL:0005005 cyanoblast biolink:Cell skos:exactMatch CL:0005005 cyanoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5178","subject_information_content":100.0} +CL:0000112 columnar neuron biolink:Cell skos:exactMatch CL:0000112 columnar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5179","subject_information_content":100.0} +UMLS:C1180269 Myoepithelial cell of lactiferous gland biolink:Cell skos:exactMatch UMLS:C1180269 Myoepithelial cell of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5180"} +UMLS:C0376448 Jurkat Cells biolink:Cell skos:exactMatch MESH:D019169 Jurkat Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5181","identifierIndex":0} +CL:0002594 smooth muscle cell of the umbilical artery biolink:Cell skos:exactMatch CL:0002594 smooth muscle cell of the umbilical artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5182","subject_information_content":100.0} +CL:0000794 CD8-positive, alpha-beta cytotoxic T cell biolink:Cell skos:exactMatch CL:0000794 CD8-positive, alpha-beta cytotoxic T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5183","subject_information_content":100.0} +CL:2000025 spinal cord oligodendrocyte biolink:Cell skos:exactMatch CL:2000025 spinal cord oligodendrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5184","subject_information_content":100.0} +CL:2000097 midbrain dopaminergic neuron biolink:Cell skos:exactMatch CL:2000097 midbrain dopaminergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5185","subject_information_content":100.0} +UMLS:C5216227 Leukocytes other|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216227 Leukocytes other|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5186"} +UMLS:C5157351 CD19+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157351 CD19+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5187"} +UMLS:C1440330 Cells.CD51 biolink:Cell skos:exactMatch UMLS:C1440330 Cells.CD51 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5188"} +UMLS:C1517354 GE01 cell line biolink:Cell skos:exactMatch NCIT:C20256 GE01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5189","subject_information_content":100.0,"identifierIndex":0} +CL:0000336 adrenal medulla chromaffin cell biolink:Cell skos:exactMatch CL:0000336 adrenal medulla chromaffin cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5190","subject_information_content":91.94953810872488} +CL:0000589 cochlear inner hair cell biolink:Cell skos:exactMatch CL:0000589 cochlear inner hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5191","subject_information_content":100.0} +CL:0000418 arcade cell biolink:Cell skos:exactMatch CL:0000418 arcade cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5192","subject_information_content":100.0} +CL:0000339 glioblast (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000339 glioblast (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5193","subject_information_content":100.0} +UMLS:C1268458 Cell positive for CD43 antigen biolink:Cell skos:exactMatch SNOMEDCT:116833008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5194","identifierIndex":0} +UMLS:C4287655 Autologous MAGE-A10-specific HLA-A2-restricted TCR c796 Gene-engineered Lymphocytes biolink:Cell skos:exactMatch NCIT:C126686 Autologous MAGE-A10-specific HLA-A2-restricted TCR c796 Gene-engineered Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5195","subject_information_content":100.0,"identifierIndex":0} +CL:0000168 insulin secreting cell biolink:Cell skos:exactMatch CL:0000168 insulin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5196","subject_information_content":94.92072406280138} +UMLS:C4055475 Alzheimer Type II Astrocyte biolink:Cell skos:exactMatch NCIT:C120911 Alzheimer Type II Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5197","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4744787 Alpha/Beta T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C156387 Alpha/Beta T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5198","subject_information_content":100.0,"identifierIndex":0} +CL:1001597 seminal vesicle glandular cell biolink:Cell skos:exactMatch CL:1001597 seminal vesicle glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5199","subject_information_content":100.0} +UMLS:C2331959 Set of cholinergic cells of amygdaloid body [Ch4] biolink:Cell skos:exactMatch UMLS:C2331959 Set of cholinergic cells of amygdaloid body [Ch4] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5200"} +UMLS:C1708880 Malignant Goblet-Like Mucous Cell biolink:Cell skos:exactMatch NCIT:C47812 Malignant Goblet-Like Mucous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5201","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881560 Malignant Hyperchromatic Small Epithelial Cell biolink:Cell skos:exactMatch NCIT:C61588 Malignant Hyperchromatic Small Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5202","subject_information_content":100.0,"identifierIndex":0} +CL:0000508 type G enteroendocrine cell biolink:Cell skos:exactMatch CL:0000508 type G enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5203","subject_information_content":100.0} +UMLS:C0301867 Forbidden clone biolink:Cell skos:exactMatch SNOMEDCT:24309006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5204","identifierIndex":0} +UMLS:C2333370 Serous cell of epithelium of terminal bronchiole biolink:Cell skos:exactMatch UMLS:C2333370 Serous cell of epithelium of terminal bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5205"} +UMLS:C0205868 Perineuronal satellite cell biolink:Cell skos:exactMatch NCIT:C12619 Perineuronal Satellite Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5206","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0205868 Perineuronal satellite cell biolink:Cell skos:exactMatch NCIT:C33516 Satellite Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5206","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0205868 Perineuronal satellite cell biolink:Cell skos:exactMatch MESH:D027161 Satellite Cells, Perineuronal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5206","subject_information_content":100.0,"identifierIndex":2} +UMLS:C0205868 Perineuronal satellite cell biolink:Cell skos:exactMatch SNOMEDCT:28922004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5206","subject_information_content":100.0,"identifierIndex":3} +CL:0017000 pulmonary ionocyte biolink:Cell skos:exactMatch CL:0017000 pulmonary ionocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5207","subject_information_content":100.0} +UMLS:C5175006 Normoblasts | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175006 Normoblasts | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5208"} +CL:0002120 CD24-positive CD38-negative IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002120 CD24-positive CD38-negative IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5209","subject_information_content":100.0} +UMLS:C3641120 Plasmacytoid Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C103192 Plasmacytoid Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5210","subject_information_content":100.0,"identifierIndex":0} +CL:0002445 Ly49D-negative natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002445 Ly49D-negative natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5211","subject_information_content":100.0} +MESH:D016131 Lymphocyte Subsets biolink:Cell skos:exactMatch MESH:D016131 Lymphocyte Subsets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5212"} +UMLS:C1267917 Lymphocyte positive for CD40 antigen biolink:Cell skos:exactMatch SNOMEDCT:117585007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5213","identifierIndex":0} +CL:0000806 DN2 thymocyte biolink:Cell skos:exactMatch CL:0000806 DN2 thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5214","subject_information_content":91.94953810872488} +UMLS:C2336824 Type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell skos:exactMatch UMLS:C2336824 Type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5215"} +UMLS:C1267860 Lymphocyte positive for CD9 antigen biolink:Cell skos:exactMatch SNOMEDCT:117542003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5216","identifierIndex":0} +CL:0011115 precursor cell biolink:Cell skos:exactMatch CL:0011115 precursor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5217","subject_information_content":59.002815443861884} +CL:0002133 stromal cell of ovarian cortex biolink:Cell skos:exactMatch CL:0002133 stromal cell of ovarian cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5218","subject_information_content":100.0} +UMLS:C4072762 Cells.CCND1 gene biolink:Cell skos:exactMatch UMLS:C4072762 Cells.CCND1 gene biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5219"} +UMLS:C1317194 Cells.CD235a biolink:Cell skos:exactMatch UMLS:C1317194 Cells.CD235a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5220"} +UMLS:C5163711 Erythrocytes | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163711 Erythrocytes | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5221"} +UMLS:C2827689 Natural Killer Cells ZRx101 biolink:Cell skos:exactMatch NCIT:C85466 Natural Killer Cells ZRx101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5222","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2327855 Type ECL enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2327855 Type ECL enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5223"} +CL:2000058 calvarial osteoblast biolink:Cell skos:exactMatch CL:2000058 calvarial osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5224","subject_information_content":100.0} +UMLS:C4706843 Indium (111-In) labeled granulocyte biolink:Cell skos:exactMatch SNOMEDCT:763410001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5225","identifierIndex":0} +UMLS:C1268010 Megakaryocytic cell biolink:Cell skos:exactMatch SNOMEDCT:127918005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5226","identifierIndex":0} +UMLS:C4744782 Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR biolink:Cell skos:exactMatch NCIT:C156382 Autologous MCPyV-specific HLA-A02-restricted TCR-transduced CD4+ and CD8+ T-cells FH-MCVA2TCR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5227","subject_information_content":100.0,"identifierIndex":0} +CL:0001062 effector memory CD8-positive, alpha-beta T cell, terminally differentiated biolink:Cell skos:exactMatch CL:0001062 effector memory CD8-positive, alpha-beta T cell, terminally differentiated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5228","subject_information_content":100.0} +CL:0002088 interstitial cell of Cajal biolink:Cell skos:exactMatch CL:0002088 interstitial cell of Cajal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5229","subject_information_content":100.0} +CL:0000394 plasmatocyte biolink:Cell skos:exactMatch CL:0000394 plasmatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5230","subject_information_content":86.87026217152628} +UMLS:C0882920 Cell positive for CD7 antigen biolink:Cell skos:exactMatch SNOMEDCT:116747004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5231","identifierIndex":0} +UMLS:C5417884 Autologous Anti-CD19 TAC-T cells TAC01-CD19 biolink:Cell skos:exactMatch NCIT:C172055 Autologous Anti-CD19 TAC-T cells TAC01-CD19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5232","subject_information_content":100.0,"identifierIndex":0} +CL:0000026 invertebrate nurse cell biolink:Cell skos:exactMatch CL:0000026 invertebrate nurse cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5233","subject_information_content":100.0} +UMLS:C1706725 Adrenal Cortical Cell biolink:Cell skos:exactMatch NCIT:C48358 Adrenal Cortical Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5234","subject_information_content":100.0,"identifierIndex":0} +CL:1000239 anterior lateral line nerve glial cell biolink:Cell skos:exactMatch CL:1000239 anterior lateral line nerve glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5235","subject_information_content":100.0} +UMLS:C4329671 Circulating Tumor-Reactive T-Cell biolink:Cell skos:exactMatch NCIT:C131128 Circulating Tumor-Reactive T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5236","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157486 CD33 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157486 CD33 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5237"} +UMLS:C5167388 Histiocytes | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5167388 Histiocytes | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5238"} +UMLS:C0205867 Interfascicular Oligodendroglia biolink:Cell skos:exactMatch UMLS:C0205867 Interfascicular Oligodendroglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5239"} +UMLS:C5174624 Neutrophils | Stool | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174624 Neutrophils | Stool | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5240"} +CL:0002084 Boettcher cell biolink:Cell skos:exactMatch CL:0002084 Boettcher cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5241","subject_information_content":100.0} +UMLS:C3494245 Sf9 Cells biolink:Cell skos:exactMatch MESH:D061987 Sf9 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5242","identifierIndex":0} +CL:0002657 glandular cell of esophagus biolink:Cell skos:exactMatch CL:0002657 glandular cell of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5243","subject_information_content":91.94953810872488} +CL:2000034 anterior lateral line neuromast hair cell biolink:Cell skos:exactMatch CL:2000034 anterior lateral line neuromast hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5244","subject_information_content":100.0} +UMLS:C1518221 Malignant Neuroendocrine Polygonal Cell biolink:Cell skos:exactMatch NCIT:C36855 Malignant Neuroendocrine Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5245","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1636284 Cord blood stem cell biolink:Cell skos:exactMatch SNOMEDCT:419423006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5246","identifierIndex":0} +CL:0009066 stratified squamous epithelial cell of anal canal biolink:Cell skos:exactMatch CL:0009066 stratified squamous epithelial cell of anal canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5247","subject_information_content":94.92072406280138} +CL:1001123 kidney outer medulla peritubular capillary cell biolink:Cell skos:exactMatch CL:1001123 kidney outer medulla peritubular capillary cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5248","subject_information_content":100.0} +CL:2000061 placental amniotic mesenchymal stromal cell biolink:Cell skos:exactMatch CL:2000061 placental amniotic mesenchymal stromal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5249","subject_information_content":100.0} +CL:0001015 CD8_alpha-low Langerhans cell biolink:Cell skos:exactMatch CL:0001015 CD8_alpha-low Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5250","subject_information_content":91.94953810872488} +UMLS:C0882828 Cell positive for CD3 antigen biolink:Cell skos:exactMatch SNOMEDCT:116744006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5251","identifierIndex":0} +UMLS:C1179463 Endothelial cell of hepatic sinusoid biolink:Cell skos:exactMatch UMLS:C1179463 Endothelial cell of hepatic sinusoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5253"} +UMLS:C2326121 Golgi neuron biolink:Cell skos:exactMatch UMLS:C2326121 Golgi neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5254"} +UMLS:C2346937 Malignant Ovoid Osteoblast biolink:Cell skos:exactMatch NCIT:C67522 Malignant Ovoid Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5255","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181286 Intermediate epitheliocyte biolink:Cell skos:exactMatch UMLS:C1181286 Intermediate epitheliocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5252"} +UMLS:C5157500 CD34+DR+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157500 CD34+DR+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5256"} +CL:0000846 vestibular dark cell biolink:Cell skos:exactMatch CL:0000846 vestibular dark cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5257","subject_information_content":100.0} +UMLS:C5448063 Autologous Anti-CD22 CAR-expressing T-cells SCRI-CAR22v2 biolink:Cell skos:exactMatch NCIT:C176568 Autologous Anti-CD22 CAR-expressing T-cells SCRI-CAR22v2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5258","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3273372 CD4 Positive Naive T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C97350 CD4 Positive Naive T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5259","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2335437 Type K enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2335437 Type K enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5260"} +UMLS:C0945925 Cells.CD3+CD25+ biolink:Cell skos:exactMatch UMLS:C0945925 Cells.CD3+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5261"} +UMLS:C1276851 Structure of parathyroid wasserhelle cell biolink:Cell skos:exactMatch SNOMEDCT:177629009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5262","identifierIndex":0} +UMLS:C1513175 Metaplastic Myoepithelial Cell biolink:Cell skos:exactMatch NCIT:C37168 Metaplastic Myoepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5263","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5161798 Cytoplasmic CD22 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5161798 Cytoplasmic CD22 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5265"} +UMLS:C4725911 Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells biolink:Cell skos:exactMatch NCIT:C150671 Autologous Anti-CD19 CAR-CD3zeta-4-1BB-expressing T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5264","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2599203 Donated egg biolink:Cell skos:exactMatch UMLS:C2599203 Donated egg biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5266"} +NCIT:C13115 Myelocyte biolink:Cell skos:exactMatch NCIT:C13115 Myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5267","subject_information_content":100.0} +UMLS:C0882932 Cells.CD8+CD28+ biolink:Cell skos:exactMatch UMLS:C0882932 Cells.CD8+CD28+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5268"} +CL:1000854 kidney blood vessel cell biolink:Cell skos:exactMatch CL:1000854 kidney blood vessel cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5269","subject_information_content":72.96845868813736} +UMLS:C1518245 Malignant Squamous Cell biolink:Cell skos:exactMatch NCIT:C36771 Malignant Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5270","subject_information_content":81.20444558259193,"identifierIndex":0} +CL:1000314 gastric cardiac gland goblet cell biolink:Cell skos:exactMatch CL:1000314 gastric cardiac gland goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5271","subject_information_content":100.0} +UMLS:C1956386 Interstitial Dendritic Cells biolink:Cell skos:exactMatch UMLS:C1956386 Interstitial Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5272"} +UMLS:C2699839 EBV-Transformed Mature B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C80283 EBV-Transformed Mature B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5273","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5420310 Autologous Anti-CD19 CAR T-cells 19(T2)28z1xx biolink:Cell skos:exactMatch NCIT:C173622 Autologous Anti-CD19 CAR T-cells 19(T2)28z1xx biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5274","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1275629 Keratocyte biolink:Cell skos:exactMatch SNOMEDCT:397052000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5275","identifierIndex":0} +UMLS:C0085262 PC12 Cells biolink:Cell skos:exactMatch UMLS:C0085262 PC12 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5276"} +MESH:D009412 Nerve Fibers biolink:Cell skos:exactMatch MESH:D009412 Nerve Fibers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5277"} +UMLS:C0443779 Microspherocyte biolink:Cell skos:exactMatch SNOMEDCT:259683003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5278","identifierIndex":0} +UMLS:C5417809 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells C-CAR088 biolink:Cell skos:exactMatch NCIT:C170747 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-expressing T-cells C-CAR088 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5279","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515989 Angioblast biolink:Cell skos:exactMatch NCIT:C33934 Angioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5280","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709215 Neural Crest-Derived Cell biolink:Cell skos:exactMatch NCIT:C48431 Neural Crest-Derived Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5281","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C0684117 prokaryoblast biolink:Cell skos:exactMatch UMLS:C0684117 prokaryoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5282"} +UMLS:C4684956 Autologous Gamma-retroviral MSGV1 139 scFv EGFRvIII CAR Gene-modified T Cells biolink:Cell skos:exactMatch NCIT:C143060 Autologous Gamma-retroviral MSGV1 139 scFv EGFRvIII CAR Gene-modified T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5283","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1180330 Globose cell of olfactory epithelium biolink:Cell skos:exactMatch UMLS:C1180330 Globose cell of olfactory epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5284"} +CL:0000873 splenic metallophillic macrophage biolink:Cell skos:exactMatch CL:0000873 splenic metallophillic macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5285","subject_information_content":100.0} +UMLS:C2350468 Lymphocyte-Activated Killer Cells biolink:Cell skos:exactMatch UMLS:C2350468 Lymphocyte-Activated Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5286"} +UMLS:C2951489 Type D enteroendocrine cell of gastric gland biolink:Cell skos:exactMatch UMLS:C2951489 Type D enteroendocrine cell of gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5287"} +MESH:D015726 Giant Cells biolink:Cell skos:exactMatch MESH:D015726 Giant Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5288"} +CL:1000358 microfold cell of epithelium proper of ileum biolink:Cell skos:exactMatch CL:1000358 microfold cell of epithelium proper of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5289","subject_information_content":100.0} +UMLS:C2736932 Cells.CD3+CD45+ biolink:Cell skos:exactMatch UMLS:C2736932 Cells.CD3+CD45+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5290"} +UMLS:C2325214 Submandibular ganglion neuron biolink:Cell skos:exactMatch UMLS:C2325214 Submandibular ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5291"} +UMLS:C1267901 Lymphocyte positive for CD28 antigen biolink:Cell skos:exactMatch SNOMEDCT:117572009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5292","identifierIndex":0} +UMLS:C5221143 Leukocytes|NCnc|Pt|Dial fld biolink:Cell skos:exactMatch UMLS:C5221143 Leukocytes|NCnc|Pt|Dial fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5293"} +CL:0002441 CD94-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002441 CD94-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5294","subject_information_content":94.92072406280138} +NCIT:C32390 Corticotroph Cell biolink:Cell skos:exactMatch NCIT:C32390 Corticotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5295","subject_information_content":100.0} +UMLS:C0230519 Mitotic cell in prophase biolink:Cell skos:exactMatch SNOMEDCT:13056009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5296","identifierIndex":0} +UMLS:C5157670 CD8+CD45RA+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157670 CD8+CD45RA+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5297"} +UMLS:C1182628 Epithelial cell of anterior palatal part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182628 Epithelial cell of anterior palatal part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5298"} +UMLS:C5180577 Segmented neutrophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180577 Segmented neutrophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5299"} +UMLS:C0225468 Structure of posterior cells of ethmoid sinus biolink:Cell skos:exactMatch SNOMEDCT:5890002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5300","identifierIndex":0} +CL:0011101 chorionic trophoblast cell biolink:Cell skos:exactMatch CL:0011101 chorionic trophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5301","subject_information_content":100.0} +CL:0000940 mucosal invariant T cell biolink:Cell skos:exactMatch CL:0000940 mucosal invariant T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5302","subject_information_content":100.0} +UMLS:C1883692 Small to Medium Size Adenocarcinoma Cell with Oval Nucleus biolink:Cell skos:exactMatch NCIT:C62176 Small to Medium Size Adenocarcinoma Cell with Oval Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5303","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4725083 Autologous BCMA-4-1BBz-targeted CAR T-cells biolink:Cell skos:exactMatch NCIT:C148506 Autologous BCMA-4-1BBz-targeted CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5304","subject_information_content":100.0,"identifierIndex":0} +CL:0000653 glomerular visceral epithelial cell biolink:Cell skos:exactMatch CL:0000653 glomerular visceral epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5305","subject_information_content":91.94953810872488} +UMLS:C1267961 Lymphocyte positive for CD66D antigen biolink:Cell skos:exactMatch SNOMEDCT:117402006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5306","identifierIndex":0} +UMLS:C1182629 Ecto-epithelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182629 Ecto-epithelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5307"} +UMLS:C5148041 CD55 Monocytes biolink:Cell skos:exactMatch UMLS:C5148041 CD55 Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5308"} +UMLS:C2709115 Cells.CD138+Lambda+ biolink:Cell skos:exactMatch UMLS:C2709115 Cells.CD138+Lambda+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5309"} +UMLS:C0882934 Cells.CD8+CD38+ biolink:Cell skos:exactMatch UMLS:C0882934 Cells.CD8+CD38+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5310"} +UMLS:C5543953 MON002 biolink:Cell skos:exactMatch MESH:C000715488 MON002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5311","identifierIndex":0} +UMLS:C3496265 B2 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496265 B2 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5312"} +CL:0002680 PP cell of intestine biolink:Cell skos:exactMatch CL:0002680 PP cell of intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5313","subject_information_content":100.0} +UMLS:C3640934 Adenovirus Encoding Tyrosinase/MART-1/MAGEA6-transduced Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C102753 Adenovirus Encoding Tyrosinase/MART-1/MAGEA6-transduced Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5314","subject_information_content":100.0,"identifierIndex":0} +MESH:D020286 Pericytes biolink:Cell skos:exactMatch MESH:D020286 Pericytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5315"} +UMLS:C4551752 Abnormal Lymphocyte cell biolink:Cell skos:exactMatch NCIT:C36725 Abnormal Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5316","subject_information_content":65.69006245177746,"identifierIndex":0} +CL:0002211 type I muscle cell biolink:Cell skos:exactMatch CL:0002211 type I muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5317","subject_information_content":100.0} +UMLS:C1708871 Malignant Endothelial Cell biolink:Cell skos:exactMatch NCIT:C47834 Malignant Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5318","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5157420 CD3 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157420 CD3 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5319"} +CL:0002077 ecto-epithelial cell biolink:Cell skos:exactMatch CL:0002077 ecto-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5320","subject_information_content":64.27530379215159} +CL:0000654 primary oocyte biolink:Cell skos:exactMatch CL:0000654 primary oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5321","subject_information_content":100.0} +UMLS:C2329330 H I cell of retina biolink:Cell skos:exactMatch UMLS:C2329330 H I cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5322"} +UMLS:C5166082 Granulocytes | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166082 Granulocytes | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5323"} +UMLS:C1563925 Tr1 Cells biolink:Cell skos:exactMatch UMLS:C1563925 Tr1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5324"} +UMLS:C4764291 CRISPR-Cas9-mediated PD-1 and TCR Gene-deleted Anti-mesothelin CAR T-cells biolink:Cell skos:exactMatch NCIT:C158606 CRISPR-Cas9-mediated PD-1 and TCR Gene-deleted Anti-mesothelin CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5325","subject_information_content":100.0,"identifierIndex":0} +CL:0000509 gastrin secreting cell biolink:Cell skos:exactMatch CL:0000509 gastrin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5326","subject_information_content":91.94953810872488} +CL:0000028 CNS neuron (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000028 CNS neuron (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5327","subject_information_content":94.92072406280138} +CL:0000111 peripheral neuron biolink:Cell skos:exactMatch CL:0000111 peripheral neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5328","subject_information_content":94.92072406280138} +UMLS:C1979674 Cells.CD4+CD7-CD49d- biolink:Cell skos:exactMatch UMLS:C1979674 Cells.CD4+CD7-CD49d- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5329"} +UMLS:C4518148 Population of all spermatozoa with coiled tail in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725254007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5330","identifierIndex":0} +CL:1000353 microfold cell of epithelium of small intestine biolink:Cell skos:exactMatch CL:1000353 microfold cell of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5331","subject_information_content":86.87026217152628} +UMLS:C4267784 Cells.CD38+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C4267784 Cells.CD38+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5332"} +UMLS:C1708868 Malignant Corticotroph Cell biolink:Cell skos:exactMatch NCIT:C45944 Malignant Corticotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5333","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157496 CD34 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157496 CD34 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5334"} +CL:0002412 Vgamma1.1-positive, Vdelta6.3-positive thymocyte biolink:Cell skos:exactMatch CL:0002412 Vgamma1.1-positive, Vdelta6.3-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5335","subject_information_content":91.94953810872488} +UMLS:C5446902 Allogeneic Anti-CD30 CAR-Epstein-Barr Virus-specific T-lymphocytes biolink:Cell skos:exactMatch NCIT:C175980 Allogeneic Anti-CD30 CAR-Epstein-Barr Virus-specific T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5336","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4324226 CD43+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4324226 CD43+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5337"} +UMLS:C1708865 Malignant Chondrocyte with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C53492 Malignant Chondrocyte with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5338","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514179 Pleomorphic Small T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39601 Pleomorphic Small T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5339","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516313 Castration Cell biolink:Cell skos:exactMatch NCIT:C36752 Castration Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5340","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182654 Corneal endothelial cell biolink:Cell skos:exactMatch UMLS:C1182654 Corneal endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5341"} +UMLS:C5216299 Nucleated cells|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216299 Nucleated cells|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5342"} +NCIT:C13117 Band Cell biolink:Cell skos:exactMatch NCIT:C13117 Band Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5343","subject_information_content":100.0} +CL:0002485 retinal melanocyte biolink:Cell skos:exactMatch CL:0002485 retinal melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5344","subject_information_content":100.0} +UMLS:C5163448 Eosinophils | Urine sediment | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163448 Eosinophils | Urine sediment | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5345"} +UMLS:C2355611 Suppressor effector T lymphocyte biolink:Cell skos:exactMatch NCIT:C12544 Suppressor-Effector T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5346","subject_information_content":100.0,"identifierIndex":0} +CL:0002054 Fraction E immature B cell biolink:Cell skos:exactMatch CL:0002054 Fraction E immature B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5347","subject_information_content":100.0} +UMLS:C1510963 Atypical Reparative Cell biolink:Cell skos:exactMatch NCIT:C36785 Atypical Reparative Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5348","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170943 Leukocytes | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5170943 Leukocytes | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5349"} +CL:1000332 serous cell of epithelium of terminal bronchiole biolink:Cell skos:exactMatch CL:1000332 serous cell of epithelium of terminal bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5350","subject_information_content":100.0} +UMLS:C3900002 Autologous CD8+ Melanoma Specific T Cells biolink:Cell skos:exactMatch NCIT:C116072 Autologous CD8+ Melanoma Specific T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5351","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5172552 Metamyelocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172552 Metamyelocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5352"} +UMLS:C1267987 Lymphocyte positive for CD100 antigen biolink:Cell skos:exactMatch SNOMEDCT:117427004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5353","identifierIndex":0} +UMLS:C5175148 Nucleated cells | Bronchial | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175148 Nucleated cells | Bronchial | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5354"} +CL:0009058 enterocyte of anorectum biolink:Cell skos:exactMatch CL:0009058 enterocyte of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5355","subject_information_content":100.0} +UMLS:C2346933 Malignant Epithelioid Osteoblast biolink:Cell skos:exactMatch NCIT:C67523 Malignant Epithelioid Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5356","subject_information_content":100.0,"identifierIndex":0} +CL:1000366 transitional myocyte of middle internodal tract biolink:Cell skos:exactMatch CL:1000366 transitional myocyte of middle internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5357","subject_information_content":100.0} +UMLS:C1182651 Smooth muscle fiber of sphincter of pupil biolink:Cell skos:exactMatch UMLS:C1182651 Smooth muscle fiber of sphincter of pupil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5358"} +UMLS:C4518156 Population of all spermatozoa with abnormal head size in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725225001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5359","identifierIndex":0} +UMLS:C4763599 Autologous Anti-NY-ESO-1 mTCR Retroviral Vector Transduced PBLs biolink:Cell skos:exactMatch NCIT:C157409 Autologous Anti-NY-ESO-1 mTCR Retroviral Vector Transduced PBLs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5360","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086002 Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes biolink:Cell skos:exactMatch NCIT:C124795 Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5361","subject_information_content":100.0,"identifierIndex":0} +CL:1000375 myocardial endocrine cell of septal division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000375 myocardial endocrine cell of septal division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5362","subject_information_content":100.0} +CL:0002354 yolk sac hematopoietic stem cell biolink:Cell skos:exactMatch CL:0002354 yolk sac hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5363","subject_information_content":100.0} +CL:0000576 monocyte biolink:Cell skos:exactMatch CL:0000576 monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5364","subject_information_content":78.04773462533598} +CL:0001056 dendritic cell, human biolink:Cell skos:exactMatch CL:0001056 dendritic cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5365","subject_information_content":91.94953810872488} +UMLS:C2335624 Early promyelocyte biolink:Cell skos:exactMatch UMLS:C2335624 Early promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5366"} +UMLS:C5238954 Allogeneic Anti-CD20-CAR T-cells PBCAR20A biolink:Cell skos:exactMatch NCIT:C168570 Allogeneic Anti-CD20-CAR T-cells PBCAR20A biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5367","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1520104 WA09 Cell Line biolink:Cell skos:exactMatch NCIT:C20310 WA09 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5368","subject_information_content":100.0,"identifierIndex":0} +CL:1001213 arcuate artery endothelial cell biolink:Cell skos:exactMatch CL:1001213 arcuate artery endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5369","subject_information_content":100.0} +UMLS:C5212794 Chromosome 12 copy number biolink:Cell skos:exactMatch UMLS:C5212794 Chromosome 12 copy number biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5370"} +UMLS:C5157367 CD2 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157367 CD2 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5371"} +UMLS:C4740237 Spermatozoa.abnormal principal pieces biolink:Cell skos:exactMatch UMLS:C4740237 Spermatozoa.abnormal principal pieces biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5372"} +CL:0002288 type V taste receptor cell biolink:Cell skos:exactMatch CL:0002288 type V taste receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5373","subject_information_content":100.0} +UMLS:C1513081 Mouse Megakaryocyte biolink:Cell skos:exactMatch NCIT:C22567 Mouse Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5374","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4253033 Epithelial cell of intraprostatic part of ejaculatory duct biolink:Cell skos:exactMatch UMLS:C4253033 Epithelial cell of intraprostatic part of ejaculatory duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5375"} +UMLS:C5157300 CD135 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157300 CD135 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5376"} +CL:0009044 lymphocyte of small intestine lamina propria biolink:Cell skos:exactMatch CL:0009044 lymphocyte of small intestine lamina propria biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5377","subject_information_content":100.0} +UMLS:C1518990 Periosteal cell biolink:Cell skos:exactMatch NCIT:C33305 Periosteal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5378","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514891 Reserve Stem Cell biolink:Cell skos:exactMatch NCIT:C33464 Reserve Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5379","subject_information_content":100.0,"identifierIndex":0} +CL:0002131 regular ventricular cardiac myocyte biolink:Cell skos:exactMatch CL:0002131 regular ventricular cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5380","subject_information_content":100.0} +CL:0000642 folliculostellate cell biolink:Cell skos:exactMatch CL:0000642 folliculostellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5381","subject_information_content":94.92072406280138} +UMLS:C5172507 Mesothelial cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172507 Mesothelial cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5382"} +UMLS:C1518242 Malignant Small Hyperchromatic Cell biolink:Cell skos:exactMatch NCIT:C36861 Malignant Small Hyperchromatic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5383","subject_information_content":100.0,"identifierIndex":0} +CL:4023086 T Martinotti neuron biolink:Cell skos:exactMatch CL:4023086 T Martinotti neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5384","subject_information_content":94.92072406280138} +UMLS:C1440340 CD62P Cells biolink:Cell skos:exactMatch UMLS:C1440340 CD62P Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5385"} +UMLS:C4522890 T Lymphocytes, Cultured, Autologous, Genetically-modified biolink:Cell skos:exactMatch UMLS:C4522890 T Lymphocytes, Cultured, Autologous, Genetically-modified biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5386"} +UMLS:C5447425 Differentiated Anti-BCMA Autologous CAR T Cells ARI0002h biolink:Cell skos:exactMatch NCIT:C176769 Differentiated Anti-BCMA Autologous CAR T Cells ARI0002h biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5387","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171657 Lymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171657 Lymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5388"} +UMLS:C4505105 Oligodendrocyte Precursor Cells biolink:Cell skos:exactMatch MESH:D000073637 Oligodendrocyte Precursor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5389","identifierIndex":0} +UMLS:C1317395 Immature granulocyte biolink:Cell skos:exactMatch NCIT:C13113 Immature Granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5390","subject_information_content":100.0,"identifierIndex":0} +CL:0000146 simple columnar epithelial cell biolink:Cell skos:exactMatch CL:0000146 simple columnar epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5391","subject_information_content":89.84144812560278} +UMLS:C1181163 Set of central neuroglial cells biolink:Cell skos:exactMatch UMLS:C1181163 Set of central neuroglial cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5392"} +UMLS:C4740203 Cells.CD24-FLAER- biolink:Cell skos:exactMatch UMLS:C4740203 Cells.CD24-FLAER- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5393"} +UMLS:C1317395 Immature granulocyte biolink:Cell skos:exactMatch SNOMEDCT:726594001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5390","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1881195 Indium In 111-Labeled Autologous Peripheral Blood Mononuclear Cells biolink:Cell skos:exactMatch NCIT:C67085 Indium In 111-Labeled Autologous Peripheral Blood Mononuclear Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5394","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2338580 Otic ganglion neuron biolink:Cell skos:exactMatch UMLS:C2338580 Otic ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5395"} +UMLS:C1519442 Specialized epithelial cell biolink:Cell skos:exactMatch NCIT:C13006 Specialized Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5396","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1711302 Malignant Parathyroid Gland Oncocyte biolink:Cell skos:exactMatch NCIT:C48273 Malignant Parathyroid Gland Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5397","subject_information_content":100.0,"identifierIndex":0} +CL:1000445 myoepithelial cell of dilator pupillae biolink:Cell skos:exactMatch CL:1000445 myoepithelial cell of dilator pupillae biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5398","subject_information_content":100.0} +CL:0002443 Ly49CI-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002443 Ly49CI-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5399","subject_information_content":94.92072406280138} +UMLS:C3899239 Exhausted T-Cell biolink:Cell skos:exactMatch NCIT:C120000 Exhausted T-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5400","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4708585 Technetium (99m-Tc) labeled granulocytes biolink:Cell skos:exactMatch SNOMEDCT:768885006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5401","identifierIndex":0} +NCIT:C13001 Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C13001 Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5402","subject_information_content":100.0} +UMLS:C4510887 Blast cell positive for CD126 antigen biolink:Cell skos:exactMatch SNOMEDCT:724305007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5403","identifierIndex":0} +UMLS:C1440372 Cells.CD96 biolink:Cell skos:exactMatch UMLS:C1440372 Cells.CD96 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5404"} +UMLS:C4518168 Population of all immature basophils in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725439004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5405","identifierIndex":0} +UMLS:C3640295 Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo biolink:Cell skos:exactMatch NCIT:C101891 Allogeneic GM-CSF-secreting Tumor Vaccine PANC 6.03 pcDNA-1/GM-Neo biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5406","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086542 Lentivirus Vector CCR5 shRNA/TRIM5alpha/TAR Decoy-transduced Autologous CD34-positive Hematopoietic Progenitor Cells biolink:Cell skos:exactMatch NCIT:C123931 Lentivirus Vector CCR5 shRNA/TRIM5alpha/TAR Decoy-transduced Autologous CD34-positive Hematopoietic Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5407","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4253020 Set of type B cells of pancreatic islet biolink:Cell skos:exactMatch UMLS:C4253020 Set of type B cells of pancreatic islet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5408"} +CL:0002314 external supporting cell of vestibular epithelium biolink:Cell skos:exactMatch CL:0002314 external supporting cell of vestibular epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5409","subject_information_content":100.0} +UMLS:C1514102 Neoplastic Stellate Cell biolink:Cell skos:exactMatch NCIT:C36899 Neoplastic Stellate Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5410","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1518238 Malignant Perineural Cell biolink:Cell skos:exactMatch NCIT:C41434 Malignant Perineural Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5411","subject_information_content":100.0,"identifierIndex":0} +CL:0000309 copper accumulating cell biolink:Cell skos:exactMatch CL:0000309 copper accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5412","subject_information_content":100.0} +UMLS:C1182798 Epithelial cell of distal tubule biolink:Cell skos:exactMatch UMLS:C1182798 Epithelial cell of distal tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5413"} +CL:0000550 polychromatophilic erythroblast biolink:Cell skos:exactMatch CL:0000550 polychromatophilic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5414","subject_information_content":91.94953810872488} +UMLS:C5157343 CD19 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157343 CD19 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5415"} +UMLS:C1135926 Satellite Cells, Skeletal Muscle biolink:Cell skos:exactMatch MESH:D032496 Satellite Cells, Skeletal Muscle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5416","identifierIndex":0} +UMLS:C1514295 Pre-Thymocyte biolink:Cell skos:exactMatch NCIT:C33399 Pre-Thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5417","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0546493 P.B. eosinophilic myelocyte biolink:Cell skos:exactMatch UMLS:C0546493 P.B. eosinophilic myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5418"} +CL:0000699 paraganglial type 1 cell biolink:Cell skos:exactMatch CL:0000699 paraganglial type 1 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5419","subject_information_content":100.0} +UMLS:C5157668 CD8+CD28+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157668 CD8+CD28+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5420"} +UMLS:C5216189 Basophils.immature|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216189 Basophils.immature|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5421"} +CL:0002656 glandular cell of endometrium biolink:Cell skos:exactMatch CL:0002656 glandular cell of endometrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5422","subject_information_content":100.0} +UMLS:C2326430 Bronchial goblet cell biolink:Cell skos:exactMatch UMLS:C2326430 Bronchial goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5423"} +UMLS:C3831515 Anti-EGFRvIII CAR-transduced Allogeneic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C111565 Anti-EGFRvIII CAR-transduced Allogeneic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5424","subject_information_content":100.0,"identifierIndex":0} +CL:0000107 autonomic neuron biolink:Cell skos:exactMatch CL:0000107 autonomic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5425","subject_information_content":86.87026217152628} +UMLS:C1182622 Definitive germ cell biolink:Cell skos:exactMatch UMLS:C1182622 Definitive germ cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5426"} +UMLS:C5178285 Prolymphocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178285 Prolymphocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5427"} +UMLS:C3275034 CNDO-109-activated Allogeneic Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C99898 CNDO-109-activated Allogeneic Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5428","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0882801 Cells.CD16+CD57+/100 cells biolink:Cell skos:exactMatch UMLS:C0882801 Cells.CD16+CD57+/100 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5429"} +UMLS:C4724406 Anti-minor Histocompatibility Complex Donor T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C148500 Anti-minor Histocompatibility Complex Donor T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5430","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2736927 Cells.CD13+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C2736927 Cells.CD13+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5431"} +UMLS:C5157601 CD5+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157601 CD5+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5432"} +UMLS:C1267972 Lymphocyte positive for CD80 antigen biolink:Cell skos:exactMatch SNOMEDCT:117412004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5433","identifierIndex":0} +CL:0000606 macroconidium biolink:Cell skos:exactMatch CL:0000606 macroconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5434","subject_information_content":83.89907621744979} +CL:0000322 pneumocyte biolink:Cell skos:exactMatch CL:0000322 pneumocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5435","subject_information_content":91.94953810872488} +CL:0007009 prechondroblast biolink:Cell skos:exactMatch CL:0007009 prechondroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5436","subject_information_content":100.0} +UMLS:C1513933 Neoplastic Myeloblast with Basophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C37066 Neoplastic Myeloblast with Basophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5437","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C2350247 Monocyte-Macrophage Progenitor Cells biolink:Cell skos:exactMatch UMLS:C2350247 Monocyte-Macrophage Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5438"} +UMLS:C0229589 Structure of parathyroid oxyphil cell biolink:Cell skos:exactMatch NCIT:C33269 Parathyroid Gland Oxyphil Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5439","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5418087 Autologous Rapamycin-resistant Th1/Tc1 Cells RAPA-201 biolink:Cell skos:exactMatch NCIT:C174405 Autologous Rapamycin-resistant Th1/Tc1 Cells RAPA-201 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5440","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440391 Cells.IgG biolink:Cell skos:exactMatch UMLS:C1440391 Cells.IgG biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5441"} +CL:0000715 embryonic crystal cell biolink:Cell skos:exactMatch CL:0000715 embryonic crystal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5442","subject_information_content":100.0} +MESH:D017949 Retinal Cone Photoreceptor Cells biolink:Cell skos:exactMatch MESH:D017949 Retinal Cone Photoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5443"} +UMLS:C0682641 phagocytic reticular cell biolink:Cell skos:exactMatch UMLS:C0682641 phagocytic reticular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5444"} +CL:0002459 langerin-negative dermal dendritic cell biolink:Cell skos:exactMatch CL:0002459 langerin-negative dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5445","subject_information_content":100.0} +UMLS:C1507325 Cells.CD13+CD16+ biolink:Cell skos:exactMatch UMLS:C1507325 Cells.CD13+CD16+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5446"} +UMLS:C1517643 KA43 biolink:Cell skos:exactMatch NCIT:C20273 KA43 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5447","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0228086 Glioblast biolink:Cell skos:exactMatch SNOMEDCT:15837001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5448","identifierIndex":0} +UMLS:C0229589 Structure of parathyroid oxyphil cell biolink:Cell skos:exactMatch SNOMEDCT:12701006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5439","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1709169 Neoplastic Connective and Soft Tissue Epithelioid Cell biolink:Cell skos:exactMatch NCIT:C43307 Neoplastic Connective and Soft Tissue Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5449","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5154298 Band form neutrophils | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154298 Band form neutrophils | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5450"} +UMLS:C1565000 Retinal Horizontal Cells biolink:Cell skos:exactMatch MESH:D051248 Retinal Horizontal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5451","identifierIndex":0} +CL:0002250 intestinal crypt stem cell biolink:Cell skos:exactMatch CL:0002250 intestinal crypt stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5452","subject_information_content":86.87026217152628} +UMLS:C0734999 Exocrine cell biolink:Cell skos:exactMatch UMLS:C0734999 Exocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5453"} +UMLS:C5157448 CD3+CD56+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157448 CD3+CD56+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5454"} +CL:0000148 melanocyte biolink:Cell skos:exactMatch CL:0000148 melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5455","subject_information_content":80.66139376001811} +UMLS:C1708946 Activated Mature Gamma/Delta T-Lymphocyte with a Cytotoxic Phenotype biolink:Cell skos:exactMatch NCIT:C45341 Activated Mature Gamma/Delta T-Lymphocyte with a Cytotoxic Phenotype biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5456","subject_information_content":100.0,"identifierIndex":0} +CL:0000507 endorphin secreting cell biolink:Cell skos:exactMatch CL:0000507 endorphin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5457","subject_information_content":85.74066969721673} +UMLS:C0007658 Cementoblasts biolink:Cell skos:exactMatch NCIT:C32274 Cementoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5458","subject_information_content":100.0,"identifierIndex":0} +CL:1000363 transitional myocyte of atrial branch of anterior internodal tract biolink:Cell skos:exactMatch CL:1000363 transitional myocyte of atrial branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5459","subject_information_content":100.0} +UMLS:C1440298 Cells.CD34+DR+ biolink:Cell skos:exactMatch UMLS:C1440298 Cells.CD34+DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5460"} +CL:0002019 Ly-76 high reticulocyte biolink:Cell skos:exactMatch CL:0002019 Ly-76 high reticulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5461","subject_information_content":100.0} +UMLS:C1511324 BresaGen ES Cell Line biolink:Cell skos:exactMatch NCIT:C20247 BresaGen ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5462","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C5173497 Mononuclear cells | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173497 Mononuclear cells | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5463"} +UMLS:C5142688 Plasma cells.abnormal marker pattern biolink:Cell skos:exactMatch UMLS:C5142688 Plasma cells.abnormal marker pattern biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5464"} +UMLS:C1954880 Erythrocyte inclusion bodies biolink:Cell skos:exactMatch UMLS:C1954880 Erythrocyte inclusion bodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5465"} +UMLS:C0206427 Rod Photoreceptors biolink:Cell skos:exactMatch NCIT:C12638 Retinal Rod biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5466","subject_information_content":100.0,"identifierIndex":0} +CL:0000723 somatic stem cell biolink:Cell skos:exactMatch CL:0000723 somatic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5467","subject_information_content":72.27004034867431} +CL:1000412 endothelial cell of arteriole biolink:Cell skos:exactMatch CL:1000412 endothelial cell of arteriole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5468","subject_information_content":91.94953810872488} +CL:1000374 transitional myocyte of posterior division of left branch of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000374 transitional myocyte of posterior division of left branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5469","subject_information_content":100.0} +UMLS:C1515971 Anaplastic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39678 Anaplastic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5470","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:1000398 endothelial cell of hepatic sinusoid biolink:Cell skos:exactMatch CL:1000398 endothelial cell of hepatic sinusoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5471","subject_information_content":88.2062864997332} +UMLS:C5427575 Ganglion cells.right biolink:Cell skos:exactMatch UMLS:C5427575 Ganglion cells.right biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5472"} +UMLS:C1956319 Common Myeloid Progenitors biolink:Cell skos:exactMatch UMLS:C1956319 Common Myeloid Progenitors biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5473"} +UMLS:C0314596 Spleen colony-forming unit biolink:Cell skos:exactMatch SNOMEDCT:445288000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5474","identifierIndex":0} +UMLS:C0882931 Cells.CD8+CD25+ biolink:Cell skos:exactMatch UMLS:C0882931 Cells.CD8+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5475"} +UMLS:C0206427 Rod Photoreceptors biolink:Cell skos:exactMatch MESH:D017948 Retinal Rod Photoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5466","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1513966 Neoplastic Fibroblast-Like Cell biolink:Cell skos:exactMatch NCIT:C36959 Neoplastic Fibroblast-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5476","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1955384 Spermatozoa.isolated tail biolink:Cell skos:exactMatch UMLS:C1955384 Spermatozoa.isolated tail biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5477"} +UMLS:C0030280 Structure of alpha Cell of islet biolink:Cell skos:exactMatch SNOMEDCT:61028007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5478","identifierIndex":0} +UMLS:C1519599 Transformed Neoplastic Lymphocyte biolink:Cell skos:exactMatch NCIT:C40562 Transformed Neoplastic Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5479","subject_information_content":100.0,"identifierIndex":0} +CL:1000438 epithelial cell of wall of inferior part of anal canal biolink:Cell skos:exactMatch CL:1000438 epithelial cell of wall of inferior part of anal canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5480","subject_information_content":94.92072406280138} +UMLS:C4745265 Allogeneic UCB-derived HSPCs MGTA 456 biolink:Cell skos:exactMatch UMLS:C4745265 Allogeneic UCB-derived HSPCs MGTA 456 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5481"} +UMLS:C5157599 CD5+CD20+ cells | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157599 CD5+CD20+ cells | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5482"} +UMLS:C3656689 B cell+T cell biolink:Cell skos:exactMatch UMLS:C3656689 B cell+T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5483"} +CL:0008035 microcirculation associated smooth muscle cell biolink:Cell skos:exactMatch CL:0008035 microcirculation associated smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5484","subject_information_content":100.0} +UMLS:C0206427 Rod Photoreceptors biolink:Cell skos:exactMatch SNOMEDCT:17139002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5466","subject_information_content":100.0,"identifierIndex":2} +CL:0000770 band form basophil biolink:Cell skos:exactMatch CL:0000770 band form basophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5485","subject_information_content":100.0} +UMLS:C5216226 Leukocytes other|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216226 Leukocytes other|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5486"} +UMLS:C1181474 Chromaffin cell of adrenal medulla biolink:Cell skos:exactMatch UMLS:C1181474 Chromaffin cell of adrenal medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5487"} +CL:0000691 stellate interneuron biolink:Cell skos:exactMatch CL:0000691 stellate interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5488","subject_information_content":100.0} +UMLS:C1517214 Flower-Like T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39682 Flower-Like T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5489","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1441375 Cells.total biolink:Cell skos:exactMatch UMLS:C1441375 Cells.total biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5490"} +CL:0009068 CD8aa(I) thymocyte biolink:Cell skos:exactMatch CL:0009068 CD8aa(I) thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5491"} +UMLS:C5157923 Cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5157923 Cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5492"} +UMLS:C4038494 Cells.aneuploid.S phase population 2 biolink:Cell skos:exactMatch UMLS:C4038494 Cells.aneuploid.S phase population 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5493"} +CL:0000462 adepithelial cell biolink:Cell skos:exactMatch CL:0000462 adepithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5494","subject_information_content":100.0} +UMLS:C5171866 Macrophages | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171866 Macrophages | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5495"} +UMLS:C0552337 bladder cells biolink:Cell skos:exactMatch UMLS:C0552337 bladder cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5496"} +UMLS:C1113687 human embryonic stem cell line biolink:Cell skos:exactMatch UMLS:C1113687 human embryonic stem cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5497"} +CL:0002643 nonkeratinized cell of stratum corneum of esophageal epithelium biolink:Cell skos:exactMatch CL:0002643 nonkeratinized cell of stratum corneum of esophageal epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5498","subject_information_content":100.0} +NCIT:C12633 Olfactory Receptor Neuron biolink:Cell skos:exactMatch NCIT:C12633 Olfactory Receptor Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5499","subject_information_content":100.0} +CL:0009053 stromal cell of anorectum lamina propria biolink:Cell skos:exactMatch CL:0009053 stromal cell of anorectum lamina propria biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5500","subject_information_content":100.0} +UMLS:C1518421 Nose - Nasal Cavity - Olfactory Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22726 Mouse Olfactory Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5501","subject_information_content":100.0,"identifierIndex":0} +CL:1000415 epithelial cell of gall bladder biolink:Cell skos:exactMatch CL:1000415 epithelial cell of gall bladder biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5502","subject_information_content":94.92072406280138} +UMLS:C4684890 Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19 biolink:Cell skos:exactMatch NCIT:C142887 Autologous Anti-CD19 Chimeric Antigen Receptor T-cells SJCAR19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5503","subject_information_content":100.0,"identifierIndex":0} +CL:1000304 fibroblast of connective tissue of nonglandular part of prostate biolink:Cell skos:exactMatch CL:1000304 fibroblast of connective tissue of nonglandular part of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5504","subject_information_content":100.0} +CL:0000153 glycosaminoglycan secreting cell biolink:Cell skos:exactMatch CL:0000153 glycosaminoglycan secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5505","subject_information_content":81.79098623432766} +UMLS:C2919941 Colony-forming unit of monocytic lineage biolink:Cell skos:exactMatch SNOMEDCT:445094003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5506","identifierIndex":0} +CL:0000465 cardioblast (sensu Arthropoda) biolink:Cell skos:exactMatch CL:0000465 cardioblast (sensu Arthropoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5507","subject_information_content":100.0} +UMLS:C4738963 Leukocytes.DNA+Plasma.cfDNA biolink:Cell skos:exactMatch UMLS:C4738963 Leukocytes.DNA+Plasma.cfDNA biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5508"} +UMLS:C4085194 Conventional Dendritic Cell biolink:Cell skos:exactMatch NCIT:C123782 Conventional Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5509","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522076 Abnormal Monocyte biolink:Cell skos:exactMatch NCIT:C37040 Abnormal Monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5510","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1979667 Cells.CD19+IgA+ biolink:Cell skos:exactMatch UMLS:C1979667 Cells.CD19+IgA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5511"} +CL:0002438 NK1.1-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002438 NK1.1-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5512","subject_information_content":81.79098623432766} +CL:0002470 MHC-II-positive classical monocyte biolink:Cell skos:exactMatch CL:0002470 MHC-II-positive classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5513","subject_information_content":100.0} +CL:2000006 tonsil germinal center B cell biolink:Cell skos:exactMatch CL:2000006 tonsil germinal center B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5514","subject_information_content":100.0} +CL:0000789 alpha-beta T cell biolink:Cell skos:exactMatch CL:0000789 alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5515","subject_information_content":66.7858080012187} +CL:0011030 dermal microvascular endothelial cell biolink:Cell skos:exactMatch CL:0011030 dermal microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5516"} +UMLS:C5216315 Promonocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216315 Promonocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5517"} +UMLS:C0229611 Tissue neutrophil biolink:Cell skos:exactMatch SNOMEDCT:88397004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5518","identifierIndex":0} +UMLS:C1267858 Lymphocyte positive for both CD8 antigen and CD57 antigen biolink:Cell skos:exactMatch SNOMEDCT:117541005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5519","identifierIndex":0} +CL:0000591 warmth sensing thermoreceptor cell biolink:Cell skos:exactMatch CL:0000591 warmth sensing thermoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5520","subject_information_content":100.0} +UMLS:C5419628 Autologous CD19/PD-1 Bispecific CAR-T Cells biolink:Cell skos:exactMatch NCIT:C172387 Autologous CD19/PD-1 Bispecific CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5521","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5175153 Nucleated cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175153 Nucleated cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5522"} +UMLS:C5221013 Unidentified cells|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5221013 Unidentified cells|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5523"} +UMLS:C1709201 Neoplastic Somatotroph Cell with Abundant Secretory Granules biolink:Cell skos:exactMatch NCIT:C45939 Neoplastic Somatotroph Cell with Abundant Secretory Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5524","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517771 Lepra Cell biolink:Cell skos:exactMatch NCIT:C36737 Lepra Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5525","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2323609 Type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell skos:exactMatch UMLS:C2323609 Type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5526"} +CL:0009022 stromal cell of lamina propria of small intestine biolink:Cell skos:exactMatch CL:0009022 stromal cell of lamina propria of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5527","subject_information_content":94.92072406280138} +UMLS:C2348928 HLA-Matched Donor Mononuclear Cell-Enriched Leukocytes Apocell biolink:Cell skos:exactMatch NCIT:C71162 HLA-Matched Donor Mononuclear Cell-Enriched Leukocytes Apocell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5528","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401498 Human Umbilical Cord Mesenchymal Stem Cells biolink:Cell skos:exactMatch UMLS:C5401498 Human Umbilical Cord Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5529"} +UMLS:C1514276 Postradiation Dysplastic Glandular Cell biolink:Cell skos:exactMatch NCIT:C36805 Postradiation Dysplastic Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5530","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183496 Neural plate cell biolink:Cell skos:exactMatch UMLS:C1183496 Neural plate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5531"} +CL:1001106 kidney loop of Henle thick ascending limb epithelial cell biolink:Cell skos:exactMatch CL:1001106 kidney loop of Henle thick ascending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5532","subject_information_content":91.94953810872488} +UMLS:C5427579 Rods.right biolink:Cell skos:exactMatch UMLS:C5427579 Rods.right biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5533"} +UMLS:C0682524 fibroblast cell line biolink:Cell skos:exactMatch UMLS:C0682524 fibroblast cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5534"} +CL:0019001 tracheobronchial serous cell biolink:Cell skos:exactMatch CL:0019001 tracheobronchial serous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5535","subject_information_content":88.2062864997332} +CL:0000990 conventional dendritic cell biolink:Cell skos:exactMatch CL:0000990 conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5536","subject_information_content":69.99727273406087} +UMLS:C5216279 Mononuclear cells|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216279 Mononuclear cells|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5537"} +UMLS:C5237427 Autologous CD34-positive Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C165750 Autologous CD34-positive Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5538","subject_information_content":100.0,"identifierIndex":0} +CL:0000519 phagocyte (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000519 phagocyte (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5539","subject_information_content":78.04773462533598} +UMLS:C1708948 Mature Tissue Histiocyte biolink:Cell skos:exactMatch NCIT:C43249 Mature Tissue Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5540","subject_information_content":100.0,"identifierIndex":0} +CL:1000289 myocyte of atrial septal branch of anterior internodal tract biolink:Cell skos:exactMatch CL:1000289 myocyte of atrial septal branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5541","subject_information_content":100.0} +UMLS:C1507324 Cells.CD11b+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C1507324 Cells.CD11b+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5542"} +UMLS:C4740190 100 Cells.235a biolink:Cell skos:exactMatch UMLS:C4740190 100 Cells.235a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5543"} +UMLS:C0333743 Corps ronds biolink:Cell skos:exactMatch SNOMEDCT:40302004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5544","identifierIndex":0} +CL:0000609 vestibular hair cell biolink:Cell skos:exactMatch CL:0000609 vestibular hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5545","subject_information_content":82.42859222307153} +UMLS:C4085961 Anti-CD133-CAR Vector-transduced Allogeneic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C124132 Anti-CD133-CAR Vector-transduced Allogeneic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5546","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2335233 Basal cell of epithelium of respiratory bronchiole biolink:Cell skos:exactMatch UMLS:C2335233 Basal cell of epithelium of respiratory bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5547"} +UMLS:C4684970 Anti-CD19-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C143156 Anti-CD19-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5548","subject_information_content":100.0,"identifierIndex":0} +CL:0002619 adult endothelial progenitor cell biolink:Cell skos:exactMatch CL:0002619 adult endothelial progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5549","subject_information_content":100.0} +UMLS:C0598536 follicular epithelial cell biolink:Cell skos:exactMatch UMLS:C0598536 follicular epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5550"} +UMLS:C4733647 Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells biolink:Cell skos:exactMatch NCIT:C155897 Autologous Anti-CD19CAR-HER2t/CD22CAR-EGFRt-expressing T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5551","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881593 Malignant Sex Cord-Stromal Cell biolink:Cell skos:exactMatch NCIT:C61416 Malignant Sex Cord-Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5552","subject_information_content":100.0,"identifierIndex":0} +CL:0000404 electrically signaling cell biolink:Cell skos:exactMatch CL:0000404 electrically signaling cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5553","subject_information_content":57.77657363647569} +CL:1000425 chromaffin cell of paraganglion biolink:Cell skos:exactMatch CL:1000425 chromaffin cell of paraganglion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5554","subject_information_content":94.92072406280138} +CL:0002339 prostate stem cell biolink:Cell skos:exactMatch CL:0002339 prostate stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5555","subject_information_content":100.0} +CL:1000491 mesothelial cell of pleura biolink:Cell skos:exactMatch CL:1000491 mesothelial cell of pleura biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5556","subject_information_content":91.94953810872488} +CL:1000682 kidney medulla interstitial cell biolink:Cell skos:exactMatch CL:1000682 kidney medulla interstitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5557","subject_information_content":91.94953810872488} +UMLS:C1720886 Melanotrophs biolink:Cell skos:exactMatch MESH:D052717 Melanotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5558","identifierIndex":0} +CL:2000037 posterior lateral line neuromast hair cell biolink:Cell skos:exactMatch CL:2000037 posterior lateral line neuromast hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5559","subject_information_content":100.0} +UMLS:C4085963 Anti-CD22 scFv TCRz:41BB-CAR Lentiviral Vector-transduced Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C124656 Anti-CD22 scFv TCRz:41BB-CAR Lentiviral Vector-transduced Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5560","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163547 Epithelial cells.ciliated | Bronchoalveolar lavage | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163547 Epithelial cells.ciliated | Bronchoalveolar lavage | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5561"} +UMLS:C4763340 Anaxonic neuron biolink:Cell skos:exactMatch UMLS:C4763340 Anaxonic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5562"} +UMLS:C5157345 CD19 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157345 CD19 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5563"} +CL:0001023 Kit-positive, CD34-positive common myeloid progenitor biolink:Cell skos:exactMatch CL:0001023 Kit-positive, CD34-positive common myeloid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5564","subject_information_content":100.0} +UMLS:C1267824 T lymphocyte positive for both CD4 antigen and CD45RA antigen biolink:Cell skos:exactMatch SNOMEDCT:115403000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5565","identifierIndex":0} +CL:0001008 Kit and Sca1-positive hematopoietic stem cell biolink:Cell skos:exactMatch CL:0001008 Kit and Sca1-positive hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5566","subject_information_content":91.94953810872488} +UMLS:C5182777 TCR gamma delta cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5182777 TCR gamma delta cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5567"} +CL:0010016 collar cell biolink:Cell skos:exactMatch CL:0010016 collar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5568","subject_information_content":100.0} +CL:0002363 keratocyte biolink:Cell skos:exactMatch CL:0002363 keratocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5569","subject_information_content":100.0} +UMLS:C5238924 Circulating Cancer-Associated Fibroblast biolink:Cell skos:exactMatch NCIT:C168535 Circulating Cancer-Associated Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5570","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4053747 Allogeneic Mesothelioma Tumor Lysate-pulsed Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C121640 Allogeneic Mesothelioma Tumor Lysate-pulsed Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5571","subject_information_content":100.0,"identifierIndex":0} +CL:0000209 taste receptor cell biolink:Cell skos:exactMatch CL:0000209 taste receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5572","subject_information_content":86.87026217152628} +UMLS:C1518212 Malignant Myoepithelial Cell biolink:Cell skos:exactMatch NCIT:C36780 Malignant Myoepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5573","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157540 CD4+CD25-CD127+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157540 CD4+CD25-CD127+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5574"} +MESH:D050417 Insulin-Secreting Cells biolink:Cell skos:exactMatch MESH:D050417 Insulin-Secreting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5575"} +UMLS:C1510728 Abnormal Keratinocyte biolink:Cell skos:exactMatch NCIT:C36766 Abnormal Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5576","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0002128 Tc17 cell biolink:Cell skos:exactMatch CL:0002128 Tc17 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5577","subject_information_content":100.0} +UMLS:C0229613 lymphoblast biolink:Cell skos:exactMatch UMLS:C0229613 lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5578"} +CL:1001225 kidney collecting duct cell biolink:Cell skos:exactMatch CL:1001225 kidney collecting duct cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5579","subject_information_content":79.23864834624368} +UMLS:C0027871 Muscle Spindles biolink:Cell skos:exactMatch MESH:D009470 Muscle Spindles biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5580","identifierIndex":0} +UMLS:C4733516 Cytorex EBV biolink:Cell skos:exactMatch UMLS:C4733516 Cytorex EBV biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5581"} +UMLS:C4510925 Blast cell positive for CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:725174006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5582","identifierIndex":0} +CL:0000942 thymic plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000942 thymic plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5583","subject_information_content":100.0} +UMLS:C1513032 Mature Thymocyte biolink:Cell skos:exactMatch NCIT:C33062 Mature Thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5584","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881535 Malignant Apocrine Cell biolink:Cell skos:exactMatch NCIT:C62500 Malignant Apocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5585","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1524046 CNS - Brain - Neuron (MMHCC) biolink:Cell skos:exactMatch NCIT:C22618 Mouse Brain Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5586","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514109 Neoplastic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38641 Neoplastic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5587","subject_information_content":75.32497402808036,"identifierIndex":0} +CL:0002397 CD14-positive, CD16-positive monocyte biolink:Cell skos:exactMatch CL:0002397 CD14-positive, CD16-positive monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5588","subject_information_content":94.92072406280138} +UMLS:C4050617 Autologous HPV-16/18 E6/E7-specific TGF-beta-resistant T Lymphocytes biolink:Cell skos:exactMatch NCIT:C121537 Autologous HPV-16/18 E6/E7-specific TGF-beta-resistant T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5589","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708888 Malignant Lipocyte biolink:Cell skos:exactMatch NCIT:C48877 Malignant Lipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5590","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1182624 Basal cell of epidermis biolink:Cell skos:exactMatch UMLS:C1182624 Basal cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5591"} +UMLS:C5216196 Blasts|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216196 Blasts|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5592"} +UMLS:C4042879 Mouse Embryonic Stem Cells biolink:Cell skos:exactMatch MESH:D000066450 Mouse Embryonic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5593","identifierIndex":0} +UMLS:C4518154 Population of all spermatozoa with abnormal tail in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725227009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5594","identifierIndex":0} +CL:1000720 kidney papillary duct intercalated cell biolink:Cell skos:exactMatch CL:1000720 kidney papillary duct intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5595","subject_information_content":100.0} +CL:0000511 androgen binding protein secreting cell biolink:Cell skos:exactMatch CL:0000511 androgen binding protein secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5596","subject_information_content":94.92072406280138} +UMLS:C4510910 Blast cell positive for CD30 antigen biolink:Cell skos:exactMatch SNOMEDCT:725172005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5597","identifierIndex":0} +MESH:D018938 Caco-2 Cells biolink:Cell skos:exactMatch MESH:D018938 Caco-2 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5598"} +CL:0000835 myeloblast biolink:Cell skos:exactMatch CL:0000835 myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5599","subject_information_content":89.84144812560278} +UMLS:C4510924 Blast cell positive for CD21 antigen biolink:Cell skos:exactMatch SNOMEDCT:725173000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5600","identifierIndex":0} +CL:1000437 epithelial cell of nasolacrimal duct biolink:Cell skos:exactMatch CL:1000437 epithelial cell of nasolacrimal duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5601","subject_information_content":100.0} +CL:0002311 mammotroph biolink:Cell skos:exactMatch CL:0002311 mammotroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5602","subject_information_content":100.0} +CL:0000143 guidepost cell biolink:Cell skos:exactMatch CL:0000143 guidepost cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5603","subject_information_content":100.0} +UMLS:C4319573 Clue cell biolink:Cell skos:exactMatch SNOMEDCT:726573004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5604","identifierIndex":0} +CL:1001433 epithelial cell of exocrine pancreas biolink:Cell skos:exactMatch CL:1001433 epithelial cell of exocrine pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5605","subject_information_content":86.87026217152628} +CL:0002675 H plus biolink:Cell skos:exactMatch CL:0002675 H plus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5606","subject_information_content":100.0} +CL:0000851 neuromast mantle cell biolink:Cell skos:exactMatch CL:0000851 neuromast mantle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5607","subject_information_content":91.94953810872488} +UMLS:C5157346 CD19 cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157346 CD19 cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5608"} +UMLS:C5545271 Tissue Resident Memory T Cells biolink:Cell skos:exactMatch UMLS:C5545271 Tissue Resident Memory T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5609"} +UMLS:C0598828 granule cell (connective tissue) biolink:Cell skos:exactMatch UMLS:C0598828 granule cell (connective tissue) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5610"} +CL:0008025 noradrenergic neuron biolink:Cell skos:exactMatch CL:0008025 noradrenergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5611","subject_information_content":94.92072406280138} +CL:0002556 fibroblast of periodontium biolink:Cell skos:exactMatch CL:0002556 fibroblast of periodontium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5612","subject_information_content":94.92072406280138} +CL:0000646 basal cell biolink:Cell skos:exactMatch CL:0000646 basal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5613","subject_information_content":81.79098623432766} +CL:0000903 natural T-regulatory cell biolink:Cell skos:exactMatch CL:0000903 natural T-regulatory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5614","subject_information_content":100.0} +CL:0000845 marginal zone B cell of spleen biolink:Cell skos:exactMatch CL:0000845 marginal zone B cell of spleen biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5615","subject_information_content":100.0} +UMLS:C1709904 Renal Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell skos:exactMatch NCIT:C48817 Renal Tumor-Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5616","subject_information_content":100.0,"identifierIndex":0} +CL:0002524 disseminated nephrocyte biolink:Cell skos:exactMatch CL:0002524 disseminated nephrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5617","subject_information_content":100.0} +UMLS:C1440270 Cells.CD1a biolink:Cell skos:exactMatch UMLS:C1440270 Cells.CD1a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5618"} +UMLS:C5157523 CD3-CD19+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157523 CD3-CD19+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5619"} +UMLS:C5157319 CD15 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157319 CD15 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5620"} +UMLS:C0043544 Structure of zygote biolink:Cell skos:exactMatch NCIT:C12601 Zygote biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5621","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229426 Secondary sclerotic mastoid cell biolink:Cell skos:exactMatch SNOMEDCT:57106004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5622","identifierIndex":0} +UMLS:C4725001 MDS Neoantigen-specific Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C148393 MDS Neoantigen-specific Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5623","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2324195 Cone bipolar cell biolink:Cell skos:exactMatch UMLS:C2324195 Cone bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5624"} +UMLS:C1516092 Atypical Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37087 Atypical Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5625","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157556 CD4+CD8+ | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157556 CD4+CD8+ | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5626"} +CL:0002194 monopoietic cell biolink:Cell skos:exactMatch CL:0002194 monopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5627","subject_information_content":91.94953810872488} +UMLS:C0541681 Marrow Monocytes and Plasma Cells biolink:Cell skos:exactMatch UMLS:C0541681 Marrow Monocytes and Plasma Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5628"} +UMLS:C1370091 Cells.CD11+CD18+ biolink:Cell skos:exactMatch UMLS:C1370091 Cells.CD11+CD18+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5629"} +CL:0002179 foveolar cell of stomach biolink:Cell skos:exactMatch CL:0002179 foveolar cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5630","subject_information_content":100.0} +UMLS:C0043544 Structure of zygote biolink:Cell skos:exactMatch MESH:D015053 Zygote biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5621","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5157238 CD10+CD19+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157238 CD10+CD19+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5631"} +UMLS:C1977364 Granulocytes.CD55 biolink:Cell skos:exactMatch UMLS:C1977364 Granulocytes.CD55 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5632"} +UMLS:C1136335 Multipotent Stem Cells biolink:Cell skos:exactMatch NCIT:C43419 Multipotent Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5633","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:3000001 Hofbauer cell biolink:Cell skos:exactMatch CL:3000001 Hofbauer cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5634","subject_information_content":100.0} +CL:4023018 pvalb GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023018 pvalb GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5635","subject_information_content":94.92072406280138} +CL:4023110 amygdala pyramidal neuron biolink:Cell skos:exactMatch CL:4023110 amygdala pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5636"} +UMLS:C1708893 Malignant Neuroectodermal Small Cell biolink:Cell skos:exactMatch NCIT:C54044 Malignant Neuroectodermal Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5637","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440053 Abnormal blood cells.CD20 biolink:Cell skos:exactMatch UMLS:C1440053 Abnormal blood cells.CD20 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5638"} +UMLS:C1513928 Neoplastic B-Lymphoblast biolink:Cell skos:exactMatch NCIT:C37070 Neoplastic B-Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5639","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0043544 Structure of zygote biolink:Cell skos:exactMatch SNOMEDCT:57323001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5621","subject_information_content":100.0,"identifierIndex":2} +MESH:D020566 Dendritic Cells, Follicular biolink:Cell skos:exactMatch MESH:D020566 Dendritic Cells, Follicular biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5640"} +UMLS:C0334227 Tumor cells, malignant biolink:Cell skos:exactMatch UMLS:C0334227 Tumor cells, malignant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5641"} +UMLS:C1136335 Multipotent Stem Cells biolink:Cell skos:exactMatch MESH:D039902 Multipotent Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5633","subject_information_content":88.2062864997332,"identifierIndex":1} +UMLS:C0333816 Hypersegmented leukocyte biolink:Cell skos:exactMatch SNOMEDCT:24481008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5642","identifierIndex":0} +UMLS:C1517539 Giant Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36857 Giant Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5643","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3640296 Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo biolink:Cell skos:exactMatch NCIT:C101892 Allogeneic GM-CSF-secreting Tumor Vaccine PANC 10.05 pcDNA-1/GM-Neo biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5644","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522165 Leukocyte - Myelocyte (Granulocyte) - Basophil - Mast Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22594 Mouse Mast Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5645","subject_information_content":100.0,"identifierIndex":0} +CL:1000443 ciliary muscle cell biolink:Cell skos:exactMatch CL:1000443 ciliary muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5646","subject_information_content":100.0} +UMLS:C1440052 Abnormal blood cells.CD2 biolink:Cell skos:exactMatch UMLS:C1440052 Abnormal blood cells.CD2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5647"} +CL:0009047 macrophage of medullary sinus of lymph node biolink:Cell skos:exactMatch CL:0009047 macrophage of medullary sinus of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5648","subject_information_content":100.0} +UMLS:C5171670 Lymphocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171670 Lymphocytes | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5649"} +UMLS:C0225332 Fibrocyte biolink:Cell skos:exactMatch NCIT:C120463 Fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5650","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1545484 Non-squamous epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:725264003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5651","identifierIndex":0} +CL:0002203 brush cell of epithelium proper of large intestine biolink:Cell skos:exactMatch CL:0002203 brush cell of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5652","subject_information_content":89.84144812560278} +CL:0002420 immature T cell biolink:Cell skos:exactMatch CL:0002420 immature T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5653","subject_information_content":71.94430466897393} +UMLS:C5170920 Leukocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170920 Leukocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5654"} +UMLS:C1519112 Round Striated Muscle Cell biolink:Cell skos:exactMatch NCIT:C36950 Round Striated Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5655","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5392106 HaCaT Cells biolink:Cell skos:exactMatch MESH:D000084282 HaCaT Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5656","identifierIndex":0} +UMLS:C5174657 Neutrophils/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174657 Neutrophils/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5657"} +UMLS:C1545228 Cells.CD3-CD57+ biolink:Cell skos:exactMatch UMLS:C1545228 Cells.CD3-CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5658"} +UMLS:C1513982 Neoplastic Somatotroph Cell biolink:Cell skos:exactMatch NCIT:C36919 Neoplastic Somatotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5659","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C0225332 Fibrocyte biolink:Cell skos:exactMatch SNOMEDCT:24735009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5650","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1709209 Neoplastic Thyroid Gland Follicular Signet Ring Cell biolink:Cell skos:exactMatch NCIT:C47831 Neoplastic Thyroid Gland Follicular Signet Ring Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5660","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5154477 Basophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154477 Basophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5661"} +UMLS:C5447838 Allogeneic Anti-CD19-CAR-CD28-IL-15-expressing Natural Killer T-cells biolink:Cell skos:exactMatch NCIT:C177533 Allogeneic Anti-CD19-CAR-CD28-IL-15-expressing Natural Killer T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5662","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216266 Mesothelial cells|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216266 Mesothelial cells|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5663"} +UMLS:C5237046 Anti-TRBC1-CAR-CD3zeta-4-1BB-RQR8-expressing Autologous T-lymphocyte Cells AUTO4 biolink:Cell skos:exactMatch NCIT:C165274 Anti-TRBC1-CAR-CD3zeta-4-1BB-RQR8-expressing Autologous T-lymphocyte Cells AUTO4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5664","subject_information_content":100.0,"identifierIndex":0} +CL:0002417 primitive erythroid lineage cell biolink:Cell skos:exactMatch CL:0002417 primitive erythroid lineage cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5665","subject_information_content":88.2062864997332} +UMLS:C5157348 CD19 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157348 CD19 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5666"} +CL:1000042 forebrain neuroblast biolink:Cell skos:exactMatch CL:1000042 forebrain neuroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5667","subject_information_content":100.0} +UMLS:C1514146 Plasmablastic Immunoblast biolink:Cell skos:exactMatch NCIT:C37011 Plasmablastic Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5668","subject_information_content":100.0,"identifierIndex":0} +MESH:D006098 Granulocytes biolink:Cell skos:exactMatch MESH:D006098 Granulocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5669"} +UMLS:C5454558 CD45 (Lymphs) cells | Lower respiratory specimen | Cell markers biolink:Cell skos:exactMatch UMLS:C5454558 CD45 (Lymphs) cells | Lower respiratory specimen | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5670"} +UMLS:C5155171 Blasts | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155171 Blasts | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5671"} +UMLS:C1709468 Parathyroid Gland Parenchymal Cell biolink:Cell skos:exactMatch NCIT:C48257 Parathyroid Gland Parenchymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5672","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0011100 galanergic neuron biolink:Cell skos:exactMatch CL:0011100 galanergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5673","subject_information_content":100.0} +CL:0001048 activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human biolink:Cell skos:exactMatch CL:0001048 activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5674","subject_information_content":100.0} +UMLS:C4760444 Adoptive immunotherapy agent CTL019 biolink:Cell skos:exactMatch UMLS:C4760444 Adoptive immunotherapy agent CTL019 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5675"} +UMLS:C4284514 Cells.chromosome region 17p13.1 biolink:Cell skos:exactMatch UMLS:C4284514 Cells.chromosome region 17p13.1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5676"} +UMLS:C0333804 Stomatocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:10636005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5677","identifierIndex":0} +CL:0002472 MHC-II-low non-classical monocyte biolink:Cell skos:exactMatch CL:0002472 MHC-II-low non-classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5678","subject_information_content":100.0} +UMLS:C4300407 Cells.chromosome 7 monosomy biolink:Cell skos:exactMatch UMLS:C4300407 Cells.chromosome 7 monosomy biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5679"} +UMLS:C4330475 Immune Cell biolink:Cell skos:exactMatch NCIT:C132890 Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5680","subject_information_content":83.1270105625346,"identifierIndex":0} +CL:1000428 stem cell of epidermis biolink:Cell skos:exactMatch CL:1000428 stem cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5681","subject_information_content":91.94953810872488} +UMLS:C5196052 Human Cord Blood Hematopoietic Progenitor Cell 900000000 in 25 mL INTRAVENOUS SOLUTION [HEMATOPOIETIC PROGENITOR CELLS, CORD BLOOD] biolink:Cell skos:exactMatch UMLS:C5196052 Human Cord Blood Hematopoietic Progenitor Cell 900000000 in 25 mL INTRAVENOUS SOLUTION [HEMATOPOIETIC PROGENITOR CELLS, CORD BLOOD] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5682"} +CL:0002531 mature CD1a-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002531 mature CD1a-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5683","subject_information_content":100.0} +CL:1001068 kidney venous system smooth muscle cell biolink:Cell skos:exactMatch CL:1001068 kidney venous system smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5684","subject_information_content":91.94953810872488} +CL:0002568 mesenchymal stem cell of Wharton's jelly biolink:Cell skos:exactMatch CL:0002568 mesenchymal stem cell of Wharton's jelly biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5685","subject_information_content":100.0} +UMLS:C1516093 Atypical Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36914 Atypical Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5686","subject_information_content":79.68289625120555,"identifierIndex":0} +UMLS:C0333793 Abnormal hematopoietic cell biolink:Cell skos:exactMatch SNOMEDCT:107677004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5687","identifierIndex":0} +UMLS:C5181479 Spherocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5181479 Spherocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5688"} +CL:0000547 proerythroblast biolink:Cell skos:exactMatch CL:0000547 proerythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5689","subject_information_content":91.94953810872488} +UMLS:C5381002 Cells.CD8.HLA-A2 CMV specific biolink:Cell skos:exactMatch UMLS:C5381002 Cells.CD8.HLA-A2 CMV specific biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5690"} +UMLS:C4086555 M2 Macrophage biolink:Cell skos:exactMatch NCIT:C123783 M2 Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5691","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157554 CD4+CD45RO+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157554 CD4+CD45RO+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5692"} +UMLS:C1513952 Neoplastic Endocrine Chief Cell biolink:Cell skos:exactMatch NCIT:C36938 Neoplastic Endocrine Chief Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5693","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0015161 Eukaryotic Cells biolink:Cell skos:exactMatch UMLS:C0015161 Eukaryotic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5694"} +UMLS:C1721028 Blastocyst Inner Cell Mass biolink:Cell skos:exactMatch MESH:D053624 Blastocyst Inner Cell Mass biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5695","identifierIndex":0} +CL:0002473 MHC-II-high non-classical monocyte biolink:Cell skos:exactMatch CL:0002473 MHC-II-high non-classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5696","subject_information_content":100.0} +UMLS:C4322675 CD8+CD38+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322675 CD8+CD38+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5697"} +CL:1000420 myoepithelial cell of terminal lactiferous duct biolink:Cell skos:exactMatch CL:1000420 myoepithelial cell of terminal lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5698","subject_information_content":100.0} +UMLS:C5419242 Tonogenconcel biolink:Cell skos:exactMatch NCIT:C171656 Tonogenconcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5699","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514058 Neoplastic Plasma Cell biolink:Cell skos:exactMatch NCIT:C37077 Neoplastic Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5700","subject_information_content":83.89907621744979,"identifierIndex":0} +UMLS:C1267993 Lymphocyte positive for CD107A antigen biolink:Cell skos:exactMatch SNOMEDCT:117433008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5701","identifierIndex":0} +UMLS:C2332989 Goblet cell of epithelium of small intestine biolink:Cell skos:exactMatch UMLS:C2332989 Goblet cell of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5702"} +UMLS:C3179110 Feeder Cells biolink:Cell skos:exactMatch MESH:D061252 Feeder Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5703","identifierIndex":0} +UMLS:C5157434 CD3+CD26+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157434 CD3+CD26+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5704"} +CL:0001201 B cell, CD19-positive biolink:Cell skos:exactMatch CL:0001201 B cell, CD19-positive biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5705","subject_information_content":67.35922806537408} +CL:1000849 kidney distal convoluted tubule epithelial cell biolink:Cell skos:exactMatch CL:1000849 kidney distal convoluted tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5706","subject_information_content":100.0} +UMLS:C4301985 Motile spermatozoa biolink:Cell skos:exactMatch SNOMEDCT:723202000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5707","identifierIndex":0} +UMLS:C5186736 Leukocytes other | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186736 Leukocytes other | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5708"} +UMLS:C3827096 Anti-CD19-CAR-CD3zeta-4-1BB-Expressing Allogenic Natural Killer Cells biolink:Cell skos:exactMatch UMLS:C4722559 NKCARCD19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5709","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440272 Cells.CD22+CD11c+ biolink:Cell skos:exactMatch UMLS:C1440272 Cells.CD22+CD11c+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5710"} +CL:1000317 intestinal villus goblet cell biolink:Cell skos:exactMatch CL:1000317 intestinal villus goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5711","subject_information_content":89.84144812560278} +UMLS:C2328196 Sympathetic preganglionic neuron biolink:Cell skos:exactMatch UMLS:C2328196 Sympathetic preganglionic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5712"} +UMLS:C1182625 Epithelial cell of buccal part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182625 Epithelial cell of buccal part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5713"} +UMLS:C1440415 Cells.t(8;21)(q22;q22.3)(RUNX1T1,RUNX1) biolink:Cell skos:exactMatch UMLS:C1440415 Cells.t(8;21)(q22;q22.3)(RUNX1T1,RUNX1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5714"} +UMLS:C1709676 Primitive Skeletal Spindle Cell biolink:Cell skos:exactMatch NCIT:C49171 Primitive Skeletal Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5715","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:1001578 vagina squamous cell biolink:Cell skos:exactMatch CL:1001578 vagina squamous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5716","subject_information_content":100.0} +UMLS:C2331711 Blue cone bipolar cell biolink:Cell skos:exactMatch UMLS:C2331711 Blue cone bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5717"} +UMLS:C5177782 Polymorphonuclear cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177782 Polymorphonuclear cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5718"} +UMLS:C3827096 Anti-CD19-CAR-CD3zeta-4-1BB-Expressing Allogenic Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C112179 Anti-CD19-CAR-CD3zeta-4-1BB-Expressing Allogenic Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5709","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5417890 Autologous CD19 CAR-expressing CD4+/CD8+ T-cells MB-CART19.1 biolink:Cell skos:exactMatch NCIT:C172103 Autologous CD19 CAR-expressing CD4+/CD8+ T-cells MB-CART19.1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5719","subject_information_content":100.0,"identifierIndex":0} +NCIT:C32053 Alveolar Cell biolink:Cell skos:exactMatch NCIT:C32053 Alveolar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5720","subject_information_content":91.94953810872488} +CL:0009048 anorectum macrophage biolink:Cell skos:exactMatch CL:0009048 anorectum macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5721","subject_information_content":100.0} +UMLS:C1518179 Malignant Epithelial Spindle Cell biolink:Cell skos:exactMatch NCIT:C37109 Malignant Epithelial Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5722","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C1516922 Mouse Epididymal Interstitial Cell biolink:Cell skos:exactMatch NCIT:C22171 Mouse Epididymal Interstitial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5723","subject_information_content":100.0,"identifierIndex":0} +CL:2000071 mammary microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000071 mammary microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5724","subject_information_content":100.0} +CL:0002616 perirenal adipocyte cell biolink:Cell skos:exactMatch CL:0002616 perirenal adipocyte cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5725","subject_information_content":100.0} +CL:0002654 epithelial cell of stratum corneum of esophageal epithelium biolink:Cell skos:exactMatch CL:0002654 epithelial cell of stratum corneum of esophageal epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5726","subject_information_content":94.92072406280138} +UMLS:C1517915 Mouse Ito Cell biolink:Cell skos:exactMatch NCIT:C22519 Mouse Ito Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5727","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2952434 Interdigitating dendritic cell of splenic white pulp biolink:Cell skos:exactMatch UMLS:C2952434 Interdigitating dendritic cell of splenic white pulp biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5728"} +UMLS:C1179873 Myocyte of atrioventricular node biolink:Cell skos:exactMatch UMLS:C1179873 Myocyte of atrioventricular node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5729"} +UMLS:C1708886 Malignant Large Germ Cell with Abundant Cytoplasm biolink:Cell skos:exactMatch NCIT:C54127 Malignant Large Germ Cell with Abundant Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5730","subject_information_content":100.0,"identifierIndex":0} +CL:1000616 kidney outer medulla cell biolink:Cell skos:exactMatch CL:1000616 kidney outer medulla cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5731","subject_information_content":81.79098623432766} +UMLS:C1179549 Epithelial cell of esophagus biolink:Cell skos:exactMatch UMLS:C1179549 Epithelial cell of esophagus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5732"} +UMLS:C1708878 Malignant Germ Cell biolink:Cell skos:exactMatch NCIT:C54110 Malignant Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5733","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C3641722 Effector T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C104083 Effector T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5734","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1183898 Epithelial cell of prostatic duct biolink:Cell skos:exactMatch UMLS:C1183898 Epithelial cell of prostatic duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5735"} +CL:0002458 langerin-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002458 langerin-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5736","subject_information_content":100.0} +UMLS:C1513747 Multinucleated Reed-Sternberg Cell biolink:Cell skos:exactMatch NCIT:C36813 Multinucleated Reed-Sternberg Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5737","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522050 Granular Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36840 Granular Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5738","subject_information_content":100.0,"identifierIndex":0} +CL:0000660 glycocalyx secreting cell biolink:Cell skos:exactMatch CL:0000660 glycocalyx secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5739","subject_information_content":100.0} +CL:0000760 type 8 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000760 type 8 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5740","subject_information_content":100.0} +CL:0002448 Ly49H-negative natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002448 Ly49H-negative natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5741","subject_information_content":100.0} +UMLS:C1514221 Poorly Differentiated Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36798 Poorly Differentiated Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5742","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522445 Interdigitating Dendritic Cell biolink:Cell skos:exactMatch NCIT:C38336 Interdigitating Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5743","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1441346 1000 erythrocytes biolink:Cell skos:exactMatch UMLS:C1441346 1000 erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5744"} +UMLS:C4322814 CD45RB+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322814 CD45RB+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5745"} +CL:0008006 muscle founder cell biolink:Cell skos:exactMatch CL:0008006 muscle founder cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5746","subject_information_content":100.0} +CL:0001026 CD34-positive, CD38-positive common myeloid progenitor biolink:Cell skos:exactMatch CL:0001026 CD34-positive, CD38-positive common myeloid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5747","subject_information_content":100.0} +UMLS:C4697025 Cells.CD27+IgD-IgM- biolink:Cell skos:exactMatch UMLS:C4697025 Cells.CD27+IgD-IgM- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5748"} +UMLS:C4512367 Entire glia biolink:Cell skos:exactMatch SNOMEDCT:727123002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5749","identifierIndex":0} +UMLS:C5421800 RAPA-501-Allo biolink:Cell skos:exactMatch UMLS:C5421800 RAPA-501-Allo biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5750"} +UMLS:C0229214 Cone cells of inner nuclear layer biolink:Cell skos:exactMatch UMLS:C0229214 Cone cells of inner nuclear layer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5751"} +CL:0002426 CD11b-positive, CD27-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002426 CD11b-positive, CD27-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5752","subject_information_content":100.0} +UMLS:C1522445 Interdigitating Dendritic Cell biolink:Cell skos:exactMatch SNOMEDCT:24333000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5743","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0545062 P.B. osteoblast biolink:Cell skos:exactMatch UMLS:C0545062 P.B. osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5753"} +CL:0000541 melanoblast biolink:Cell skos:exactMatch CL:0000541 melanoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5754","subject_information_content":100.0} +UMLS:C0333824 Pancake cell biolink:Cell skos:exactMatch SNOMEDCT:28789003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5755","identifierIndex":0} +UMLS:C3830403 Donor Regulatory T-lymphocytes biolink:Cell skos:exactMatch NCIT:C111894 Donor Regulatory T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5756","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157517 CD3-CD16+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157517 CD3-CD16+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5757"} +CL:0000568 amine precursor uptake and decarboxylation cell biolink:Cell skos:exactMatch CL:0000568 amine precursor uptake and decarboxylation cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5758","subject_information_content":75.5821178228195} +CL:0002139 endothelial cell of vascular tree biolink:Cell skos:exactMatch CL:0002139 endothelial cell of vascular tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5759","subject_information_content":70.5028418856209} +UMLS:C1517355 GE09 Cell Line biolink:Cell skos:exactMatch NCIT:C20258 GE09 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5760","subject_information_content":100.0,"identifierIndex":0} +CL:4023010 alpha7 GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023010 alpha7 GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5761","subject_information_content":100.0} +CL:0005007 Kolmer-Agduhr neuron biolink:Cell skos:exactMatch CL:0005007 Kolmer-Agduhr neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5762","subject_information_content":100.0} +UMLS:C5157308 CD14 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157308 CD14 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5763"} +CL:0002514 Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell biolink:Cell skos:exactMatch CL:0002514 Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5764","subject_information_content":100.0} +CL:0002670 type 1 otic fibrocyte biolink:Cell skos:exactMatch CL:0002670 type 1 otic fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5765","subject_information_content":100.0} +UMLS:C1441339 100 blasts biolink:Cell skos:exactMatch UMLS:C1441339 100 blasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5766"} +UMLS:C1519122 SA03 biolink:Cell skos:exactMatch NCIT:C20266 SA03 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5767","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1710537 Undifferentiated Neoplastic Blast biolink:Cell skos:exactMatch NCIT:C42873 Undifferentiated Neoplastic Blast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5768","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171673 Lymphocytes clefted | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171673 Lymphocytes clefted | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5769"} +UMLS:C1440367 Cells.CD90 biolink:Cell skos:exactMatch UMLS:C1440367 Cells.CD90 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5770"} +UMLS:C1514043 Neoplastic Neural Crest Cell biolink:Cell skos:exactMatch NCIT:C37148 Neoplastic Neural Crest Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5771","subject_information_content":100.0,"identifierIndex":0} +CL:0000412 polyploid cell biolink:Cell skos:exactMatch CL:0000412 polyploid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5772","subject_information_content":84.76217218840416} +CL:0000860 classical monocyte biolink:Cell skos:exactMatch CL:0000860 classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5773","subject_information_content":86.87026217152628} +UMLS:C2322975 Radial astrocyte biolink:Cell skos:exactMatch UMLS:C2322975 Radial astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5774"} +UMLS:C1512035 Dopaminergic Neurons biolink:Cell skos:exactMatch UMLS:C1512035 Dopaminergic Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5775"} +UMLS:C1514272 Postgerminal Center B-Lymphocyte of Unknown Differentiation Stage biolink:Cell skos:exactMatch NCIT:C38341 Postgerminal Center B-Lymphocyte of Unknown Differentiation Stage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5776","subject_information_content":100.0,"identifierIndex":0} +CL:4028002 alveolar capillary type 1 endothelial cell biolink:Cell skos:exactMatch CL:4028002 alveolar capillary type 1 endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5777"} +UMLS:C1956385 Plasmacytoid Dendritic Cells biolink:Cell skos:exactMatch NCIT:C45236 Plasmacytoid Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5778","subject_information_content":100.0,"identifierIndex":0} +CL:0002335 brown preadipocyte biolink:Cell skos:exactMatch CL:0002335 brown preadipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5779","subject_information_content":100.0} +CL:1000838 kidney proximal convoluted tubule epithelial cell biolink:Cell skos:exactMatch CL:1000838 kidney proximal convoluted tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5780","subject_information_content":100.0} +CL:0000758 type 6 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000758 type 6 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5781","subject_information_content":100.0} +UMLS:C0333800 Blister cell biolink:Cell skos:exactMatch SNOMEDCT:81140002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5782","identifierIndex":0} +UMLS:C5382754 CD21lowCD38- cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382754 CD21lowCD38- cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5783"} +UMLS:C1518219 Malignant Neuroendocrine Fusiform Small Cell biolink:Cell skos:exactMatch NCIT:C36720 Malignant Neuroendocrine Fusiform Small Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5784","subject_information_content":100.0,"identifierIndex":0} +CL:0000149 visual pigment cell biolink:Cell skos:exactMatch CL:0000149 visual pigment cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5785","subject_information_content":85.74066969721673} +CL:0000536 secondary motor neuron biolink:Cell skos:exactMatch CL:0000536 secondary motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5786","subject_information_content":100.0} +UMLS:C5420606 MAGE-A1-specific T Cell Receptor-transduced Autologous T-cells biolink:Cell skos:exactMatch NCIT:C174139 MAGE-A1-specific T Cell Receptor-transduced Autologous T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5787","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2737142 Monocytes.CD59 biolink:Cell skos:exactMatch UMLS:C2737142 Monocytes.CD59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5788"} +CL:0000974 long lived plasma cell biolink:Cell skos:exactMatch CL:0000974 long lived plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5789","subject_information_content":88.2062864997332} +UMLS:C4696702 Cells.CD19+CD21- biolink:Cell skos:exactMatch UMLS:C4696702 Cells.CD19+CD21- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5790"} +UMLS:C1525454 Cells.CD2+CD3+ biolink:Cell skos:exactMatch UMLS:C1525454 Cells.CD2+CD3+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5791"} +UMLS:C1708917 Malignant Spindle-Shaped Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C49126 Malignant Spindle-Shaped Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5792","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1720858 Adipocytes, White biolink:Cell skos:exactMatch MESH:D052438 Adipocytes, White biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5793","identifierIndex":0} +UMLS:C4684462 Autologous CD4 and CD8 Positive Truncated CD19-expressing Antigen Presenting T-cells biolink:Cell skos:exactMatch NCIT:C142205 Autologous CD4 and CD8 Positive Truncated CD19-expressing Antigen Presenting T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5794","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0025201 melanocyte biolink:Cell skos:exactMatch NCIT:C12591 Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5795","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2339194 Supporting cell biolink:Cell skos:exactMatch UMLS:C2339194 Supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5796"} +CL:1000300 fibroblast of outer membrane of prostatic capsule biolink:Cell skos:exactMatch CL:1000300 fibroblast of outer membrane of prostatic capsule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5797","subject_information_content":100.0} +UMLS:C2333121 Enterocyte of epithelium of intestinal villus biolink:Cell skos:exactMatch UMLS:C2333121 Enterocyte of epithelium of intestinal villus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5798"} +UMLS:C3496149 A17 dopamine cells biolink:Cell skos:exactMatch UMLS:C3496149 A17 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5799"} +CL:1000716 kidney outer medulla collecting duct principal cell biolink:Cell skos:exactMatch CL:1000716 kidney outer medulla collecting duct principal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5800","subject_information_content":100.0} +UMLS:C0229606 Reticulum cell biolink:Cell skos:exactMatch NCIT:C13057 Fibroblastic Reticular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5801","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157513 CD38+CD138+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157513 CD38+CD138+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5802"} +UMLS:C5177622 Platelets | Plasma | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177622 Platelets | Plasma | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5803"} +CL:0002469 MHC-II-negative classical monocyte biolink:Cell skos:exactMatch CL:0002469 MHC-II-negative classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5804","subject_information_content":94.92072406280138} +UMLS:C0025201 melanocyte biolink:Cell skos:exactMatch MESH:D008544 Melanocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5795","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1706985 Bone Marrow Stem Cell with Potential for Megakaryocytic and Erythroid Differentiation biolink:Cell skos:exactMatch NCIT:C43225 Bone Marrow Stem Cell with Potential for Megakaryocytic and Erythroid Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5805","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4246476 Ectomesenchymal cell biolink:Cell skos:exactMatch UMLS:C4246476 Ectomesenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5806"} +UMLS:C5184395 Unidentified cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184395 Unidentified cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5807"} +UMLS:C2334115 Set of Ch2 cholinergic cells biolink:Cell skos:exactMatch UMLS:C2334115 Set of Ch2 cholinergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5808"} +UMLS:C5163542 Epithelial cells | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163542 Epithelial cells | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5809"} +UMLS:C0229606 Reticulum cell biolink:Cell skos:exactMatch SNOMEDCT:37510001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5801","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:0002016 CD71-low, GlyA-positive polychromatic erythroblast biolink:Cell skos:exactMatch CL:0002016 CD71-low, GlyA-positive polychromatic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5810","subject_information_content":100.0} +UMLS:C0333857 Large non-cleaved cell biolink:Cell skos:exactMatch SNOMEDCT:55134005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5811","identifierIndex":0} +CL:0000217 insulating cell biolink:Cell skos:exactMatch CL:0000217 insulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5812","subject_information_content":94.92072406280138} +UMLS:C0025201 melanocyte biolink:Cell skos:exactMatch SNOMEDCT:9683001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5795","subject_information_content":100.0,"identifierIndex":2} +CL:0002259 neuroepithelial stem cell biolink:Cell skos:exactMatch CL:0002259 neuroepithelial stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5813","subject_information_content":100.0} +UMLS:C2339863 Transitional myocyte of atrioventricular node biolink:Cell skos:exactMatch UMLS:C2339863 Transitional myocyte of atrioventricular node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5814"} +UMLS:C1512548 Hyperchromatic Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37089 Hyperchromatic Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5815","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2334698 Transitional myocyte of internodal tract biolink:Cell skos:exactMatch UMLS:C2334698 Transitional myocyte of internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5816"} +MESH:D032389 Myocytes, Smooth Muscle biolink:Cell skos:exactMatch MESH:D032389 Myocytes, Smooth Muscle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5817"} +UMLS:C0683198 spermatosome biolink:Cell skos:exactMatch UMLS:C0683198 spermatosome biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5818"} +UMLS:C0682540 spindle cell biolink:Cell skos:exactMatch UMLS:C0682540 spindle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5819"} +CL:0002177 folliculostellate cell of pars distalis of adenohypophysis biolink:Cell skos:exactMatch CL:0002177 folliculostellate cell of pars distalis of adenohypophysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5820","subject_information_content":100.0} +UMLS:C1277067 Entire corneal corpuscle biolink:Cell skos:exactMatch SNOMEDCT:368826000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5821","identifierIndex":0} +UMLS:C4510922 Blast cell positive for CD1a antigen biolink:Cell skos:exactMatch SNOMEDCT:725176008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5822","identifierIndex":0} +UMLS:C1267994 Lymphocyte positive for CD107B antigen biolink:Cell skos:exactMatch SNOMEDCT:117434002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5823","identifierIndex":0} +UMLS:C1267910 Lymphocyte positive for CD34 antigen biolink:Cell skos:exactMatch SNOMEDCT:116733003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5824","identifierIndex":0} +UMLS:C1440144 Blasts.CD2 biolink:Cell skos:exactMatch UMLS:C1440144 Blasts.CD2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5825"} +CL:0015000 cranial motor neuron biolink:Cell skos:exactMatch CL:0015000 cranial motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5826","subject_information_content":89.84144812560278} +CL:0002390 uninucleate blastconidium biolink:Cell skos:exactMatch CL:0002390 uninucleate blastconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5827","subject_information_content":100.0} +UMLS:C1267835 Lymphocyte positive for both CD3 antigen and HLA-DR antigen biolink:Cell skos:exactMatch SNOMEDCT:117525009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5828","identifierIndex":0} +UMLS:C1267963 Lymphocyte positive for CD68 antigen biolink:Cell skos:exactMatch SNOMEDCT:117404007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5829","identifierIndex":0} +UMLS:C1513174 Metaplastic Hurthle Cell biolink:Cell skos:exactMatch NCIT:C36875 Metaplastic Hurthle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5830","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979779 Other cells biolink:Cell skos:exactMatch UMLS:C1979779 Other cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5831"} +UMLS:C5421200 Prademagene Zamikeracel biolink:Cell skos:exactMatch NCIT:C175196 Prademagene Zamikeracel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5832","subject_information_content":100.0,"identifierIndex":0} +CL:0000562 nucleate erythrocyte biolink:Cell skos:exactMatch CL:0000562 nucleate erythrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5833","subject_information_content":100.0} +CL:1000282 smooth muscle fiber of ascending colon biolink:Cell skos:exactMatch CL:1000282 smooth muscle fiber of ascending colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5834","subject_information_content":100.0} +UMLS:C5446599 Autologous CD19 CAR-expressing T-cells YTB323 biolink:Cell skos:exactMatch NCIT:C175534 Autologous CD19 CAR-expressing T-cells YTB323 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5835","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440368 Cells.CD91 biolink:Cell skos:exactMatch UMLS:C1440368 Cells.CD91 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5836"} +UMLS:C5419314 Elivaldogene Autotemcel biolink:Cell skos:exactMatch NCIT:C171808 Elivaldogene Autotemcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5837","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3273371 CD4 Positive Memory T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C97349 CD4 Positive Memory T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5838","subject_information_content":100.0,"identifierIndex":0} +CL:1001581 lateral ventricle glial cell biolink:Cell skos:exactMatch CL:1001581 lateral ventricle glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5839","subject_information_content":100.0} +CL:0000608 zygospore biolink:Cell skos:exactMatch CL:0000608 zygospore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5840","subject_information_content":100.0} +UMLS:C5154301 Band form neutrophils | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154301 Band form neutrophils | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5841"} +UMLS:C4511887 Population of all epithelial cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726504009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5842","identifierIndex":0} +UMLS:C0225700 Type-II Pneumocytes biolink:Cell skos:exactMatch NCIT:C32055 Alveolar Cell Type II biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5843","subject_information_content":100.0,"identifierIndex":0} +CL:4023006 static nuclear bag fiber biolink:Cell skos:exactMatch CL:4023006 static nuclear bag fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5845","subject_information_content":100.0} +UMLS:C0524983 Gastrin-Secreting Cells biolink:Cell skos:exactMatch NCIT:C12577 G-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5846","subject_information_content":100.0,"identifierIndex":0} +CL:0000705 R6 photoreceptor cell biolink:Cell skos:exactMatch CL:0000705 R6 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5847","subject_information_content":100.0} +CL:0008003 somatic muscle myotube biolink:Cell skos:exactMatch CL:0008003 somatic muscle myotube biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5848","subject_information_content":94.92072406280138} +UMLS:C1441344 100 lymphocytes.small biolink:Cell skos:exactMatch UMLS:C1441344 100 lymphocytes.small biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5844"} +UMLS:C1955382 Spermatozoa.immature biolink:Cell skos:exactMatch UMLS:C1955382 Spermatozoa.immature biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5849"} +UMLS:C2350150 Pronormoblasts biolink:Cell skos:exactMatch UMLS:C2350150 Pronormoblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5850"} +UMLS:C4727630 Ciltacabtagene Autoleucel biolink:Cell skos:exactMatch NCIT:C148498 Ciltacabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5851","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0043291 X-Chromosome-Bearing Sperm biolink:Cell skos:exactMatch UMLS:C0043291 X-Chromosome-Bearing Sperm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5852"} +UMLS:C0225700 Type-II Pneumocytes biolink:Cell skos:exactMatch SNOMEDCT:52782001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5843","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1522059 Balloon Nevus Cell biolink:Cell skos:exactMatch NCIT:C36863 Balloon Nevus Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5853","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0524983 Gastrin-Secreting Cells biolink:Cell skos:exactMatch MESH:D019863 Gastrin-Secreting Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5846","subject_information_content":100.0,"identifierIndex":1} +UMLS:C0229588 Entire parathyroid wasserhelle cell biolink:Cell skos:exactMatch SNOMEDCT:88360009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5854","identifierIndex":0} +UMLS:C4725791 Allogeneic T-lymphocytes Expressing NY-ESO-1-C259-specific TCR biolink:Cell skos:exactMatch NCIT:C150511 Allogeneic T-lymphocytes Expressing NY-ESO-1-C259-specific TCR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5855","subject_information_content":100.0,"identifierIndex":0} +CL:0011011 intermediate mesodermal cell biolink:Cell skos:exactMatch CL:0011011 intermediate mesodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5856","subject_information_content":100.0} +UMLS:C1648295 Cells.CD13+CD56+ biolink:Cell skos:exactMatch UMLS:C1648295 Cells.CD13+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5857"} +UMLS:C2340307 Pterygopalatine ganglion neuron biolink:Cell skos:exactMatch UMLS:C2340307 Pterygopalatine ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5858"} +CL:0000032 neuroplacodal cell biolink:Cell skos:exactMatch CL:0000032 neuroplacodal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5859","subject_information_content":100.0} +UMLS:C1276265 Bite cell (cell) biolink:Cell skos:exactMatch SNOMEDCT:111013009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5860","identifierIndex":0} +UMLS:C1518994 Peripheral B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38330 Peripheral B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5861","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1267811 Lymphocyte positive for CD1A antigen biolink:Cell skos:exactMatch SNOMEDCT:117514000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5862","identifierIndex":0} +UMLS:C2337234 Suppressor enhancer T lymphocyte biolink:Cell skos:exactMatch UMLS:C2337234 Suppressor enhancer T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5863"} +UMLS:C1513990 Neoplastic Immunoblast-Like B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38657 Neoplastic Immunoblast-Like B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5864","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515314 Mouse Leydig Cell biolink:Cell skos:exactMatch NCIT:C22181 Mouse Leydig Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5865","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4511822 Population of all spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726440009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5866","identifierIndex":0} +UMLS:C0229215 Horizontal cells of retina biolink:Cell skos:exactMatch SNOMEDCT:29729006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5867","identifierIndex":0} +UMLS:C5206457 Engineered Human Umbilical Vein Endothelial Cells AB-205 biolink:Cell skos:exactMatch NCIT:C162248 Engineered Human Umbilical Vein Endothelial Cells AB-205 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5868","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0521391 Central motor neuron biolink:Cell skos:exactMatch SNOMEDCT:61548005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5869","identifierIndex":0} +CL:0002366 myometrial cell biolink:Cell skos:exactMatch CL:0002366 myometrial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5870","subject_information_content":100.0} +CL:0002000 Kit-positive erythroid progenitor cell biolink:Cell skos:exactMatch CL:0002000 Kit-positive erythroid progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5871","subject_information_content":100.0} +UMLS:C1267930 Lymphocyte positive for CD45RA antigen biolink:Cell skos:exactMatch SNOMEDCT:117373003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5872","identifierIndex":0} +CL:1000085 stratified non keratinized epithelial stem cell biolink:Cell skos:exactMatch CL:1000085 stratified non keratinized epithelial stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5873","subject_information_content":100.0} +UMLS:C5177453 Plasma cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177453 Plasma cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5874"} +UMLS:C5216314 Prolymphocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216314 Prolymphocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5875"} +CL:0009007 gastrointestinal tract (lamina propria) macrophage of small intestine biolink:Cell skos:exactMatch CL:0009007 gastrointestinal tract (lamina propria) macrophage of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5876","subject_information_content":100.0} +UMLS:C2953150 Type D enteroendocrine cell of epithelium of principal gastric gland biolink:Cell skos:exactMatch UMLS:C2953150 Type D enteroendocrine cell of epithelium of principal gastric gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5877"} +CL:0008049 Betz cell biolink:Cell skos:exactMatch CL:0008049 Betz cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5878","subject_information_content":91.94953810872488} +CL:0000057 fibroblast biolink:Cell skos:exactMatch CL:0000057 fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5879","subject_information_content":68.97311871489742} +UMLS:C5220576 Epithelial cells.squamous|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220576 Epithelial cells.squamous|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5880"} +CL:1000380 type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell skos:exactMatch CL:1000380 type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5881","subject_information_content":100.0} +UMLS:C1182647 Non-pigmented ciliary epithelial cell biolink:Cell skos:exactMatch UMLS:C1182647 Non-pigmented ciliary epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5882"} +UMLS:C4322737 CD1+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322737 CD1+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5883"} +CL:0000601 cochlear outer hair cell biolink:Cell skos:exactMatch CL:0000601 cochlear outer hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5884","subject_information_content":100.0} +UMLS:C5183792 Transitional cells | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5183792 Transitional cells | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5885"} +UMLS:C4764048 Anti-FL(FITC-E2) CAR T Cells biolink:Cell skos:exactMatch NCIT:C158099 Anti-FL(FITC-E2) CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5886","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3534455 Anucleated bodies biolink:Cell skos:exactMatch UMLS:C3534455 Anucleated bodies biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5887"} +UMLS:C1514022 Neoplastic Melanocyte biolink:Cell skos:exactMatch NCIT:C36862 Neoplastic Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5888","subject_information_content":75.32497402808036,"identifierIndex":0} +UMLS:C1440260 Cells.CD16b biolink:Cell skos:exactMatch UMLS:C1440260 Cells.CD16b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5889"} +UMLS:C0229629 Polychromatophilic erythroblast biolink:Cell skos:exactMatch NCIT:C13131 Polychromatic Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5890","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229629 Polychromatophilic erythroblast biolink:Cell skos:exactMatch SNOMEDCT:16779009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5890","subject_information_content":100.0,"identifierIndex":1} +MESH:D052683 Somatotrophs biolink:Cell skos:exactMatch MESH:D052683 Somatotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5891"} +CL:1001608 foreskin fibroblast biolink:Cell skos:exactMatch CL:1001608 foreskin fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5892","subject_information_content":100.0} +CL:0002294 type-1 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002294 type-1 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5893","subject_information_content":100.0} +UMLS:C1441374 Cells.C4 biolink:Cell skos:exactMatch UMLS:C1441374 Cells.C4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5894"} +CL:0008030 excitatory neuron biolink:Cell skos:exactMatch CL:0008030 excitatory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5895","subject_information_content":79.68289625120555} +UMLS:C2335330 Set of cholinergic cells of accumbens nucleus [Ch2] biolink:Cell skos:exactMatch UMLS:C2335330 Set of cholinergic cells of accumbens nucleus [Ch2] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5896"} +UMLS:C0227599 Transitional epithelial cell of urinary bladder biolink:Cell skos:exactMatch UMLS:C0227599 Transitional epithelial cell of urinary bladder biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5897"} +CL:0000982 IgG plasmablast biolink:Cell skos:exactMatch CL:0000982 IgG plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5898","subject_information_content":100.0} +CL:0019017 lymphatic vessel smooth muscle cell biolink:Cell skos:exactMatch CL:0019017 lymphatic vessel smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5899","subject_information_content":100.0} +UMLS:C4521448 Derived Peripheral Blood Mononuclear Cell biolink:Cell skos:exactMatch NCIT:C138972 Derived Peripheral Blood Mononuclear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5900","subject_information_content":100.0,"identifierIndex":0} +CL:0000592 large luteal cell biolink:Cell skos:exactMatch CL:0000592 large luteal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5901","subject_information_content":100.0} +CL:0008038 alpha motor neuron biolink:Cell skos:exactMatch CL:0008038 alpha motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5902","subject_information_content":100.0} +CL:0002071 enterocyte of epithelium of large intestine biolink:Cell skos:exactMatch CL:0002071 enterocyte of epithelium of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5903","subject_information_content":91.94953810872488} +CL:0002322 embryonic stem cell biolink:Cell skos:exactMatch CL:0002322 embryonic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5904","subject_information_content":100.0} +UMLS:C2950850 Type D cell of small intestine biolink:Cell skos:exactMatch UMLS:C2950850 Type D cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5905"} +UMLS:C5421028 Tebrocabtagene Autoleucel biolink:Cell skos:exactMatch NCIT:C174931 Tebrocabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5906","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518180 Malignant Epithelioid Cell biolink:Cell skos:exactMatch NCIT:C41435 Malignant Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5907","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1517659 Keratinizing Malignant Squamous Cell biolink:Cell skos:exactMatch NCIT:C36791 Keratinizing Malignant Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5908","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1710528 Umbilical Cord Blood Stem Cell biolink:Cell skos:exactMatch NCIT:C43424 Umbilical Cord Blood Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5909","subject_information_content":100.0,"identifierIndex":0} +CL:4023115 type 1 spiral ganglion neuron biolink:Cell skos:exactMatch CL:4023115 type 1 spiral ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5910"} +CL:0000473 defensive cell biolink:Cell skos:exactMatch CL:0000473 defensive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5911","subject_information_content":66.10891051776997} +UMLS:C0369668 Microcytic erythrocyte (cell) biolink:Cell skos:exactMatch NCIT:C37034 Microcytic Red Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5912","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512478 Hodgkin Cell biolink:Cell skos:exactMatch NCIT:C37021 Hodgkin Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5913","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709173 Neoplastic Epithelioid Neuroendocrine Cell biolink:Cell skos:exactMatch NCIT:C48593 Neoplastic Epithelioid Neuroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5914","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170472 Large unstained cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170472 Large unstained cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5915"} +CL:0000870 Peyer's patch macrophage biolink:Cell skos:exactMatch CL:0000870 Peyer's patch macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5916","subject_information_content":100.0} +UMLS:C3827013 AdGMCAIX-transduced Autologous Dendritic Cells biolink:Cell skos:exactMatch NCIT:C105809 AdGMCAIX-transduced Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5917","subject_information_content":100.0,"identifierIndex":0} +CL:0002015 Kit-negative, Ly-76 high polychromatophilic erythroblast biolink:Cell skos:exactMatch CL:0002015 Kit-negative, Ly-76 high polychromatophilic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5918","subject_information_content":100.0} +CL:0002103 IgG-positive double negative memory B cell biolink:Cell skos:exactMatch CL:0002103 IgG-positive double negative memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5919","subject_information_content":100.0} +CL:0000180 estradiol secreting cell biolink:Cell skos:exactMatch CL:0000180 estradiol secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5920","subject_information_content":100.0} +UMLS:C0369668 Microcytic erythrocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:397022008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5912","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5157598 CD5+CD20+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157598 CD5+CD20+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5921"} +UMLS:C4727680 Expanded Cord Blood Stem Cells Mixed with Engineered Human Endothelial Cells AB-110 biolink:Cell skos:exactMatch NCIT:C150135 Expanded Cord Blood Stem Cells Mixed with Engineered Human Endothelial Cells AB-110 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5922","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514979 Strap-Like Skeletal Muscle Cell biolink:Cell skos:exactMatch NCIT:C36948 Strap-Like Skeletal Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5923","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733590 high efficiency killing T cells biolink:Cell skos:exactMatch UMLS:C4733590 high efficiency killing T cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5924"} +CL:1000699 kidney resident dendritic cell biolink:Cell skos:exactMatch CL:1000699 kidney resident dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5925","subject_information_content":100.0} +UMLS:C1507327 Cells.FLAER biolink:Cell skos:exactMatch UMLS:C1507327 Cells.FLAER biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5926"} +UMLS:C5163730 Erythrocytes | Vaginal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163730 Erythrocytes | Vaginal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5927"} +CL:0002624 paneth cell of the appendix biolink:Cell skos:exactMatch CL:0002624 paneth cell of the appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5928","subject_information_content":100.0} +CL:0001012 CD7-negative lymphoid progenitor OR granulocyte monocyte progenitor biolink:Cell skos:exactMatch CL:0001012 CD7-negative lymphoid progenitor OR granulocyte monocyte progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5929","subject_information_content":88.2062864997332} +UMLS:C1440252 Cells.CD122 biolink:Cell skos:exactMatch UMLS:C1440252 Cells.CD122 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5930"} +UMLS:C2325187 Lens epithelial cell biolink:Cell skos:exactMatch UMLS:C2325187 Lens epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5931"} +CL:0000842 mononuclear cell biolink:Cell skos:exactMatch CL:0000842 mononuclear cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5932","subject_information_content":55.950358643372745} +CL:0000897 CD4-positive, alpha-beta memory T cell biolink:Cell skos:exactMatch CL:0000897 CD4-positive, alpha-beta memory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5933","subject_information_content":85.74066969721673} +CL:0000324 metanephric mesenchyme stem cell biolink:Cell skos:exactMatch CL:0000324 metanephric mesenchyme stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5934","subject_information_content":100.0} +UMLS:C5216322 Unidentified cells|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216322 Unidentified cells|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5935"} +UMLS:C1882043 Neoplastic Apocrine Cell biolink:Cell skos:exactMatch NCIT:C62494 Neoplastic Apocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5936","subject_information_content":88.2062864997332,"identifierIndex":0} +CL:0000560 band form neutrophil biolink:Cell skos:exactMatch CL:0000560 band form neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5937","subject_information_content":100.0} +UMLS:C1258005 HCT116 Cells biolink:Cell skos:exactMatch MESH:D045325 HCT116 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5938","identifierIndex":0} +UMLS:C5171961 Malignant cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171961 Malignant cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5939"} +UMLS:C1513936 Neoplastic Cerebriform T-Prolymphocyte biolink:Cell skos:exactMatch NCIT:C39572 Neoplastic Cerebriform T-Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5940","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708248 Gonadotrophs biolink:Cell skos:exactMatch NCIT:C32691 Gonadotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5941","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000247 Rohon-Beard neuron biolink:Cell skos:exactMatch CL:0000247 Rohon-Beard neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5942","subject_information_content":100.0} +UMLS:C1518066 Lymphocyte with Abundant Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C37028 Lymphocyte with Abundant Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5943","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157924 Cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5157924 Cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5944"} +UMLS:C3282453 human cord blood hematopoietic progenitor cell biolink:Cell skos:exactMatch UMLS:C3282453 human cord blood hematopoietic progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5945"} +UMLS:C1516958 Mouse Erythroblast biolink:Cell skos:exactMatch NCIT:C22565 Mouse Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5946","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515214 Tara ES Cell Line biolink:Cell skos:exactMatch NCIT:C20280 Tara ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5947","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1879553 Adenocarcinoma Cell with Abundant Finely Vacuolated Cytoplasm biolink:Cell skos:exactMatch NCIT:C54718 Adenocarcinoma Cell with Abundant Finely Vacuolated Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5948","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1515965 Anaplastic Large B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C37015 Anaplastic Large B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5949","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3272995 Lymphoma TAA-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C96736 Lymphoma TAA-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5950","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513927 Neoplastic B-Immunoblast biolink:Cell skos:exactMatch NCIT:C37010 Neoplastic B-Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5951","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1440310 Cells.CD42c biolink:Cell skos:exactMatch UMLS:C1440310 Cells.CD42c biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5952"} +UMLS:C4733629 Autologous Cervical Cancer-specific Engineered Immune Effector Cells biolink:Cell skos:exactMatch NCIT:C155657 Autologous Cervical Cancer-specific Engineered Immune Effector Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5953","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514165 Pleomorphic Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C37171 Pleomorphic Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5954","subject_information_content":100.0,"identifierIndex":0} +CL:0002012 Kit-low proerythroblast biolink:Cell skos:exactMatch CL:0002012 Kit-low proerythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5955","subject_information_content":100.0} +CL:0000830 basophilic promyelocyte biolink:Cell skos:exactMatch CL:0000830 basophilic promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5956","subject_information_content":100.0} +CL:0002593 smooth muscle cell of the internal thoracic artery biolink:Cell skos:exactMatch CL:0002593 smooth muscle cell of the internal thoracic artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5957","subject_information_content":100.0} +UMLS:C1514024 Neoplastic Merkel Cell biolink:Cell skos:exactMatch NCIT:C37098 Neoplastic Merkel Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5958","subject_information_content":100.0,"identifierIndex":0} +CL:0009051 T cell of anorectum biolink:Cell skos:exactMatch CL:0009051 T cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5959","subject_information_content":100.0} +UMLS:C5157465 CD3+HLA-DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157465 CD3+HLA-DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5960"} +UMLS:C5171676 Lymphocytes Plasmacytoid | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171676 Lymphocytes Plasmacytoid | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5961"} +UMLS:C1440420 Cells.t(X;18)(q11.2;p11.22)(SS18,SSX2) biolink:Cell skos:exactMatch UMLS:C1440420 Cells.t(X;18)(q11.2;p11.22)(SS18,SSX2) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5962"} +UMLS:C1180271 Myoepithelial cell of lactiferous alveolus biolink:Cell skos:exactMatch UMLS:C1180271 Myoepithelial cell of lactiferous alveolus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5963"} +UMLS:C2346935 Malignant Giant Osteoblast biolink:Cell skos:exactMatch NCIT:C67524 Malignant Giant Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5964","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5175605 Other cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175605 Other cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5965"} +UMLS:C1880955 Giant Melanoma Cell biolink:Cell skos:exactMatch NCIT:C62346 Giant Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5966","subject_information_content":100.0,"identifierIndex":0} +CL:0009020 tuft cell of appendix biolink:Cell skos:exactMatch CL:0009020 tuft cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5967","subject_information_content":100.0} +CL:0002315 supporting cell of cochlea biolink:Cell skos:exactMatch CL:0002315 supporting cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5968","subject_information_content":81.20444558259193} +UMLS:C5216194 Basophils|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216194 Basophils|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5969"} +UMLS:C1545463 CD3+CD56+ cells biolink:Cell skos:exactMatch UMLS:C1545463 CD3+CD56+ cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5970"} +CL:0000089 male germ line stem cell (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000089 male germ line stem cell (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5971","subject_information_content":100.0} +CL:0001065 innate lymphoid cell biolink:Cell skos:exactMatch CL:0001065 innate lymphoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5972","subject_information_content":71.94430466897393} +UMLS:C5157287 CD126 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157287 CD126 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5973"} +UMLS:C4727097 Autologous TCR-engineered T-cells IMA202 biolink:Cell skos:exactMatch NCIT:C153218 Autologous TCR-engineered T-cells IMA202 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5974","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5400079 Adult human mesenchymal stem cells biolink:Cell skos:exactMatch NCIT:C67082 Remestemcel-L biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5975","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170926 Leukocytes | Dialysis fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170926 Leukocytes | Dialysis fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5976"} +UMLS:C5392346 KTE-X19 biolink:Cell skos:exactMatch MESH:C000705347 brexucabtagene autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5977","identifierIndex":0} +UMLS:C2323694 Dense-core granulated cell of epithelium of trachea biolink:Cell skos:exactMatch UMLS:C2323694 Dense-core granulated cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5978"} +UMLS:C5174617 Neutrophils | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174617 Neutrophils | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5979"} +UMLS:C1440297 Cells.CD33+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C1440297 Cells.CD33+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5980"} +CL:0002147 clear chief cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002147 clear chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5981","subject_information_content":100.0} +UMLS:C0230518 Mitotic cell biolink:Cell skos:exactMatch SNOMEDCT:75167008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5982","identifierIndex":0} +UMLS:C5216317 Promyelocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216317 Promyelocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5983"} +UMLS:C1267904 Lymphocyte positive for CD31 antigen biolink:Cell skos:exactMatch SNOMEDCT:117575006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5984","identifierIndex":0} +CL:0001078 group 3 innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001078 group 3 innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5985","subject_information_content":91.94953810872488} +UMLS:C1513963 Neoplastic Epithelioid Cell biolink:Cell skos:exactMatch NCIT:C37104 Neoplastic Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5986","subject_information_content":83.89907621744979,"identifierIndex":0} +UMLS:C4522300 CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes biolink:Cell skos:exactMatch NCIT:C133073 CD19CAR-CD28-CD3zeta-EGFRt-expressing Tn/mem-enriched T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5987","subject_information_content":100.0,"identifierIndex":0} +CL:0000930 CD4-negative, CD8-negative type I NK T cell secreting interleukin-4 biolink:Cell skos:exactMatch CL:0000930 CD4-negative, CD8-negative type I NK T cell secreting interleukin-4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5988","subject_information_content":100.0} +UMLS:C5380991 Cells.CD8.HLA-A1 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5380991 Cells.CD8.HLA-A1 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5989"} +UMLS:C0546497 P.B. plasmoblast biolink:Cell skos:exactMatch UMLS:C0546497 P.B. plasmoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5990"} +CL:0010007 His-Purkinje system cell biolink:Cell skos:exactMatch CL:0010007 His-Purkinje system cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5991","subject_information_content":81.79098623432766} +UMLS:C5418038 Allogeneic Anti-CD19 Universal CAR-T Cells CTA101 biolink:Cell skos:exactMatch NCIT:C173959 Allogeneic Anti-CD19 Universal CAR-T Cells CTA101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5992","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3652635 technetium (99mTc) stannous agent labelled cells biolink:Cell skos:exactMatch UMLS:C3652635 technetium (99mTc) stannous agent labelled cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5993"} +UMLS:C5175160 Nucleated erythrocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175160 Nucleated erythrocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5994"} +UMLS:C4037921 Cells.CD8+CD3- biolink:Cell skos:exactMatch UMLS:C4037921 Cells.CD8+CD3- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5995"} +UMLS:C1254548 Polychromatocyte biolink:Cell skos:exactMatch UMLS:C1254548 Polychromatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5996"} +UMLS:C4724868 Autologous EGFRt/BCMA-41BBz-targeted CAR T Cells biolink:Cell skos:exactMatch NCIT:C148168 Autologous EGFRt/BCMA-41BBz-targeted CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5997","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157266 CD11a blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157266 CD11a blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5998"} +CL:4023075 L6 tyrosine hydroxylase positive sst expressing GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023075 L6 tyrosine hydroxylase positive sst expressing GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#5999"} +UMLS:C0882833 CD3+CD4+ cell biolink:Cell skos:exactMatch SNOMEDCT:732279009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6000","identifierIndex":0} +UMLS:C5427578 Rods.left biolink:Cell skos:exactMatch UMLS:C5427578 Rods.left biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6001"} +UMLS:C5157472 CD3+TCR alpha beta+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157472 CD3+TCR alpha beta+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6002"} +UMLS:C1267889 Lymphoblast positive for CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:117565008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6003","identifierIndex":0} +UMLS:C1440414 Cells.t(8;14)(q24;q32)(MYC,IGH) biolink:Cell skos:exactMatch UMLS:C1440414 Cells.t(8;14)(q24;q32)(MYC,IGH) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6004"} +UMLS:C2347368 Nucleated Blood Cell biolink:Cell skos:exactMatch NCIT:C73126 Nucleated Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6005","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0242632 T-helper cell type 1 biolink:Cell skos:exactMatch NCIT:C12539 Type 1 Helper Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6006","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3640224 Allogeneic Adenovirus-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C101796 Allogeneic Adenovirus-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6007","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516515 Chromophobe cell biolink:Cell skos:exactMatch NCIT:C32313 Chromophobe Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6008","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216206 Erythrocytes.nucleated|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216206 Erythrocytes.nucleated|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6009"} +UMLS:C2325226 Transitional myocyte of interventricular septum biolink:Cell skos:exactMatch UMLS:C2325226 Transitional myocyte of interventricular septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6010"} +UMLS:C5157627 CD59 Monocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157627 CD59 Monocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6011"} +UMLS:C0376351 Photoreceptor Cells, Vertebrate biolink:Cell skos:exactMatch MESH:D020419 Photoreceptor Cells, Vertebrate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6012","identifierIndex":0} +UMLS:C1512547 Hyperchromatic Adipocyte biolink:Cell skos:exactMatch NCIT:C36979 Hyperchromatic Adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6013","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4050542 technetium Tc-99m red blood cells biolink:Cell skos:exactMatch SNOMEDCT:89818005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6014","identifierIndex":0} +UMLS:C0242632 T-helper cell type 1 biolink:Cell skos:exactMatch MESH:D018417 Th1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6006","subject_information_content":100.0,"identifierIndex":1} +CL:2000036 anterior lateral line neuromast supporting cell biolink:Cell skos:exactMatch CL:2000036 anterior lateral line neuromast supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6015","subject_information_content":100.0} +CL:0019029 centrilobular region hepatocyte biolink:Cell skos:exactMatch CL:0019029 centrilobular region hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6016","subject_information_content":100.0} +UMLS:C0007601 Cell Line, Transformed biolink:Cell skos:exactMatch MESH:D002461 Cell Line, Transformed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6017","identifierIndex":0} +UMLS:C1718726 Cells.ZAP70 biolink:Cell skos:exactMatch UMLS:C1718726 Cells.ZAP70 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6018"} +UMLS:C1708924 Malignant Transitional Cell with Large Nucleus and Small Nucleolus biolink:Cell skos:exactMatch NCIT:C54554 Malignant Transitional Cell with Large Nucleus and Small Nucleolus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6019","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1881580 Malignant Neuroendocrine Small Round Cell biolink:Cell skos:exactMatch NCIT:C47805 Malignant Neuroendocrine Small Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6020","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5417981 Autologous Anti-BCMA CD8+ CAR T-cells Descartes-11 biolink:Cell skos:exactMatch NCIT:C173434 Autologous Anti-BCMA CD8+ CAR T-cells Descartes-11 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6021","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5173433 Monocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173433 Monocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6022"} +CL:0000335 mesenchyme condensation cell biolink:Cell skos:exactMatch CL:0000335 mesenchyme condensation cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6023","subject_information_content":100.0} +UMLS:C0242632 T-helper cell type 1 biolink:Cell skos:exactMatch SNOMEDCT:418698006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6006","subject_information_content":100.0,"identifierIndex":2} +CL:0002463 SIRPa-positive adipose dendritic cell biolink:Cell skos:exactMatch CL:0002463 SIRPa-positive adipose dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6024","subject_information_content":100.0} +CL:0002574 stromal cell of pancreas biolink:Cell skos:exactMatch CL:0002574 stromal cell of pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6025","subject_information_content":100.0} +UMLS:C2339502 Enterocyte of epithelium proper of jejunum biolink:Cell skos:exactMatch UMLS:C2339502 Enterocyte of epithelium proper of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6026"} +UMLS:C5419025 Autologous Anti-CD123 CAR-T Cells biolink:Cell skos:exactMatch NCIT:C171167 Autologous Anti-CD123 CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6027","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4533461 Cells.CD4-CD8-CD45R+TCR alpha beta+ biolink:Cell skos:exactMatch UMLS:C4533461 Cells.CD4-CD8-CD45R+TCR alpha beta+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6028"} +CL:1000413 endothelial cell of artery biolink:Cell skos:exactMatch CL:1000413 endothelial cell of artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6029","subject_information_content":83.89907621744979} +UMLS:C3176908 Cells.cytoplasmic Ig biolink:Cell skos:exactMatch UMLS:C3176908 Cells.cytoplasmic Ig biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6030"} +CL:0001030 CD117-positive common myeloid progenitor OR CD217-positive common lymphoid progenitor biolink:Cell skos:exactMatch CL:0001030 CD117-positive common myeloid progenitor OR CD217-positive common lymphoid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6031","subject_information_content":91.94953810872488} +CL:0001049 activated CD8-positive, alpha-beta T cell, human biolink:Cell skos:exactMatch CL:0001049 activated CD8-positive, alpha-beta T cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6032","subject_information_content":100.0} +UMLS:C5216283 Myelocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216283 Myelocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6033"} +CL:0002136 type II cell of adrenal cortex biolink:Cell skos:exactMatch CL:0002136 type II cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6034","subject_information_content":100.0} +UMLS:C1440279 Cells.CD3+CD16+ biolink:Cell skos:exactMatch UMLS:C1440279 Cells.CD3+CD16+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6035"} +UMLS:C5184399 Unidentified cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5184399 Unidentified cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6036"} +UMLS:C0227651 Mesangial Cells, Kidney biolink:Cell skos:exactMatch NCIT:C13159 Mesangial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6037","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1440393 Myeloperoxidase cells biolink:Cell skos:exactMatch UMLS:C1440393 Myeloperoxidase cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6038"} +UMLS:C1708910 Malignant Smooth Muscle Cell with Granular Cytoplasmic Change biolink:Cell skos:exactMatch NCIT:C49128 Malignant Smooth Muscle Cell with Granular Cytoplasmic Change biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6039","subject_information_content":100.0,"identifierIndex":0} +CL:0000548 animal cell biolink:Cell skos:exactMatch CL:0000548 animal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6040","subject_information_content":44.0461282186378} +CL:1000298 mesothelial cell of dura mater biolink:Cell skos:exactMatch CL:1000298 mesothelial cell of dura mater biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6041","subject_information_content":100.0} +UMLS:C5154300 Band form neutrophils | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154300 Band form neutrophils | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6042"} +UMLS:C5216197 Blasts|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216197 Blasts|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6043"} +CL:0001007 interstitial dendritic cell biolink:Cell skos:exactMatch CL:0001007 interstitial dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6044","subject_information_content":89.84144812560278} +UMLS:C1514099 Neoplastic Spindle-Shaped to Round Cell biolink:Cell skos:exactMatch NCIT:C37123 Neoplastic Spindle-Shaped to Round Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6045","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2350243 Granulocyte-Macrophage Progenitor Cells biolink:Cell skos:exactMatch MESH:D055014 Granulocyte-Macrophage Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6046","identifierIndex":0} +UMLS:C1440423 Terminal deoxyribonucleotidyl transferase cells biolink:Cell skos:exactMatch UMLS:C1440423 Terminal deoxyribonucleotidyl transferase cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6047"} +UMLS:C5446525 WT1-H/K-HELP-survivin-H/K-HELP-MAGE-A4-H / K-HELP-MUC1-22 Peptide-loaded Autologous Dendritic Cells biolink:Cell skos:exactMatch NCIT:C175443 WT1-H/K-HELP-survivin-H/K-HELP-MAGE-A4-H / K-HELP-MUC1-22 Peptide-loaded Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6048","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2328882 Myocardial endocrine cell of interventricular septum biolink:Cell skos:exactMatch UMLS:C2328882 Myocardial endocrine cell of interventricular septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6049"} +UMLS:C5443441 lisocabtagene maraleucel, CD4 component, 2 of 2 biolink:Cell skos:exactMatch UMLS:C5443441 lisocabtagene maraleucel, CD4 component, 2 of 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6050"} +UMLS:C1710683 Wreath-Like Multinucleated Giant Cell biolink:Cell skos:exactMatch NCIT:C53640 Wreath-Like Multinucleated Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6051","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513958 Neoplastic Ependymal Cell biolink:Cell skos:exactMatch NCIT:C37143 Neoplastic Ependymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6052","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:2000062 placental villus capillary endothelial cell biolink:Cell skos:exactMatch CL:2000062 placental villus capillary endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6053","subject_information_content":100.0} +UMLS:C0013921 Tumor Cells, Embolic biolink:Cell skos:exactMatch UMLS:C0013921 Tumor Cells, Embolic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6054"} +UMLS:C5157437 CD3+CD4+ (T4 helper) cells | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157437 CD3+CD4+ (T4 helper) cells | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6055"} +UMLS:C4510884 Blast cell positive for CD11c antigen biolink:Cell skos:exactMatch SNOMEDCT:724308009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6056","identifierIndex":0} +CL:0002011 Kit-positive macrophage dendritic cell progenitor biolink:Cell skos:exactMatch CL:0002011 Kit-positive macrophage dendritic cell progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6057","subject_information_content":100.0} +UMLS:C0080202 T-Lymphocyte Subsets biolink:Cell skos:exactMatch MESH:D016176 T-Lymphocyte Subsets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6058","identifierIndex":0} +UMLS:C0314583 Colony-forming unit of basophilic lineage biolink:Cell skos:exactMatch SNOMEDCT:445114000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6059","identifierIndex":0} +UMLS:C1267967 Lymphocyte positive for CD73 antigen biolink:Cell skos:exactMatch SNOMEDCT:117407000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6060","identifierIndex":0} +CL:0000874 splenic red pulp macrophage biolink:Cell skos:exactMatch CL:0000874 splenic red pulp macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6061","subject_information_content":100.0} +CL:0001051 CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell biolink:Cell skos:exactMatch CL:0001051 CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6062","subject_information_content":94.92072406280138} +UMLS:C1520165 Xanthomatous Astrocyte biolink:Cell skos:exactMatch NCIT:C37139 Xanthomatous Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6063","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5181132 Smudge cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5181132 Smudge cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6064"} +NCIT:C32734 Hepatic Stellate Cell biolink:Cell skos:exactMatch NCIT:C32734 Hepatic Stellate Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6065","subject_information_content":100.0} +CL:0008034 mural cell biolink:Cell skos:exactMatch CL:0008034 mural cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6066","subject_information_content":81.20444558259193} +UMLS:C1440326 Cells.CD49f biolink:Cell skos:exactMatch UMLS:C1440326 Cells.CD49f biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6067"} +UMLS:C5216202 Eosinophils|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216202 Eosinophils|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6068"} +UMLS:C5163438 Eosinophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163438 Eosinophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6069"} +UMLS:C1267899 Lymphocyte positive for CD26 antigen biolink:Cell skos:exactMatch SNOMEDCT:117570001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6070","identifierIndex":0} +UMLS:C1711264 Polyhedral Melanocyte biolink:Cell skos:exactMatch NCIT:C54079 Polyhedral Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6071","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1719198 Cells.CD20+CD52+ biolink:Cell skos:exactMatch UMLS:C1719198 Cells.CD20+CD52+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6072"} +UMLS:C5417842 Autologous Bispecific CD19/CD22-targeted CAR-T Cells GC022 biolink:Cell skos:exactMatch NCIT:C171093 Autologous Bispecific CD19/CD22-targeted CAR-T Cells GC022 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6073","subject_information_content":100.0,"identifierIndex":0} +CL:1000333 serous cell of epithelium of lobular bronchiole biolink:Cell skos:exactMatch CL:1000333 serous cell of epithelium of lobular bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6074","subject_information_content":94.92072406280138} +UMLS:C5182725 Target cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5182725 Target cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6075"} +UMLS:C1267802 CYIG+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117506006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6076","identifierIndex":0} +UMLS:C1511007 BG02 biolink:Cell skos:exactMatch NCIT:C20234 BG02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6077","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4323726 Trunk neural crest cell group biolink:Cell skos:exactMatch UMLS:C4323726 Trunk neural crest cell group biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6078"} +UMLS:C1517734 Large Multinucleated Erythroid Cell biolink:Cell skos:exactMatch NCIT:C37055 Large Multinucleated Erythroid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6079","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4329802 Ex Vivo-expanded Autologous T Cells IMA101 biolink:Cell skos:exactMatch UMLS:C4722695 ACTolog IMA101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6080","subject_information_content":100.0,"identifierIndex":0} +CL:0000978 IgM short lived plasma cell biolink:Cell skos:exactMatch CL:0000978 IgM short lived plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6081","subject_information_content":100.0} +CL:0000771 eosinophil biolink:Cell skos:exactMatch CL:0000771 eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6082","subject_information_content":85.74066969721673} +UMLS:C5177454 Plasma cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177454 Plasma cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6083"} +UMLS:C0546492 P.B. neutrophilic myelocyte biolink:Cell skos:exactMatch UMLS:C0546492 P.B. neutrophilic myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6084"} +CL:0002526 CD14-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002526 CD14-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6085","subject_information_content":91.94953810872488} +UMLS:C1522214 Endocrine Pancreas - Islet Cell of Langerhans - Beta Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22642 Mouse Beta Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6086","subject_information_content":100.0,"identifierIndex":0} +CL:0000558 reticulocyte biolink:Cell skos:exactMatch CL:0000558 reticulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6087","subject_information_content":88.2062864997332} +CL:0000170 glucagon secreting cell biolink:Cell skos:exactMatch CL:0000170 glucagon secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6088","subject_information_content":89.84144812560278} +UMLS:C2717913 Telocytes biolink:Cell skos:exactMatch MESH:D000067170 Telocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6089","identifierIndex":0} +UMLS:C4329802 Ex Vivo-expanded Autologous T Cells IMA101 biolink:Cell skos:exactMatch NCIT:C131305 Ex Vivo-expanded Autologous T Cells IMA101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6080","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5167383 Histiocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5167383 Histiocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6090"} +UMLS:C0026609 Motor Neurons biolink:Cell skos:exactMatch UMLS:C0026609 Motor Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6091"} +CL:0000725 nitrogen fixing cell biolink:Cell skos:exactMatch CL:0000725 nitrogen fixing cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6092","subject_information_content":94.92072406280138} +UMLS:C5216304 Other cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216304 Other cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6093"} +CL:0001045 naive CCR4-positive regulatory T cell biolink:Cell skos:exactMatch CL:0001045 naive CCR4-positive regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6094","subject_information_content":100.0} +CL:0000429 imaginal disc cell biolink:Cell skos:exactMatch CL:0000429 imaginal disc cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6095","subject_information_content":100.0} +CL:0002290 Y chromosome-bearing sperm cell biolink:Cell skos:exactMatch CL:0002290 Y chromosome-bearing sperm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6096","subject_information_content":100.0} +UMLS:C1440400 Cells.t(11;19)(q23;p13.3)(MLL,MLLT1) biolink:Cell skos:exactMatch UMLS:C1440400 Cells.t(11;19)(q23;p13.3)(MLL,MLLT1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6097"} +UMLS:C5173472 Monocytes+Macrophages | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173472 Monocytes+Macrophages | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6098"} +CL:0000352 epiblast cell biolink:Cell skos:exactMatch CL:0000352 epiblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6099","subject_information_content":100.0} +CL:4023090 small basket cell biolink:Cell skos:exactMatch CL:4023090 small basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6100","subject_information_content":100.0} +NCIT:C45919 Pituicyte biolink:Cell skos:exactMatch NCIT:C45919 Pituicyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6101","subject_information_content":100.0} +UMLS:C5171527 Lupus erythematosus cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171527 Lupus erythematosus cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6102"} +CL:0000690 R2 photoreceptor cell biolink:Cell skos:exactMatch CL:0000690 R2 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6103","subject_information_content":100.0} +CL:0008047 intrafusal muscle fiber biolink:Cell skos:exactMatch CL:0008047 intrafusal muscle fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6104","subject_information_content":88.2062864997332} +UMLS:C3641685 Anti-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocyte Cells biolink:Cell skos:exactMatch NCIT:C104006 Anti-CD20-CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocyte Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6105","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2335260 Fibroblast of tunica adventitia of artery biolink:Cell skos:exactMatch UMLS:C2335260 Fibroblast of tunica adventitia of artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6106"} +UMLS:C5216240 Leukocytes|NCnc|Pt|Stool biolink:Cell skos:exactMatch UMLS:C5216240 Leukocytes|NCnc|Pt|Stool biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6107"} +UMLS:C4724879 PD-1 knockout EBV-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C148180 PD-1 knockout EBV-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6108","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1882055 Neoplastic Large Polygonal Sertoli Cell biolink:Cell skos:exactMatch NCIT:C61417 Neoplastic Large Polygonal Sertoli Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6109","subject_information_content":100.0,"identifierIndex":0} +CL:0000736 embryonic gland hemocyte biolink:Cell skos:exactMatch CL:0000736 embryonic gland hemocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6110","subject_information_content":91.94953810872488} +UMLS:C0945921 Cells.CD2+CD26+ biolink:Cell skos:exactMatch UMLS:C0945921 Cells.CD2+CD26+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6111"} +UMLS:C4733641 Autologous Anti-BCMA CAR-transduced T-cells KITE-585 biolink:Cell skos:exactMatch NCIT:C155883 Autologous Anti-BCMA CAR-transduced T-cells KITE-585 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6112","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229587 Structure of parathyroid transitional cell biolink:Cell skos:exactMatch SNOMEDCT:15824004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6113","identifierIndex":0} +CL:0001017 mature CD1a-positive Langerhans cell biolink:Cell skos:exactMatch CL:0001017 mature CD1a-positive Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6114","subject_information_content":100.0} +CL:0000349 extraembryonic cell biolink:Cell skos:exactMatch CL:0000349 extraembryonic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6115","subject_information_content":75.84861432617468} +CL:0002178 epithelial cell of stomach biolink:Cell skos:exactMatch CL:0002178 epithelial cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6116","subject_information_content":78.81980028025117} +UMLS:C5172506 Mesothelial cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172506 Mesothelial cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6117"} +CL:0002436 mature CD4 single-positive thymocyte biolink:Cell skos:exactMatch CL:0002436 mature CD4 single-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6118","subject_information_content":100.0} +UMLS:C3640055 IGF-1R Antisense Oligodeoxynucleotide-treated Autologous Glioma Cells biolink:Cell skos:exactMatch NCIT:C101257 IGF-1R Antisense Oligodeoxynucleotide-treated Autologous Glioma Cells IGV-001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6119","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3161470 Cartilage Cell biolink:Cell skos:exactMatch NCIT:C48695 Cartilage Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6120","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C4527154 TCR-specific, alpha Fetoprotein-enhanced Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C136982 TCR-specific, alpha Fetoprotein-enhanced Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6121","subject_information_content":100.0,"identifierIndex":0} +CL:0011020 neural progenitor cell biolink:Cell skos:exactMatch CL:0011020 neural progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6122","subject_information_content":94.92072406280138} +UMLS:C4304487 Population of all smudge cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719701000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6123","identifierIndex":0} +UMLS:C1513959 Neoplastic Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36753 Neoplastic Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6124","subject_information_content":60.61078651457885,"identifierIndex":0} +CL:2000076 hindlimb stylopod vein endothelial cell biolink:Cell skos:exactMatch CL:2000076 hindlimb stylopod vein endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6125","subject_information_content":100.0} +UMLS:C5216309 Platelets|NCnc|Pt|Plas biolink:Cell skos:exactMatch UMLS:C5216309 Platelets|NCnc|Pt|Plas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6126"} +CL:0002273 type ECL enteroendocrine cell biolink:Cell skos:exactMatch CL:0002273 type ECL enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6127","subject_information_content":100.0} +CL:0000326 glycogen accumulating cell biolink:Cell skos:exactMatch CL:0000326 glycogen accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6128","subject_information_content":100.0} +UMLS:C5157260 CD117 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157260 CD117 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6129"} +UMLS:C3161470 Cartilage Cell biolink:Cell skos:exactMatch SNOMEDCT:86024004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6120","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1882961 Round Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C54417 Round Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6130","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0882894 Cells.CD5+CD20+ biolink:Cell skos:exactMatch UMLS:C0882894 Cells.CD5+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6131"} +CL:0002425 early T lineage precursor biolink:Cell skos:exactMatch CL:0002425 early T lineage precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6132","subject_information_content":100.0} +CL:0002605 astrocyte of the cerebral cortex biolink:Cell skos:exactMatch CL:0002605 astrocyte of the cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6133","subject_information_content":94.92072406280138} +CL:0000119 cerebellar Golgi cell biolink:Cell skos:exactMatch CL:0000119 cerebellar Golgi cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6134","subject_information_content":100.0} +UMLS:C2323492 Parasol ganglion cell of retina biolink:Cell skos:exactMatch UMLS:C2323492 Parasol ganglion cell of retina biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6135"} +UMLS:C1513170 Metaplastic Cell biolink:Cell skos:exactMatch NCIT:C36786 Metaplastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6136","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:0002064 pancreatic acinar cell biolink:Cell skos:exactMatch CL:0002064 pancreatic acinar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6137","subject_information_content":100.0} +UMLS:C2953062 Endothelial cell of endocardium of right ventricle biolink:Cell skos:exactMatch UMLS:C2953062 Endothelial cell of endocardium of right ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6138"} +CL:1000892 kidney capillary endothelial cell biolink:Cell skos:exactMatch CL:1000892 kidney capillary endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6139","subject_information_content":80.66139376001811} +UMLS:C5426871 CD3+CD8+CD27+CD45RO+CD62L+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5426871 CD3+CD8+CD27+CD45RO+CD62L+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6140"} +CL:0000214 synovial cell biolink:Cell skos:exactMatch CL:0000214 synovial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6141","subject_information_content":91.94953810872488} +UMLS:C1282866 Entire blastomere biolink:Cell skos:exactMatch SNOMEDCT:343113005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6142","identifierIndex":0} +UMLS:C1519839 Urothelial Cell biolink:Cell skos:exactMatch NCIT:C33841 Urothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6143","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5216321 Unidentified cells|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216321 Unidentified cells|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6144"} +UMLS:C5166508 Hematopoietic progenitor cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166508 Hematopoietic progenitor cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6145"} +UMLS:C0004561 B-Lymphocytes biolink:Cell skos:exactMatch UMLS:C0004561 B-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6146"} +UMLS:C0682696 Golgi type I neuron biolink:Cell skos:exactMatch UMLS:C0682696 Golgi type I neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6147"} +UMLS:C5157380 CD20 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157380 CD20 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6148"} +UMLS:C1179830 Epithelial cell of prostate biolink:Cell skos:exactMatch UMLS:C1179830 Epithelial cell of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6149"} +CL:0000628 photosynthetic cell biolink:Cell skos:exactMatch CL:0000628 photosynthetic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6150","subject_information_content":100.0} +UMLS:C0000886 Acanthocytes biolink:Cell skos:exactMatch NCIT:C12523 Acanthocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6151","subject_information_content":100.0,"identifierIndex":0} +CL:0000689 myoendocrine cell biolink:Cell skos:exactMatch CL:0000689 myoendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6152","subject_information_content":100.0} +CL:0000192 smooth muscle cell biolink:Cell skos:exactMatch CL:0000192 smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6153","subject_information_content":70.63487872280473} +UMLS:C5172509 Mesothelial cells | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172509 Mesothelial cells | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6154"} +UMLS:C1182646 Pigmented ciliary epithelial cell biolink:Cell skos:exactMatch UMLS:C1182646 Pigmented ciliary epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6155"} +CL:0002097 cortical cell of adrenal gland biolink:Cell skos:exactMatch CL:0002097 cortical cell of adrenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6156","subject_information_content":89.84144812560278} +CL:0000981 double negative memory B cell biolink:Cell skos:exactMatch CL:0000981 double negative memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6157","subject_information_content":91.94953810872488} +UMLS:C3495541 A1 noradrenaline cells biolink:Cell skos:exactMatch UMLS:C3495541 A1 noradrenaline cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6158"} +UMLS:C1514173 Pleomorphic Lipoblast biolink:Cell skos:exactMatch NCIT:C36974 Pleomorphic Lipoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6159","subject_information_content":100.0,"identifierIndex":0} +CL:0000463 epidermal cell (sensu arthropoda) biolink:Cell skos:exactMatch CL:0000463 epidermal cell (sensu arthropoda) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6160","subject_information_content":91.94953810872488} +UMLS:C0000886 Acanthocytes biolink:Cell skos:exactMatch MESH:D000050 Acanthocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6151","subject_information_content":100.0,"identifierIndex":1} +CL:0000451 dendritic cell biolink:Cell skos:exactMatch CL:0000451 dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6161","subject_information_content":68.3621111081913} +CL:0000647 multinucleated giant cell biolink:Cell skos:exactMatch CL:0000647 multinucleated giant cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6162","subject_information_content":100.0} +UMLS:C1515152 TE62 biolink:Cell skos:exactMatch NCIT:C20301 TE62 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6163","subject_information_content":100.0,"identifierIndex":0} +MESH:D018418 Th2 Cells biolink:Cell skos:exactMatch MESH:D018418 Th2 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6164"} +CL:0000417 endopolyploid cell biolink:Cell skos:exactMatch CL:0000417 endopolyploid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6165","subject_information_content":88.2062864997332} +CL:0000932 type II NK T cell secreting interferon-gamma biolink:Cell skos:exactMatch CL:0000932 type II NK T cell secreting interferon-gamma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6166","subject_information_content":100.0} +UMLS:C5170925 Leukocytes | Cervix | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170925 Leukocytes | Cervix | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6167"} +CL:0000085 germ line stem cell (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000085 germ line stem cell (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6168","subject_information_content":91.94953810872488} +CL:0000795 CD8-positive, alpha-beta regulatory T cell biolink:Cell skos:exactMatch CL:0000795 CD8-positive, alpha-beta regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6169","subject_information_content":89.84144812560278} +UMLS:C0000886 Acanthocytes biolink:Cell skos:exactMatch SNOMEDCT:63599005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6151","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1515964 Anaplastic Cell biolink:Cell skos:exactMatch NCIT:C36734 Anaplastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6170","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:4023002 dynamic beta motor neuron biolink:Cell skos:exactMatch CL:4023002 dynamic beta motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6171","subject_information_content":100.0} +CL:0000820 B-1a B cell biolink:Cell skos:exactMatch CL:0000820 B-1a B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6172","subject_information_content":100.0} +UMLS:C4322738 CD57+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322738 CD57+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6173"} +UMLS:C0887899 Myeloid Cells biolink:Cell skos:exactMatch NCIT:C12549 Myeloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6174","subject_information_content":77.34931628587292,"identifierIndex":0} +UMLS:C5163732 Erythrocytes | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163732 Erythrocytes | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6175"} +UMLS:C1179606 Anterior lens cell biolink:Cell skos:exactMatch UMLS:C1179606 Anterior lens cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6176"} +CL:1001596 salivary gland glandular cell biolink:Cell skos:exactMatch CL:1001596 salivary gland glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6177","subject_information_content":94.92072406280138} +UMLS:C0314587 Colony-forming unit of granulocytic lineage (cell) biolink:Cell skos:exactMatch SNOMEDCT:445400007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6178","identifierIndex":0} +UMLS:C1709675 Primitive Skeletal Muscle Cell biolink:Cell skos:exactMatch NCIT:C49200 Primitive Skeletal Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6179","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0002659 glandular cell of stomach biolink:Cell skos:exactMatch CL:0002659 glandular cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6180","subject_information_content":80.1558246084581} +CL:1000377 dense-core granulated cell of epithelium of trachea biolink:Cell skos:exactMatch CL:1000377 dense-core granulated cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6181","subject_information_content":100.0} +UMLS:C4512353 Entire secondary sclerotic mastoid cell biolink:Cell skos:exactMatch SNOMEDCT:727109004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6182","identifierIndex":0} +UMLS:C0021792 Interneurons biolink:Cell skos:exactMatch UMLS:C0021792 Interneurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6183"} +UMLS:C0887899 Myeloid Cells biolink:Cell skos:exactMatch MESH:D022423 Myeloid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6174","subject_information_content":77.34931628587292,"identifierIndex":1} +UMLS:C1440307 Cells.CD41a biolink:Cell skos:exactMatch UMLS:C1440307 Cells.CD41a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6184"} +UMLS:C4764035 Umbilical Cord Blood-derived CD4+/CD25+ T-regulatory Cells CK0801 biolink:Cell skos:exactMatch NCIT:C158084 Umbilical Cord Blood-derived CD4+/CD25+ T-regulatory Cells CK0801 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6185","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5174612 Neutrophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174612 Neutrophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6186"} +CL:0002146 clear cell of eccrine sweat gland biolink:Cell skos:exactMatch CL:0002146 clear cell of eccrine sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6187","subject_information_content":100.0} +UMLS:C1267995 Lymphocyte positive for CD115 antigen biolink:Cell skos:exactMatch SNOMEDCT:117435001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6188","identifierIndex":0} +CL:0001009 immature dermal dendritic cell biolink:Cell skos:exactMatch CL:0001009 immature dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6189","subject_information_content":91.94953810872488} +CL:0000989 CD11c-low plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000989 CD11c-low plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6190","subject_information_content":88.2062864997332} +UMLS:C1440296 Cells.CD33+CD44+ biolink:Cell skos:exactMatch UMLS:C1440296 Cells.CD33+CD44+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6191"} +UMLS:C5175607 Other cells | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175607 Other cells | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6192"} +CL:0011104 interplexiform cell biolink:Cell skos:exactMatch CL:0011104 interplexiform cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6193","subject_information_content":91.94953810872488} +CL:0002479 F4/80-positive adipose macrophage biolink:Cell skos:exactMatch CL:0002479 F4/80-positive adipose macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6194","subject_information_content":100.0} +UMLS:C2330221 Goblet cell of epithelium of intestinal villus biolink:Cell skos:exactMatch UMLS:C2330221 Goblet cell of epithelium of intestinal villus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6195"} +UMLS:C5155287 Blasts/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155287 Blasts/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6196"} +CL:0009017 intestinal crypt stem cell of small intestine biolink:Cell skos:exactMatch CL:0009017 intestinal crypt stem cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6197","subject_information_content":100.0} +CL:0000117 CNS neuron (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000117 CNS neuron (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6198","subject_information_content":69.08009647184646} +CL:0009037 lymph node mantle zone B cell biolink:Cell skos:exactMatch CL:0009037 lymph node mantle zone B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6199","subject_information_content":100.0} +UMLS:C5216265 Mesothelial cells|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216265 Mesothelial cells|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6200"} +UMLS:C1523993 Leukocyte - Monocyte - Macrophage (MMHCC) biolink:Cell skos:exactMatch NCIT:C22587 Mouse Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6201","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2936408 Mesophyll Cells biolink:Cell skos:exactMatch MESH:D058503 Mesophyll Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6202","identifierIndex":0} +UMLS:C5157326 CD16+CD56+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157326 CD16+CD56+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6203"} +UMLS:C1440402 Cells.t(11;22)(p13;q12.2)(WT1,EWSR1) biolink:Cell skos:exactMatch UMLS:C1440402 Cells.t(11;22)(p13;q12.2)(WT1,EWSR1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6204"} +UMLS:C3827871 T1E28z CAR-expressing Autologous CD4-positive T Lymphocytes biolink:Cell skos:exactMatch NCIT:C106117 T1E28z CAR-expressing Autologous CD4-positive T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6205","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519600 Transformed Peripheral B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38658 Transformed Peripheral B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6206","subject_information_content":100.0,"identifierIndex":0} +CL:0000079 stratified epithelial cell biolink:Cell skos:exactMatch CL:0000079 stratified epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6207","subject_information_content":78.04773462533598} +UMLS:C0431085 Tumor cells, uncertain whether benign or malignant biolink:Cell skos:exactMatch UMLS:C0431085 Tumor cells, uncertain whether benign or malignant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6208"} +UMLS:C5177475 Plasma cells/100 leukocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177475 Plasma cells/100 leukocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6209"} +CL:0000376 humidity receptor cell biolink:Cell skos:exactMatch CL:0000376 humidity receptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6210","subject_information_content":100.0} +UMLS:C5157366 CD2 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157366 CD2 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6211"} +UMLS:C1711353 Malignant Large Hyperchromatic Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49074 Malignant Large Hyperchromatic Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6212","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3176805 Blasts.cytoplasmic CD22 biolink:Cell skos:exactMatch UMLS:C3176805 Blasts.cytoplasmic CD22 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6213"} +UMLS:C0229642 Eosinophilic myelocyte biolink:Cell skos:exactMatch SNOMEDCT:90961003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6214","identifierIndex":0} +UMLS:C4253014 Set of enteroendocrine cells of epithelium of small intestine biolink:Cell skos:exactMatch UMLS:C4253014 Set of enteroendocrine cells of epithelium of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6215"} +UMLS:C0229651 Promegakaryocytes biolink:Cell skos:exactMatch SNOMEDCT:50284009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6216","identifierIndex":0} +UMLS:C1441121 Purkinje cell cytoplasmic type 2 biolink:Cell skos:exactMatch UMLS:C1441121 Purkinje cell cytoplasmic type 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6217"} +CL:1000342 enterocyte of epithelium proper of ileum biolink:Cell skos:exactMatch CL:1000342 enterocyte of epithelium proper of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6218","subject_information_content":100.0} +UMLS:C1519354 Skin squamous cell biolink:Cell skos:exactMatch NCIT:C33562 Skin Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6219","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000080 circulating cell biolink:Cell skos:exactMatch CL:0000080 circulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6220","subject_information_content":86.87026217152628} +UMLS:C1267816 Lymphocyte positive for CD3 antigen biolink:Cell skos:exactMatch SNOMEDCT:116852002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6221","identifierIndex":0} +UMLS:C4253013 Set of type F cells of pancreatic islet biolink:Cell skos:exactMatch UMLS:C4253013 Set of type F cells of pancreatic islet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6222"} +UMLS:C4510917 Blast cell with terminal deoxyribonucleotidyl transferase biolink:Cell skos:exactMatch SNOMEDCT:724317009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6223","identifierIndex":0} +UMLS:C0882939 CD8+HLA-DR+ cell biolink:Cell skos:exactMatch SNOMEDCT:732282004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6224","identifierIndex":0} +CL:0002640 amniotic epithelial stem cell biolink:Cell skos:exactMatch CL:0002640 amniotic epithelial stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6225","subject_information_content":100.0} +UMLS:C1513018 Neoplastic Mature-Appearing Adipocyte biolink:Cell skos:exactMatch NCIT:C36976 Neoplastic Mature-Appearing Adipocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6226","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5447578 Iltamiocel biolink:Cell skos:exactMatch NCIT:C177094 Iltamiocel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6227","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4696638 Cells.CD4+CD25+CD45RO+CD127Low+ biolink:Cell skos:exactMatch UMLS:C4696638 Cells.CD4+CD25+CD45RO+CD127Low+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6228"} +UMLS:C5401598 Mesenchymoangioblast-derived mesenchymal stem cells biolink:Cell skos:exactMatch UMLS:C5401598 Mesenchymoangioblast-derived mesenchymal stem cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6229"} +MESH:D009413 Nerve Fibers, Myelinated biolink:Cell skos:exactMatch MESH:D009413 Nerve Fibers, Myelinated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6230"} +CL:0000687 R1 photoreceptor cell biolink:Cell skos:exactMatch CL:0000687 R1 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6231","subject_information_content":100.0} +UMLS:C1881357 Large Adenocarcinoma Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C61110 Large Adenocarcinoma Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6232","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0598613 HTC cell biolink:Cell skos:exactMatch UMLS:C0598613 HTC cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6233"} +CL:1001066 kidney arteriole smooth muscle cell biolink:Cell skos:exactMatch CL:1001066 kidney arteriole smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6234","subject_information_content":91.94953810872488} +CL:0002537 amnion mesenchymal stem cell biolink:Cell skos:exactMatch CL:0002537 amnion mesenchymal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6235","subject_information_content":100.0} +UMLS:C3900004 Autologous CD171-specific CAR-CD28 zeta-4-1-BB-EGFRt-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C119746 Autologous CD171-specific CAR-CD28 zeta-4-1-BB-EGFRt-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6236","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182792 Epithelial cell of proximal tubule biolink:Cell skos:exactMatch UMLS:C1182792 Epithelial cell of proximal tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6237"} +UMLS:C0229657 Plasmablast (cell) biolink:Cell skos:exactMatch NCIT:C37082 Plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6238","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171976 Malignant cells/100 cells | Urine | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171976 Malignant cells/100 cells | Urine | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6239"} +UMLS:C1272578 Skin fibroblast biolink:Cell skos:exactMatch SNOMEDCT:386121006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6240","identifierIndex":0} +UMLS:C1518683 Cochlear outer hair cell biolink:Cell skos:exactMatch NCIT:C33233 Outer Hair Cell of the Organ of the Corti biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6241","subject_information_content":100.0,"identifierIndex":0} +CL:0009014 Peyer's patch lymphocyte biolink:Cell skos:exactMatch CL:0009014 Peyer's patch lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6242","subject_information_content":89.84144812560278} +UMLS:C1317328 Immature eosinophils biolink:Cell skos:exactMatch UMLS:C1317328 Immature eosinophils biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6243"} +UMLS:C2323361 Midget cone bipolar cell biolink:Cell skos:exactMatch UMLS:C2323361 Midget cone bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6244"} +UMLS:C1517714 Lactotrophs biolink:Cell skos:exactMatch NCIT:C32911 Lactotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6245","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4727588 Neoplastic Corticotroph Cell with Abundant Secretory Granules biolink:Cell skos:exactMatch NCIT:C154337 Neoplastic Corticotroph Cell with Abundant Secretory Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6246","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513068 Medium-Sized Neoplastic Myeloblast with Coarse Cytoplasmic Basophilic Granules biolink:Cell skos:exactMatch NCIT:C37180 Medium-Sized Neoplastic Myeloblast with Coarse Cytoplasmic Basophilic Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6247","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229657 Plasmablast (cell) biolink:Cell skos:exactMatch SNOMEDCT:2579009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6238","subject_information_content":100.0,"identifierIndex":1} +UMLS:C2930256 biolink:Cell skos:exactMatch UMLS:C2930256 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6248"} +CL:0000711 cumulus cell biolink:Cell skos:exactMatch CL:0000711 cumulus cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6249","subject_information_content":94.92072406280138} +UMLS:C1518683 Cochlear outer hair cell biolink:Cell skos:exactMatch MESH:D018072 Hair Cells, Auditory, Outer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6241","subject_information_content":100.0,"identifierIndex":1} +UMLS:C3849994 Ia Inhibitory Interneurons biolink:Cell skos:exactMatch UMLS:C3849994 Ia Inhibitory Interneurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6250"} +UMLS:C1513168 Metaplastic Apocrine Cell biolink:Cell skos:exactMatch NCIT:C36882 Metaplastic Apocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6251","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000329 oxygen accumulating cell biolink:Cell skos:exactMatch CL:0000329 oxygen accumulating cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6252","subject_information_content":84.76217218840416} +UMLS:C1517714 Lactotrophs biolink:Cell skos:exactMatch MESH:D052682 Lactotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6245","subject_information_content":100.0,"identifierIndex":1} +CL:0000565 fat body cell biolink:Cell skos:exactMatch CL:0000565 fat body cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6253","subject_information_content":100.0} +CL:0002361 primitive erythroid progenitor biolink:Cell skos:exactMatch CL:0002361 primitive erythroid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6254","subject_information_content":100.0} +CL:1000909 kidney loop of Henle epithelial cell biolink:Cell skos:exactMatch CL:1000909 kidney loop of Henle epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6255","subject_information_content":83.1270105625346} +UMLS:C0229471 Phalangeal cell of cochlea biolink:Cell skos:exactMatch SNOMEDCT:4799000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6256","identifierIndex":0} +UMLS:C1518683 Cochlear outer hair cell biolink:Cell skos:exactMatch SNOMEDCT:43313002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6241","subject_information_content":100.0,"identifierIndex":2} +UMLS:C2331946 Microfold cell of epithelium proper of duodenum biolink:Cell skos:exactMatch UMLS:C2331946 Microfold cell of epithelium proper of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6257"} +UMLS:C1267865 Lymphocyte positive for both CD11 antigen and CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:117546000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6258","identifierIndex":0} +UMLS:C1956101 Cumulus Cells biolink:Cell skos:exactMatch MESH:D054885 Cumulus Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6259","identifierIndex":0} +UMLS:C0333838 Gaucher-like cell biolink:Cell skos:exactMatch SNOMEDCT:59870003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6260","identifierIndex":0} +UMLS:C1517714 Lactotrophs biolink:Cell skos:exactMatch SNOMEDCT:65357006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6245","subject_information_content":100.0,"identifierIndex":2} +CL:0009049 smooth muscle cell of high endothelial venule of lymph node biolink:Cell skos:exactMatch CL:0009049 smooth muscle cell of high endothelial venule of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6261","subject_information_content":100.0} +CL:0009040 stromal cell of lamina propria of colon biolink:Cell skos:exactMatch CL:0009040 stromal cell of lamina propria of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6262","subject_information_content":100.0} +CL:1000742 glomerular mesangial cell biolink:Cell skos:exactMatch CL:1000742 glomerular mesangial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6263","subject_information_content":100.0} +UMLS:C2333240 Non-nucleated solocyte biolink:Cell skos:exactMatch UMLS:C2333240 Non-nucleated solocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6264"} +UMLS:C5216301 Nucleated cells|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216301 Nucleated cells|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6265"} +UMLS:C3899624 Circulating Adipose Stromal Cell biolink:Cell skos:exactMatch NCIT:C116009 Circulating Adipose Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6266","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5380990 Cells.CD8.HLA-A2 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5380990 Cells.CD8.HLA-A2 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6267"} +CL:0002237 luminal epithelial cell of prostatic duct biolink:Cell skos:exactMatch CL:0002237 luminal epithelial cell of prostatic duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6268","subject_information_content":100.0} +UMLS:C0581780 Stem cell colony-forming unit biolink:Cell skos:exactMatch SNOMEDCT:259731003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6269","identifierIndex":0} +UMLS:C1519737 Tzanck Cell biolink:Cell skos:exactMatch NCIT:C39665 Tzanck Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6270","subject_information_content":100.0,"identifierIndex":0} +CL:0000141 cementocyte biolink:Cell skos:exactMatch CL:0000141 cementocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6271","subject_information_content":100.0} +UMLS:C4049868 Gitter Cell biolink:Cell skos:exactMatch NCIT:C123738 Gitter Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6272","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216270 Monocytes.abnormal|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216270 Monocytes.abnormal|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6273"} +CL:0000712 stratum granulosum cell biolink:Cell skos:exactMatch CL:0000712 stratum granulosum cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6274","subject_information_content":100.0} +UMLS:C2709134 Frozen erythrocytes newborn units biolink:Cell skos:exactMatch UMLS:C2709134 Frozen erythrocytes newborn units biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6275"} +CL:0000813 memory T cell biolink:Cell skos:exactMatch CL:0000813 memory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6276","subject_information_content":81.20444558259193} +UMLS:C4763759 Expanded/Activated Gamma Delta T-cells biolink:Cell skos:exactMatch NCIT:C157634 Expanded/Activated Gamma Delta T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6277","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267891 Lymphocyte positive for CD21 antigen biolink:Cell skos:exactMatch SNOMEDCT:116843006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6278","identifierIndex":0} +UMLS:C4696692 Cells.CD19+CD27+IgD-IgM- biolink:Cell skos:exactMatch UMLS:C4696692 Cells.CD19+CD27+IgD-IgM- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6279"} +UMLS:C3485979 Allogeneic Cells biolink:Cell skos:exactMatch MESH:D000078422 Allogeneic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6280","identifierIndex":0} +CL:0000307 tracheal epithelial cell biolink:Cell skos:exactMatch CL:0000307 tracheal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6281","subject_information_content":88.2062864997332} +CL:0000814 mature NK T cell biolink:Cell skos:exactMatch CL:0000814 mature NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6282","subject_information_content":80.66139376001811} +CL:0000781 mononuclear odontoclast biolink:Cell skos:exactMatch CL:0000781 mononuclear odontoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6283","subject_information_content":100.0} +UMLS:C1519464 Spindle Cell Myoblast biolink:Cell skos:exactMatch NCIT:C36952 Spindle Cell Myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6284","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0035286 Reticulocytes biolink:Cell skos:exactMatch NCIT:C12528 Reticulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6285","subject_information_content":100.0,"identifierIndex":0} +CL:0000803 CD4-negative CD8-negative gamma-delta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000803 CD4-negative CD8-negative gamma-delta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6286","subject_information_content":100.0} +UMLS:C0229424 Infantile diploetic mastoid cell biolink:Cell skos:exactMatch SNOMEDCT:87056002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6287","identifierIndex":0} +CL:0002664 cardioblast biolink:Cell skos:exactMatch CL:0002664 cardioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6288","subject_information_content":100.0} +UMLS:C0085236 Macrophages, Alveolar biolink:Cell skos:exactMatch SNOMEDCT:33956004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6289","identifierIndex":0} +UMLS:C0227650 Juxtaglomerular cell biolink:Cell skos:exactMatch UMLS:C0227650 Juxtaglomerular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6290"} +UMLS:C2338609 Type P enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2338609 Type P enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6291"} +CL:0002310 mammosomatotroph biolink:Cell skos:exactMatch CL:0002310 mammosomatotroph biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6292","subject_information_content":100.0} +UMLS:C5157369 CD2 cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157369 CD2 cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6293"} +UMLS:C0033731 Protoplasts biolink:Cell skos:exactMatch NCIT:C12659 Protoplast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6294","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0035286 Reticulocytes biolink:Cell skos:exactMatch MESH:D012156 Reticulocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6285","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1518310 Neutrophil with Pseudo Pelger-Huet Nucleus biolink:Cell skos:exactMatch NCIT:C36724 Neutrophil with Pseudo Pelger-Huet Nucleus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6295","subject_information_content":100.0,"identifierIndex":0} +CL:2000020 inner cell mass cell biolink:Cell skos:exactMatch CL:2000020 inner cell mass cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6296","subject_information_content":100.0} +UMLS:C5175146 Nucleated cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175146 Nucleated cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6297"} +UMLS:C2323784 Fibroblast of connective tissue of glandular part of prostate biolink:Cell skos:exactMatch UMLS:C2323784 Fibroblast of connective tissue of glandular part of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6298"} +UMLS:C1514114 Neoplastic Thyrotroph Cell biolink:Cell skos:exactMatch NCIT:C36922 Neoplastic Thyrotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6299","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5446453 Autologous BCL11A-disrupted Human Hematopoietic Stem and Progenitor Cells HIX763 biolink:Cell skos:exactMatch NCIT:C175343 Autologous BCL11A-disrupted Human Hematopoietic Stem and Progenitor Cells HIX763 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6300","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181285 Prickle cell of epidermis biolink:Cell skos:exactMatch UMLS:C1181285 Prickle cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6301"} +UMLS:C0033731 Protoplasts biolink:Cell skos:exactMatch MESH:D011523 Protoplasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6294","subject_information_content":100.0,"identifierIndex":1} +UMLS:C3272725 Mini-Gemistocyte biolink:Cell skos:exactMatch NCIT:C96345 Mini-Gemistocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6302","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0035286 Reticulocytes biolink:Cell skos:exactMatch SNOMEDCT:52802009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6285","subject_information_content":100.0,"identifierIndex":2} +UMLS:C5173469 Monocytes+Macrophages | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173469 Monocytes+Macrophages | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6303"} +UMLS:C4080738 human cord blood hematopoietic progenitor cell 500000000 in 25 mL INTRAVENOUS INJECTION, SUSPENSION [CORDCYTE] biolink:Cell skos:exactMatch UMLS:C4080738 human cord blood hematopoietic progenitor cell 500000000 in 25 mL INTRAVENOUS INJECTION, SUSPENSION [CORDCYTE] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6304"} +CL:0001050 effector CD8-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0001050 effector CD8-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6305","subject_information_content":100.0} +UMLS:C1267998 Lymphocyte positive for CD120A antigen biolink:Cell skos:exactMatch SNOMEDCT:117438004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6306","identifierIndex":0} +CL:2000016 lung microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000016 lung microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6307","subject_information_content":100.0} +UMLS:C4085964 Anti-CD3 OKT3/Anti-EGFR Bispecific Antibody Armed Activated T Lymphocytes biolink:Cell skos:exactMatch NCIT:C124232 Anti-CD3 OKT3/Anti-EGFR Bispecific Antibody Armed Activated T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6308","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5186854 Normoblasts | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186854 Normoblasts | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6309"} +UMLS:C5157291 CD127 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157291 CD127 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6310"} +CL:1000719 kidney inner medulla collecting duct intercalated cell biolink:Cell skos:exactMatch CL:1000719 kidney inner medulla collecting duct intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6311","subject_information_content":100.0} +MESH:D004912 Erythrocytes biolink:Cell skos:exactMatch MESH:D004912 Erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6312"} +CL:0000644 Bergmann glial cell biolink:Cell skos:exactMatch CL:0000644 Bergmann glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6313","subject_information_content":100.0} +CL:0002026 CD34-negative, CD41-positive, CD42-positive megakaryocyte cell biolink:Cell skos:exactMatch CL:0002026 CD34-negative, CD41-positive, CD42-positive megakaryocyte cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6314","subject_information_content":100.0} +CL:0002166 epithelial cell of Malassez biolink:Cell skos:exactMatch CL:0002166 epithelial cell of Malassez biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6315","subject_information_content":100.0} +UMLS:C0333862 Giant megakaryocyte biolink:Cell skos:exactMatch NCIT:C37045 Giant Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6316","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440371 Cells.CD95 biolink:Cell skos:exactMatch UMLS:C1440371 Cells.CD95 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6317"} +CL:0000763 myeloid cell biolink:Cell skos:exactMatch CL:0000763 myeloid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6318","subject_information_content":60.02424586284312} +UMLS:C1267843 Lymphocyte positive for both CD4 antigen and CD8 antigen biolink:Cell skos:exactMatch SNOMEDCT:117530008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6319","identifierIndex":0} +UMLS:C2335622 Serous cell of epithelium of bronchus biolink:Cell skos:exactMatch UMLS:C2335622 Serous cell of epithelium of bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6320"} +UMLS:C0444242 Amniotic cell sample biolink:Cell skos:exactMatch SNOMEDCT:258563002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6321","identifierIndex":0} +UMLS:C1648297 Cells.CD38+Lambda+ biolink:Cell skos:exactMatch UMLS:C1648297 Cells.CD38+Lambda+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6322"} +UMLS:C1440232 Cells.CD10+CD19+ biolink:Cell skos:exactMatch UMLS:C1440232 Cells.CD10+CD19+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6323"} +UMLS:C5156213 Burr cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5156213 Burr cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6324"} +UMLS:C4733685 Autologous HER2-specific/EGFRt-expressing CD4/CD8-positive CAR T-cells biolink:Cell skos:exactMatch NCIT:C156156 Autologous HER2-specific/EGFRt-expressing CD4/CD8-positive CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6325","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333862 Giant megakaryocyte biolink:Cell skos:exactMatch SNOMEDCT:60191001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6316","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5206588 Autologous c-Met/PD-L1-specific CAR T-cells biolink:Cell skos:exactMatch NCIT:C162481 Autologous c-Met/PD-L1-specific CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6326","subject_information_content":100.0,"identifierIndex":0} +CL:0002060 melanophage biolink:Cell skos:exactMatch CL:0002060 melanophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6327","subject_information_content":100.0} +CL:0000097 mast cell biolink:Cell skos:exactMatch CL:0000097 mast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6328","subject_information_content":91.94953810872488} +UMLS:C5174618 Neutrophils | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174618 Neutrophils | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6329"} +UMLS:C1257792 Vascular Endothelial Cells biolink:Cell skos:exactMatch UMLS:C1257792 Vascular Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6330"} +UMLS:C1519318 Signet Ring-Like Neoplastic T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39683 Signet Ring-Like Neoplastic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6331","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267974 Lymphocyte positive for CD83 antigen biolink:Cell skos:exactMatch SNOMEDCT:117414003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6332","identifierIndex":0} +UMLS:C1440363 Cells.CD86 biolink:Cell skos:exactMatch UMLS:C1440363 Cells.CD86 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6333"} +UMLS:C5206711 Chimeric Costimulatory Converting Receptor-modified NK-92 Cells biolink:Cell skos:exactMatch NCIT:C162637 Chimeric Costimulatory Converting Receptor-modified NK-92 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6334","subject_information_content":100.0,"identifierIndex":0} +CL:0000204 acceleration receptive cell biolink:Cell skos:exactMatch CL:0000204 acceleration receptive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6335","subject_information_content":100.0} +CL:0000943 Be1 Cell biolink:Cell skos:exactMatch CL:0000943 Be1 Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6336","subject_information_content":100.0} +UMLS:C0039195 Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C12543 Cytotoxic T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6337","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1522157 Leukocyte - Promonocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22585 Mouse Promonocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6338","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157261 CD117 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157261 CD117 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6339"} +CL:0000969 regulatory B cell biolink:Cell skos:exactMatch CL:0000969 regulatory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6340","subject_information_content":100.0} +UMLS:C4323413 Set of rod cells of inner nuclear layer biolink:Cell skos:exactMatch UMLS:C4323413 Set of rod cells of inner nuclear layer biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6341"} +UMLS:C5173443 Monocytes.immature/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173443 Monocytes.immature/100 leukocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6342"} +UMLS:C5171667 Lymphocytes | Stool | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171667 Lymphocytes | Stool | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6343"} +UMLS:C2736934 Cells.CD5+FMC7+ biolink:Cell skos:exactMatch UMLS:C2736934 Cells.CD5+FMC7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6344"} +UMLS:C1180326 Olfactory epithelial cell biolink:Cell skos:exactMatch NCIT:C13150 Olfactory Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6345","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0039195 Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch MESH:D013602 T-Lymphocytes, Cytotoxic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6337","subject_information_content":89.84144812560278,"identifierIndex":1} +UMLS:C1512108 Dysplastic Squamous Cell biolink:Cell skos:exactMatch NCIT:C36789 Dysplastic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6346","subject_information_content":80.1558246084581,"identifierIndex":0} +CL:0002497 primary trophoblast giant cell biolink:Cell skos:exactMatch CL:0002497 primary trophoblast giant cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6347","subject_information_content":100.0} +UMLS:C2717770 Germ Cells, Plant biolink:Cell skos:exactMatch MESH:D055993 Germ Cells, Plant biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6348","identifierIndex":0} +UMLS:C5220597 Leukocyte clumps|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220597 Leukocyte clumps|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6349"} +UMLS:C1266873 Bladder epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:115596003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6350","identifierIndex":0} +CL:0000402 CNS interneuron biolink:Cell skos:exactMatch CL:0000402 CNS interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6351","subject_information_content":73.34432806080346} +UMLS:C0333727 Signet ring cell biolink:Cell skos:exactMatch UMLS:C0333727 Signet ring cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6352"} +UMLS:C1440234 Cell positive for CD102 protein biolink:Cell skos:exactMatch SNOMEDCT:725326002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6353","identifierIndex":0} +NCIT:C13000 Rhabdomyocyte biolink:Cell skos:exactMatch NCIT:C13000 Rhabdomyocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6354","subject_information_content":100.0} +UMLS:C0039195 Cytotoxic T-Lymphocytes biolink:Cell skos:exactMatch SNOMEDCT:420638008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6337","subject_information_content":89.84144812560278,"identifierIndex":2} +UMLS:C5216269 Monoblasts|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216269 Monoblasts|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6355"} +UMLS:C0018956 Hematopoietic stem cells biolink:Cell skos:exactMatch NCIT:C12551 Hematopoietic Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6356","subject_information_content":78.42360399800205,"identifierIndex":0} +UMLS:C1518846 Paget Cell biolink:Cell skos:exactMatch NCIT:C36754 Paget Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6357","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2339528 Retinal astrocyte biolink:Cell skos:exactMatch UMLS:C2339528 Retinal astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6358"} +UMLS:C1511740 Decidual cell biolink:Cell skos:exactMatch NCIT:C32429 Decidual Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6359","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1276977 Entire primordial sex cell biolink:Cell skos:exactMatch SNOMEDCT:343721007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6360","identifierIndex":0} +CL:0000372 tormogen cell biolink:Cell skos:exactMatch CL:0000372 tormogen cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6361","subject_information_content":100.0} +UMLS:C5163540 Epithelial cells | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5163540 Epithelial cells | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6362"} +CL:0000176 ecdysteroid secreting cell biolink:Cell skos:exactMatch CL:0000176 ecdysteroid secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6363","subject_information_content":100.0} +CL:0000673 Kenyon cell biolink:Cell skos:exactMatch CL:0000673 Kenyon cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6364","subject_information_content":100.0} +UMLS:C5171750 Lymphocytes+Monocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171750 Lymphocytes+Monocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6365"} +UMLS:C0018956 Hematopoietic stem cells biolink:Cell skos:exactMatch MESH:D006412 Hematopoietic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6356","subject_information_content":78.42360399800205,"identifierIndex":1} +UMLS:C5380988 Cells.CD8.HLA-B8 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5380988 Cells.CD8.HLA-B8 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6366"} +CL:0000233 platelet biolink:Cell skos:exactMatch CL:0000233 platelet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6367","subject_information_content":100.0} +CL:0000921 type I NK T cell biolink:Cell skos:exactMatch CL:0000921 type I NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6368","subject_information_content":83.89907621744979} +UMLS:C1710606 Vacuolated Malignant Fibroblast biolink:Cell skos:exactMatch NCIT:C49030 Vacuolated Malignant Fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6369","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514203 Polygonal or Elongated Mononuclear Mesenchymal Cell biolink:Cell skos:exactMatch NCIT:C36932 Polygonal or Elongated Mononuclear Mesenchymal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6370","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2333889 Cardiocyte - general anatomical term biolink:Cell skos:exactMatch UMLS:C2333889 Cardiocyte - general anatomical term biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6371"} +UMLS:C5417771 Viralym-M biolink:Cell skos:exactMatch UMLS:C5417937 Allogeneic Multi-virus-specific Cytotoxic T Lymphocytes ALVR105 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6372","subject_information_content":100.0,"identifierIndex":0} +CL:0000421 coelomocyte biolink:Cell skos:exactMatch CL:0000421 coelomocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6373","subject_information_content":100.0} +UMLS:C1881029 HSV-TK-Transduced Donor Lymphocytes biolink:Cell skos:exactMatch NCIT:C67047 HSV-TK-Transduced Donor Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6374","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0018956 Hematopoietic stem cells biolink:Cell skos:exactMatch SNOMEDCT:418318001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6356","subject_information_content":78.42360399800205,"identifierIndex":2} +UMLS:C2339015 Vacuolar absorptive cell of epithelium proper of large intestine biolink:Cell skos:exactMatch UMLS:C2339015 Vacuolar absorptive cell of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6375"} +UMLS:C0004112 Astrocytes biolink:Cell skos:exactMatch NCIT:C12477 Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6376","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0002099 type I cell of adrenal cortex biolink:Cell skos:exactMatch CL:0002099 type I cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6377","subject_information_content":100.0} +UMLS:C1517820 Mouse Pro-T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C22581 Mouse Pro-T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6378","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5159000 Chediak-Higashi cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5159000 Chediak-Higashi cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6379"} +UMLS:C5154299 Band form neutrophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154299 Band form neutrophils | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6380"} +UMLS:C5417771 Viralym-M biolink:Cell skos:exactMatch NCIT:C172802 Allogeneic Multi-virus-specific Cytotoxic T Lymphocytes ALVR105 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6372","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5446661 Autologous Anti-mesothelin TCR-expressing T-cells FH-TCR TMSLN biolink:Cell skos:exactMatch NCIT:C175659 Autologous Anti-mesothelin TCR-expressing T-cells FH-TCR TMSLN biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6381","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4253034 Epithelial cell of prostatic urethra biolink:Cell skos:exactMatch UMLS:C4253034 Epithelial cell of prostatic urethra biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6382"} +UMLS:C2348032 Cytokine-Induced Killer Cells biolink:Cell skos:exactMatch NCIT:C71757 Cytokine-Induced Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6383","subject_information_content":100.0,"identifierIndex":0} +CL:1001224 interlobulary vein smooth muscle cell biolink:Cell skos:exactMatch CL:1001224 interlobulary vein smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6384","subject_information_content":100.0} +CL:0000798 gamma-delta T cell biolink:Cell skos:exactMatch CL:0000798 gamma-delta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6385","subject_information_content":77.02358060617253} +UMLS:C4687632 Allogeneic Umbilical Cord Blood-derived HSPCs NLA101 biolink:Cell skos:exactMatch NCIT:C146992 Dilanubicel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6386","subject_information_content":100.0,"identifierIndex":0} +CL:0000614 basophilic myelocyte biolink:Cell skos:exactMatch CL:0000614 basophilic myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6387","subject_information_content":100.0} +UMLS:C5177473 Plasma cells/100 leukocytes | Dialysis fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177473 Plasma cells/100 leukocytes | Dialysis fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6388"} +NCIT:C12632 Vestibular Hair Cell biolink:Cell skos:exactMatch NCIT:C12632 Vestibular Hair Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6389","subject_information_content":100.0} +UMLS:C1518353 Malignant Non-Cutaneous Basaloid Cell biolink:Cell skos:exactMatch NCIT:C36783 Malignant Non-Cutaneous Basaloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6390","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216192 Basophils|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216192 Basophils|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6391"} +UMLS:C5454450 Leukocytes | Lower respiratory specimen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5454450 Leukocytes | Lower respiratory specimen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6392"} +UMLS:C2348032 Cytokine-Induced Killer Cells biolink:Cell skos:exactMatch MESH:D055612 Cytokine-Induced Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6383","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5163713 Erythrocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163713 Erythrocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6393"} +UMLS:C0333847 Mott plasma cell biolink:Cell skos:exactMatch SNOMEDCT:83718009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6394","identifierIndex":0} +UMLS:C5170933 Leukocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170933 Leukocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6395"} +UMLS:C0282549 HL-60 Cells biolink:Cell skos:exactMatch MESH:D018922 HL-60 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6396","identifierIndex":0} +UMLS:C5170923 Leukocytes | Buffy Coat | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170923 Leukocytes | Buffy Coat | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6397"} +CL:0002037 CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell biolink:Cell skos:exactMatch CL:0002037 CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6398","subject_information_content":100.0} +CL:4023076 Martinotti neuron biolink:Cell skos:exactMatch CL:4023076 Martinotti neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6399","subject_information_content":85.74066969721673} +UMLS:C3899265 Endocrine Cell of the Digestive System biolink:Cell skos:exactMatch NCIT:C12573 Endocrine Cell of the Digestive System biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6400","subject_information_content":82.42859222307153,"identifierIndex":0} +UMLS:C5157449 CD3+CD56+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157449 CD3+CD56+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6401"} +CL:0000483 bombesin stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000483 bombesin stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6402","subject_information_content":100.0} +UMLS:C0546491 P.B. myeloblast biolink:Cell skos:exactMatch UMLS:C0546491 P.B. myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6403"} +UMLS:C1518185 Malignant Langerhans Cell biolink:Cell skos:exactMatch NCIT:C36890 Malignant Langerhans Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6404","subject_information_content":100.0,"identifierIndex":0} +CL:0000580 neutrophilic myelocyte biolink:Cell skos:exactMatch CL:0000580 neutrophilic myelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6405","subject_information_content":100.0} +CL:0000693 neurogliaform cell biolink:Cell skos:exactMatch CL:0000693 neurogliaform cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6406","subject_information_content":91.94953810872488} +CL:0001020 mature CD8_alpha-low Langerhans cell biolink:Cell skos:exactMatch CL:0001020 mature CD8_alpha-low Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6408","subject_information_content":100.0} +MESH:D018485 Muscle Fibers, Skeletal biolink:Cell skos:exactMatch MESH:D018485 Muscle Fibers, Skeletal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6407"} +UMLS:C5157493 CD34 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157493 CD34 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6409"} +UMLS:C5206827 Autologous Genetically-modified MAGE-A4 C1032 CD8alpha T Cells biolink:Cell skos:exactMatch NCIT:C162804 Autologous Genetically-modified MAGE-A4 C1032 CD8alpha T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6410","subject_information_content":100.0,"identifierIndex":0} +CL:0000632 hepatic stellate cell biolink:Cell skos:exactMatch CL:0000632 hepatic stellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6411","subject_information_content":100.0} +UMLS:C3274612 Allogeneic CD19-specific CAR-modified CD8 Plus Central Memory-derived Virus-specific T Cells biolink:Cell skos:exactMatch NCIT:C99215 Allogeneic CD19-specific CAR-modified CD8 Plus Central Memory-derived Virus-specific T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6412","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4724905 Autologous PD-L1/CD80/CD86-targeted CAR-T Cells biolink:Cell skos:exactMatch NCIT:C148216 Autologous PD-L1/CD80/CD86-targeted CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6413","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5173063 Micromegakaryocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173063 Micromegakaryocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6414"} +UMLS:C1515428 Thymic B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38329 Thymic B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6415","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4511163 Blast cell positive for cytoplasmic CD3 antigen biolink:Cell skos:exactMatch SNOMEDCT:725483008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6416","identifierIndex":0} +UMLS:C5163715 Erythrocytes | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163715 Erythrocytes | Dialysis fluid peritoneal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6417"} +CL:0000213 lining cell biolink:Cell skos:exactMatch CL:0000213 lining cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6418","subject_information_content":65.89649430567482} +UMLS:C5454449 Nucleated erythrocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5454449 Nucleated erythrocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6419"} +NCIT:C32052 Alpha Cell biolink:Cell skos:exactMatch NCIT:C32052 Alpha Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6420","subject_information_content":100.0} +UMLS:C4240446 Vascular smooth muscle cell of thoracic aorta biolink:Cell skos:exactMatch UMLS:C4240446 Vascular smooth muscle cell of thoracic aorta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6421"} +UMLS:C4518161 Population of all isolated head spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725385000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6422","identifierIndex":0} +UMLS:C1513493 Mott Cell biolink:Cell skos:exactMatch NCIT:C37079 Mott Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6423","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5421268 Autologous Nectin-4/FAP-targeted CAR-T Cells biolink:Cell skos:exactMatch NCIT:C172386 Autologous Nectin-4/FAP-targeted CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6424","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3900006 Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C116914 Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6425","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2698236 Mobilized Peripheral Blood Stem Cell biolink:Cell skos:exactMatch NCIT:C75576 Mobilized Peripheral Blood Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6426","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2951309 Endothelial cell of endocardium for left atrium biolink:Cell skos:exactMatch UMLS:C2951309 Endothelial cell of endocardium for left atrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6427"} +UMLS:C5157538 CD4+CD25+CD45RA+CD127Low+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157538 CD4+CD25+CD45RA+CD127Low+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6428"} +UMLS:C0228072 Large neuron biolink:Cell skos:exactMatch SNOMEDCT:24031008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6429","identifierIndex":0} +UMLS:C5216305 Plasma cell precursor|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216305 Plasma cell precursor|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6430"} +UMLS:C5221142 Eosinophils|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5221142 Eosinophils|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6431"} +UMLS:C5382906 HLA-B35 CMV specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382906 HLA-B35 CMV specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6432"} +UMLS:C1510779 Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36773 Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6433","subject_information_content":70.24569809088175,"identifierIndex":0} +UMLS:C2326580 Type A enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2326580 Type A enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6434"} +UMLS:C5380989 Cells.CD8.HLA-B7 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell skos:exactMatch UMLS:C5380989 Cells.CD8.HLA-B7 CMV specific.CMV antigen stimulated CD107a+b expressing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6435"} +UMLS:C2327878 Type S enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2327878 Type S enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6436"} +UMLS:C1517724 Large Atypical Platelet biolink:Cell skos:exactMatch NCIT:C37039 Large Atypical Platelet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6437","subject_information_content":100.0,"identifierIndex":0} +CL:0002347 CD27-high, CD11b-high natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002347 CD27-high, CD11b-high natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6438","subject_information_content":100.0} +CL:2000044 brain microvascular endothelial cell biolink:Cell skos:exactMatch CL:2000044 brain microvascular endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6439","subject_information_content":100.0} +CL:1000465 chromaffin cell of ovary biolink:Cell skos:exactMatch CL:1000465 chromaffin cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6440","subject_information_content":91.94953810872488} +CL:0000014 germ line stem cell biolink:Cell skos:exactMatch CL:0000014 germ line stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6441","subject_information_content":83.89907621744979} +CL:0002093 secondary polar body biolink:Cell skos:exactMatch CL:0002093 secondary polar body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6442","subject_information_content":100.0} +UMLS:C5161803 Cytoplasmic CD3 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5161803 Cytoplasmic CD3 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6443"} +UMLS:C1115673 Lymphocytes.lambda biolink:Cell skos:exactMatch UMLS:C1115673 Lymphocytes.lambda biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6444"} +UMLS:C3534344 100 round cells biolink:Cell skos:exactMatch UMLS:C3534344 100 round cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6445"} +CL:0000123 neuron associated cell (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000123 neuron associated cell (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6446","subject_information_content":88.2062864997332} +UMLS:C5216241 Leukocytes|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216241 Leukocytes|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6447"} +UMLS:C1183202 Set of cholinergic cells biolink:Cell skos:exactMatch UMLS:C1183202 Set of cholinergic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6448"} +CL:0000630 supporting cell biolink:Cell skos:exactMatch CL:0000630 supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6449","subject_information_content":69.99727273406087} +UMLS:C1708863 Malignant Cell with Large Nucleus and Abundant Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C53666 Malignant Cell with Large Nucleus and Abundant Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6450","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4724851 Allogeneic TCR alpha/beta-positive T-lymphocyte-depleted Peripheral Blood Stem Cells biolink:Cell skos:exactMatch NCIT:C148149 Allogeneic TCR alpha/beta-positive T-lymphocyte-depleted Peripheral Blood Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6451","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440269 Cells.CD198 biolink:Cell skos:exactMatch UMLS:C1440269 Cells.CD198 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6452"} +UMLS:C5173500 Mononuclear cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173500 Mononuclear cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6453"} +UMLS:C2336898 Hemal stem cell biolink:Cell skos:exactMatch UMLS:C2336898 Hemal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6454"} +UMLS:C1522639 Leukocyte (WBC) (MMHCC) biolink:Cell skos:exactMatch NCIT:C22570 Mouse Leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6455","subject_information_content":76.12516964539331,"identifierIndex":0} +UMLS:C3640949 Inducible CD4+CD25+ Regulatory T Cells biolink:Cell skos:exactMatch NCIT:C102789 Inducible CD4+CD25+ Regulatory T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6456","subject_information_content":100.0,"identifierIndex":0} +CL:0000496 green sensitive photoreceptor cell biolink:Cell skos:exactMatch CL:0000496 green sensitive photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6457","subject_information_content":100.0} +UMLS:C5177777 Polymorphonuclear cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177777 Polymorphonuclear cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6458"} +UMLS:C1514056 Neoplastic Perineural Cell biolink:Cell skos:exactMatch NCIT:C41413 Neoplastic Perineural Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6460","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C1513742 Multilobated Neoplastic B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C37169 Multilobated Neoplastic B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6461","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519515 Tingible Body Macrophage biolink:Cell skos:exactMatch NCIT:C36834 Tingible Body Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6462","subject_information_content":100.0,"identifierIndex":0} +CL:4023036 chandelier pvalb GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023036 chandelier pvalb GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6463","subject_information_content":100.0} +UMLS:C5426724 100 Cells.CD3-CD14-CD45+CD56+ biolink:Cell skos:exactMatch UMLS:C5426724 100 Cells.CD3-CD14-CD45+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6464"} +CL:0000187 muscle cell biolink:Cell skos:exactMatch CL:0000187 muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6465","subject_information_content":64.1642736952188} +UMLS:C1265905 Oat cell biolink:Cell skos:exactMatch UMLS:C1265905 Oat cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6466"} +UMLS:C5216214 Erythrocytes|NCnc|Pt|Dial fld prt biolink:Cell skos:exactMatch UMLS:C5216214 Erythrocytes|NCnc|Pt|Dial fld prt biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6467"} +CL:0000223 endodermal cell biolink:Cell skos:exactMatch CL:0000223 endodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6459","subject_information_content":94.92072406280138} +UMLS:C2335231 Pulmonary interstitial fibroblast biolink:Cell skos:exactMatch UMLS:C2335231 Pulmonary interstitial fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6468"} +CL:0002428 double-positive blast biolink:Cell skos:exactMatch CL:0002428 double-positive blast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6469","subject_information_content":100.0} +UMLS:C1514016 Neoplastic Medium-Sized Myeloblast with Basophilic Agranular Cytoplasm biolink:Cell skos:exactMatch NCIT:C37177 Neoplastic Medium-Sized Myeloblast with Basophilic Agranular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6470","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440229 Cells.aneuploid.population 1 biolink:Cell skos:exactMatch UMLS:C1440229 Cells.aneuploid.population 1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6471"} +UMLS:C1440302 Cells.CD38+CD56+ biolink:Cell skos:exactMatch UMLS:C1440302 Cells.CD38+CD56+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6472"} +CL:0000034 stem cell biolink:Cell skos:exactMatch CL:0000034 stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6473","subject_information_content":65.22986710590574} +UMLS:C5170919 Leukocytes | Blood product unit | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170919 Leukocytes | Blood product unit | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6474"} +UMLS:C1513967 Neoplastic Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C36962 Neoplastic Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6475","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C0684135 short neurons biolink:Cell skos:exactMatch UMLS:C0684135 short neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6476"} +UMLS:C5157358 CD19+CD38+IgM+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157358 CD19+CD38+IgM+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6477"} +UMLS:C1517359 GE92 biolink:Cell skos:exactMatch NCIT:C20262 GE92 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6478","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5237032 Antigen-presenting Cells-expressing HPV16 E6/E7 SQZ-PBMC-HPV biolink:Cell skos:exactMatch NCIT:C165256 Antigen-presenting Cells-expressing HPV16 E6/E7 SQZ-PBMC-HPV biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6479","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5235879 EBV Immortalized Lymphocytes biolink:Cell skos:exactMatch NCIT:C163993 EBV Immortalized Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6480","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709674 Primitive Mesenchymal Round to Oval Cell biolink:Cell skos:exactMatch NCIT:C48916 Primitive Mesenchymal Round to Oval Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6481","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333769 Vacuolated fibers biolink:Cell skos:exactMatch SNOMEDCT:71272000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6482","identifierIndex":0} +UMLS:C4761464 Autologous CD4+/CD8+ 4-1BB-CD3zeta-EGFR806-CAR-EGFRt/4-1BB-CD3zeta-CD19-CAR-HER2tG-expressing CARs T Cells biolink:Cell skos:exactMatch NCIT:C157090 Autologous CD4+/CD8+ 4-1BB-CD3zeta-EGFR806-CAR-EGFRt/4-1BB-CD3zeta-CD19-CAR-HER2tG-expressing CARs T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6483","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1441322 Viable cells biolink:Cell skos:exactMatch UMLS:C1441322 Viable cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6484"} +UMLS:C5174627 Neutrophils | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174627 Neutrophils | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6485"} +MESH:D003239 Connective Tissue Cells biolink:Cell skos:exactMatch MESH:D003239 Connective Tissue Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6486"} +UMLS:C5222944 CD3- CD16+ cells/100 cells in blood biolink:Cell skos:exactMatch UMLS:C5222944 CD3- CD16+ cells/100 cells in blood biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6487"} +UMLS:C3476509 Siderophages biolink:Cell skos:exactMatch UMLS:C3476509 Siderophages biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6488"} +UMLS:C4726059 Autologous CD19-CD8-CD28-CD3zeta-CAR-mbIL15-HER1t T Cells biolink:Cell skos:exactMatch NCIT:C150906 Autologous CD19-CD8-CD28-CD3zeta-CAR-mbIL15-HER1t T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6489","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1517540 Giant Astrocyte biolink:Cell skos:exactMatch NCIT:C36842 Giant Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6490","subject_information_content":100.0,"identifierIndex":0} +CL:0000790 immature alpha-beta T cell biolink:Cell skos:exactMatch CL:0000790 immature alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6491","subject_information_content":78.81980028025117} +UMLS:C5170903 Leukocyte clumps | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5170903 Leukocyte clumps | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6492"} +CL:0000126 macroglial cell biolink:Cell skos:exactMatch CL:0000126 macroglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6493","subject_information_content":79.68289625120555} +CL:0002082 type II cell of adrenal medulla biolink:Cell skos:exactMatch CL:0002082 type II cell of adrenal medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6494","subject_information_content":100.0} +UMLS:C3496262 Ats catecholamine cells biolink:Cell skos:exactMatch UMLS:C3496262 Ats catecholamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6495"} +UMLS:C2346934 Malignant Fusiform Osteoblast biolink:Cell skos:exactMatch NCIT:C67521 Malignant Fusiform Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6496","subject_information_content":100.0,"identifierIndex":0} +CL:0000637 chromophil cell of anterior pituitary gland biolink:Cell skos:exactMatch CL:0000637 chromophil cell of anterior pituitary gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6497","subject_information_content":83.89907621744979} +UMLS:C5171770 Lymphoma cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171770 Lymphoma cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6498"} +UMLS:C5419877 Anti-CD7 CAR T-cells biolink:Cell skos:exactMatch NCIT:C172817 Anti-CD7 CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6499","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514039 Neoplastic Myeloid Cell biolink:Cell skos:exactMatch NCIT:C41063 Neoplastic Myeloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6500","subject_information_content":77.02358060617253,"identifierIndex":0} +UMLS:C5187172 Fibroblasts^Control biolink:Cell skos:exactMatch UMLS:C5187172 Fibroblasts^Control biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6501"} +CL:0000841 mature conventional dendritic cell biolink:Cell skos:exactMatch CL:0000841 mature conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6502","subject_information_content":82.42859222307153} +UMLS:C5206705 Autologous LMP1/LMP2/EBNA1-specific HLA-A02:01/24:02/11:01-restricted TCR-expressing T-lymphocytes YT-E001 biolink:Cell skos:exactMatch NCIT:C162627 Autologous LMP1/LMP2/EBNA1-specific HLA-A02:01/24:02/11:01-restricted TCR-expressing T-lymphocytes YT-E001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6503","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3251824 Cell positive for CD4 antigen biolink:Cell skos:exactMatch SNOMEDCT:116745007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6504","identifierIndex":0} +CL:0000663 valve cell biolink:Cell skos:exactMatch CL:0000663 valve cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6505","subject_information_content":89.84144812560278} +CL:0000635 Deiter's cell biolink:Cell skos:exactMatch CL:0000635 Deiter's cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6506","subject_information_content":100.0} +UMLS:C5183793 Transitional cells | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5183793 Transitional cells | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6507"} +UMLS:C4722589 KTE-C19 biolink:Cell skos:exactMatch NCIT:C120309 Axicabtagene Ciloleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6508","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157660 CD79a cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157660 CD79a cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6509"} +CL:0000133 neurectodermal cell biolink:Cell skos:exactMatch CL:0000133 neurectodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6510","subject_information_content":94.92072406280138} +CL:0002125 CD27-negative gamma-delta T cell biolink:Cell skos:exactMatch CL:0002125 CD27-negative gamma-delta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6511","subject_information_content":100.0} +UMLS:C1267956 Lymphocyte positive for CD63 antigen biolink:Cell skos:exactMatch SNOMEDCT:117397007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6512","identifierIndex":0} +UMLS:C1267857 Lymphocyte positive for both CD8 antigen and CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:116816001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6513","identifierIndex":0} +UMLS:C0545589 Blood monocytic cell biolink:Cell skos:exactMatch UMLS:C0545589 Blood monocytic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6514"} +UMLS:C1955941 Precursor Cells, T-Lymphoid biolink:Cell skos:exactMatch MESH:D054504 Precursor Cells, T-Lymphoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6515","identifierIndex":0} +UMLS:C1440362 Cells.CD85 biolink:Cell skos:exactMatch UMLS:C1440362 Cells.CD85 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6516"} +CL:0000658 cuticle secreting cell biolink:Cell skos:exactMatch CL:0000658 cuticle secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6517","subject_information_content":91.94953810872488} +UMLS:C5157491 CD34 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157491 CD34 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6518"} +UMLS:C4733633 Autologous CD19-targeted CAR T Cells JWCAR029 biolink:Cell skos:exactMatch NCIT:C155878 Relmacabtagene Autoleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6519","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2334654 Type A cell of stomach biolink:Cell skos:exactMatch UMLS:C2334654 Type A cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6520"} +CL:1000325 jejunal goblet cell biolink:Cell skos:exactMatch CL:1000325 jejunal goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6521","subject_information_content":100.0} +UMLS:C5419456 Allogeneic Adipose-derived Mesenchymal Stem Cells biolink:Cell skos:exactMatch NCIT:C172113 Allogeneic Adipose-derived Mesenchymal Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6522","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708866 Malignant Chromaffin Cell biolink:Cell skos:exactMatch NCIT:C48560 Malignant Chromaffin Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6523","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2334580 Enterocyte of epithelium of duodenal gland biolink:Cell skos:exactMatch UMLS:C2334580 Enterocyte of epithelium of duodenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6524"} +CL:1001603 lung macrophage biolink:Cell skos:exactMatch CL:1001603 lung macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6525","subject_information_content":94.92072406280138} +UMLS:C5446774 Nalotimagene Carmaleucel biolink:Cell skos:exactMatch NCIT:C175827 Nalotimagene Carmaleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6526","subject_information_content":100.0,"identifierIndex":0} +CL:0008004 somatic muscle cell biolink:Cell skos:exactMatch CL:0008004 somatic muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6527","subject_information_content":89.84144812560278} +CL:0002543 vein endothelial cell biolink:Cell skos:exactMatch CL:0002543 vein endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6528","subject_information_content":80.66139376001811} +UMLS:C5157560 CD40 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157560 CD40 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6529"} +UMLS:C1709202 Neoplastic Spindle-Shaped Chondrocyte biolink:Cell skos:exactMatch NCIT:C53473 Neoplastic Spindle-Shaped Chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6530","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3496267 B4 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496267 B4 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6531"} +CL:0009021 stromal cell of lamina propria of large intestine biolink:Cell skos:exactMatch CL:0009021 stromal cell of lamina propria of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6532","subject_information_content":88.2062864997332} +UMLS:C5157545 CD4+CD45RA+CD45RB+CD45RC+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157545 CD4+CD45RA+CD45RB+CD45RC+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6533"} +UMLS:C1440380 Cells.cyclin D1 biolink:Cell skos:exactMatch UMLS:C1440380 Cells.cyclin D1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6534"} +CL:2000007 articular chondrocyte of knee joint biolink:Cell skos:exactMatch CL:2000007 articular chondrocyte of knee joint biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6535","subject_information_content":100.0} +UMLS:C1510732 Abnormal Myoepithelial Cell biolink:Cell skos:exactMatch NCIT:C36769 Abnormal Myoepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6536","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000855 sensory hair cell biolink:Cell skos:exactMatch CL:0000855 sensory hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6537","subject_information_content":77.69020780594161} +UMLS:C1512309 HL-60/MX2 biolink:Cell skos:exactMatch NCIT:C20229 HL-60/MX2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6538","subject_information_content":100.0,"identifierIndex":0} +CL:0001029 common dendritic progenitor biolink:Cell skos:exactMatch CL:0001029 common dendritic progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6539","subject_information_content":100.0} +UMLS:C1514045 Neoplastic Neuroendocrine Polygonal Cell biolink:Cell skos:exactMatch NCIT:C36933 Neoplastic Neuroendocrine Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6540","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1135919 Myoblasts, Smooth Muscle biolink:Cell skos:exactMatch MESH:D032390 Myoblasts, Smooth Muscle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6541","identifierIndex":0} +UMLS:C2328179 Enteric ganglion neuron biolink:Cell skos:exactMatch UMLS:C2328179 Enteric ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6542"} +CL:0000677 gut absorptive cell biolink:Cell skos:exactMatch CL:0000677 gut absorptive cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6543","subject_information_content":80.1558246084581} +UMLS:C5177618 Platelets | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177618 Platelets | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6544"} +UMLS:C4528422 NCI-60 Cell Line biolink:Cell skos:exactMatch NCIT:C139309 NCI-60 Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6545","subject_information_content":69.63974591466652,"identifierIndex":0} +UMLS:C2698131 Anti-CEA TCR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C79842 Anti-CEA TCR Retroviral Vector-Transduced Autologous Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6546","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5237177 Autologous gamma-globinG16D/sh RNA734 Gene-transduced CD34-positive Cells CSL200 biolink:Cell skos:exactMatch NCIT:C165434 Autologous gamma-globinG16D/sh RNA734 Gene-transduced CD34-positive Cells CSL200 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6547","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157236 CD10 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157236 CD10 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6548"} +UMLS:C5178319 Pronormoblasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178319 Pronormoblasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6549"} +UMLS:C1515626 gp100-Reactive Autologous Peripheral Blood Lymphocyte biolink:Cell skos:exactMatch NCIT:C38124 gp100-Reactive Autologous Peripheral Blood Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6550","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0224522 Synoviocytes biolink:Cell skos:exactMatch NCIT:C13059 Synovial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6551","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183176 Set of aminergic cells in reticular formation biolink:Cell skos:exactMatch UMLS:C1183176 Set of aminergic cells in reticular formation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6552"} +CL:1000681 kidney cortex interstitial cell biolink:Cell skos:exactMatch CL:1000681 kidney cortex interstitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6553","subject_information_content":100.0} +CL:2000094 nasal cavity respiratory epithelium epithelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch CL:2000094 nasal cavity respiratory epithelium epithelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6554","subject_information_content":100.0} +UMLS:C4038460 Non-hematopoietic stem cell biolink:Cell skos:exactMatch SNOMEDCT:725272001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6555","identifierIndex":0} +CL:0002486 strial intermediate cell biolink:Cell skos:exactMatch CL:0002486 strial intermediate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6556","subject_information_content":100.0} +UMLS:C4699464 Monotypic kappa plasma cells biolink:Cell skos:exactMatch UMLS:C4699464 Monotypic kappa plasma cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6557"} +MESH:D050527 Mesangial Cells biolink:Cell skos:exactMatch MESH:D050527 Mesangial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6558"} +UMLS:C1513943 Neoplastic Connective and Soft Tissue Spindle Cell biolink:Cell skos:exactMatch NCIT:C36954 Neoplastic Connective and Soft Tissue Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6559","subject_information_content":80.1558246084581,"identifierIndex":0} +UMLS:C4511515 Reticulocyte specimen biolink:Cell skos:exactMatch SNOMEDCT:725946000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6560","identifierIndex":0} +UMLS:C0224522 Synoviocytes biolink:Cell skos:exactMatch MESH:D000070918 Synoviocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6551","subject_information_content":100.0,"identifierIndex":1} +UMLS:C3686472 Biliary epithelial cell biolink:Cell skos:exactMatch UMLS:C3686472 Biliary epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6561"} +UMLS:C1440319 Cells.CD47 biolink:Cell skos:exactMatch UMLS:C1440319 Cells.CD47 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6562"} +UMLS:C5170900 Leukemia markers | Cerebral spinal fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5170900 Leukemia markers | Cerebral spinal fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6563"} +CL:0002182 surface mucosal cell of stomach biolink:Cell skos:exactMatch CL:0002182 surface mucosal cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6564","subject_information_content":100.0} +UMLS:C1267839 Lymphocyte negative for CD3 antigen and positive for both CD16 antigen and CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:116730000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6565","identifierIndex":0} +UMLS:C1881408 Lipid-Rich Neoplastic Spindle Cell biolink:Cell skos:exactMatch NCIT:C61424 Lipid-Rich Neoplastic Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6566","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708891 Malignant Neuroectodermal Large Cell biolink:Cell skos:exactMatch NCIT:C54043 Malignant Neuroectodermal Large Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6567","subject_information_content":100.0,"identifierIndex":0} +CL:1000223 lung neuroendocrine cell biolink:Cell skos:exactMatch CL:1000223 lung neuroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6568","subject_information_content":100.0} +CL:0000787 memory B cell biolink:Cell skos:exactMatch CL:0000787 memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6569","subject_information_content":75.32497402808036} +UMLS:C0224522 Synoviocytes biolink:Cell skos:exactMatch SNOMEDCT:76323008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6551","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1440403 Cells.t(12;16)(q13;p11.2)(DDIT3,FUS) biolink:Cell skos:exactMatch UMLS:C1440403 Cells.t(12;16)(q13;p11.2)(DDIT3,FUS) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6570"} +UMLS:C5216234 Leukocytes|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216234 Leukocytes|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6571"} +UMLS:C5177471 Plasma cells/100 leukocytes | Bronchial | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177471 Plasma cells/100 leukocytes | Bronchial | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6572"} +CL:1001437 hair-down neuron biolink:Cell skos:exactMatch CL:1001437 hair-down neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6573","subject_information_content":100.0} +UMLS:C0025171 Megaloblasts biolink:Cell skos:exactMatch UMLS:C0025171 Megaloblasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6574"} +UMLS:C5178162 Primary Spermatocytes | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5178162 Primary Spermatocytes | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6575"} +CL:0002489 double negative thymocyte biolink:Cell skos:exactMatch CL:0002489 double negative thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6576","subject_information_content":78.81980028025117} +NCIT:C13116 Metamyelocyte biolink:Cell skos:exactMatch NCIT:C13116 Metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6577","subject_information_content":100.0} +CL:1000698 kidney resident macrophage biolink:Cell skos:exactMatch CL:1000698 kidney resident macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6578","subject_information_content":100.0} +CL:0000731 urothelial cell biolink:Cell skos:exactMatch CL:0000731 urothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6579","subject_information_content":86.87026217152628} +UMLS:C2930257 Autologous cultured chondrocyte biolink:Cell skos:exactMatch SNOMEDCT:840610002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6580","identifierIndex":0} +UMLS:C5216217 Erythrocytes|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216217 Erythrocytes|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6581"} +UMLS:C5157365 CD2 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157365 CD2 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6582"} +UMLS:C1455888 Atypical Glandular Cell biolink:Cell skos:exactMatch NCIT:C36912 Atypical Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6583","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C0314588 Colony-Forming Units, Granulocyte-Erythroid-Macrophage-Megakaryocyte biolink:Cell skos:exactMatch SNOMEDCT:444993001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6584","identifierIndex":0} +UMLS:C5170951 Leukocytes other | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170951 Leukocytes other | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6585"} +UMLS:C4687450 Autologous TCR-engineered T-cells IMA201 biolink:Cell skos:exactMatch NCIT:C146779 Autologous TCR-engineered T-cells IMA201 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6586","subject_information_content":100.0,"identifierIndex":0} +CL:1001428 bladder urothelial cell biolink:Cell skos:exactMatch CL:1001428 bladder urothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6587","subject_information_content":100.0} +UMLS:C5170940 Leukocytes | Stool | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170940 Leukocytes | Stool | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6588"} +UMLS:C1183180 Set of aminergic cells in compact part of substantia nigra [A9] biolink:Cell skos:exactMatch UMLS:C1183180 Set of aminergic cells in compact part of substantia nigra [A9] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6589"} +UMLS:C1179580 Endothelial cell of sinusoid biolink:Cell skos:exactMatch UMLS:C1179580 Endothelial cell of sinusoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6590"} +UMLS:C1442179 Amniotic Fluid cells biolink:Cell skos:exactMatch UMLS:C1442179 Amniotic Fluid cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6591"} +UMLS:C1704336 Skeletal Myocytes biolink:Cell skos:exactMatch UMLS:C1704336 Skeletal Myocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6592"} +UMLS:C5173501 Mononuclear cells atypical | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173501 Mononuclear cells atypical | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6593"} +CL:0002109 B220-positive CD38-positive naive B cell biolink:Cell skos:exactMatch CL:0002109 B220-positive CD38-positive naive B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6594","subject_information_content":94.92072406280138} +UMLS:C5206851 Autologous Active IL-7 Receptor Co-expressing GD2-specific CAR T-cells biolink:Cell skos:exactMatch NCIT:C162873 Autologous Active IL-7 Receptor Co-expressing GD2-specific CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6595","subject_information_content":100.0,"identifierIndex":0} +CL:0019021 endothelial cell of periportal hepatic sinusoid biolink:Cell skos:exactMatch CL:0019021 endothelial cell of periportal hepatic sinusoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6596","subject_information_content":100.0} +UMLS:C5157395 CD22 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157395 CD22 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6597"} +CL:1000376 Purkinje myocyte of interventricular septum biolink:Cell skos:exactMatch CL:1000376 Purkinje myocyte of interventricular septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6598","subject_information_content":100.0} +UMLS:C5222947 CD3- CD16+ cells/100 cells in tissue biolink:Cell skos:exactMatch UMLS:C5222947 CD3- CD16+ cells/100 cells in tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6599"} +UMLS:C5157436 CD3+CD4+ (T4 helper) cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157436 CD3+CD4+ (T4 helper) cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6600"} +UMLS:C5157386 CD20+FMC7+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157386 CD20+FMC7+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6601"} +UMLS:C5157435 CD3+CD4+ (T4 helper) cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157435 CD3+CD4+ (T4 helper) cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6602"} +UMLS:C1441141 Immature reticulocyte biolink:Cell skos:exactMatch SNOMEDCT:409888001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6603","identifierIndex":0} +UMLS:C2340574 Horizontal cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2340574 Horizontal cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6604"} +CL:0002367 trabecular meshwork cell biolink:Cell skos:exactMatch CL:0002367 trabecular meshwork cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6606","subject_information_content":100.0} +UMLS:C4530304 Yescarta biolink:Cell skos:exactMatch UMLS:C4530304 Yescarta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6607"} +UMLS:C0037890 Spheroplasts biolink:Cell skos:exactMatch UMLS:C0037890 Spheroplasts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6608"} +CL:1000364 transitional myocyte of anterior internodal tract biolink:Cell skos:exactMatch CL:1000364 transitional myocyte of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6609","subject_information_content":100.0} +UMLS:C0228075 Small neuron biolink:Cell skos:exactMatch SNOMEDCT:16868009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6610","identifierIndex":0} +UMLS:C4239859 Vascular smooth muscle cell of arch of aorta biolink:Cell skos:exactMatch UMLS:C4239859 Vascular smooth muscle cell of arch of aorta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6611"} +CL:1000315 principal gastric gland goblet cell biolink:Cell skos:exactMatch CL:1000315 principal gastric gland goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6612","subject_information_content":100.0} +UMLS:C0815004 Neural Crest Cells biolink:Cell skos:exactMatch NCIT:C33937 Neural Crest Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6613","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2335794 Myocyte of atrial septal branch of anterior internodal tract biolink:Cell skos:exactMatch UMLS:C2335794 Myocyte of atrial septal branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6614"} +CL:0001203 CD8-positive, alpha-beta memory T cell, CD45RO-positive biolink:Cell skos:exactMatch CL:0001203 CD8-positive, alpha-beta memory T cell, CD45RO-positive biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6615","subject_information_content":91.94953810872488} +UMLS:C5382942 Interferon-gamma producing HLA-B7 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382942 Interferon-gamma producing HLA-B7 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6616"} +UMLS:C3282340 Cells, Cultured, Autologous biolink:Cell skos:exactMatch UMLS:C3282340 Cells, Cultured, Autologous biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6617"} +UMLS:C0333850 Hairy cell biolink:Cell skos:exactMatch UMLS:C0333850 Hairy cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6618"} +UMLS:C0882842 Cells.CD3-CD19+ biolink:Cell skos:exactMatch UMLS:C0882842 Cells.CD3-CD19+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6619"} +CL:1000351 basal cell of epithelium of respiratory bronchiole biolink:Cell skos:exactMatch CL:1000351 basal cell of epithelium of respiratory bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6620","subject_information_content":94.92072406280138} +UMLS:C1516945 Epithelioid Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37093 Epithelioid Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6621","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000884 mucosa-associated lymphoid tissue macrophage biolink:Cell skos:exactMatch CL:0000884 mucosa-associated lymphoid tissue macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6622","subject_information_content":84.76217218840416} +UMLS:C1519381 Neoplastic Small to Medium-Sized B-Lymphocyte with Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C36991 Neoplastic Small to Medium-Sized B-Lymphocyte with Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6623","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182788 Epithelial cell of glomerular capsule biolink:Cell skos:exactMatch UMLS:C1182788 Epithelial cell of glomerular capsule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6624"} +UMLS:C5166079 Granulocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166079 Granulocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6625"} +UMLS:C2339178 Epithelial cell of esophageal cardiac gland biolink:Cell skos:exactMatch UMLS:C2339178 Epithelial cell of esophageal cardiac gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6626"} +UMLS:C0427568 Platelet satellite biolink:Cell skos:exactMatch UMLS:C0427568 Platelet satellite biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6627"} +CL:0009069 CD8aa(II) thymocyte biolink:Cell skos:exactMatch CL:0009069 CD8aa(II) thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6628"} +MESH:D017777 Parasympathetic Fibers, Postganglionic biolink:Cell skos:exactMatch MESH:D017777 Parasympathetic Fibers, Postganglionic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6629"} +UMLS:C5175147 Nucleated cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175147 Nucleated cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6630"} +CL:1000414 endothelial cell of venule biolink:Cell skos:exactMatch CL:1000414 endothelial cell of venule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6605","subject_information_content":91.94953810872488} +UMLS:C2329620 Regular interatrial cardiac myocyte biolink:Cell skos:exactMatch UMLS:C2329620 Regular interatrial cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6631"} +CL:0000115 endothelial cell biolink:Cell skos:exactMatch CL:0000115 endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6633","subject_information_content":67.70823908345457} +UMLS:C5447417 Tumor-Infiltrating Follicular Helper T Cell biolink:Cell skos:exactMatch NCIT:C176756 Tumor-Infiltrating Follicular Helper T Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6632","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5236075 NSCLC-specific Marrow Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C164230 NSCLC-specific Marrow Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6634","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267973 Lymphocyte positive for CD82 antigen biolink:Cell skos:exactMatch SNOMEDCT:117413009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6635","identifierIndex":0} +UMLS:C4518177 Population of all cleft lymphocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726766006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6636","identifierIndex":0} +CL:0000588 odontoclast biolink:Cell skos:exactMatch CL:0000588 odontoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6637","subject_information_content":91.94953810872488} +UMLS:C5172547 Metamyelocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172547 Metamyelocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6638"} +CL:0000086 germ line stem cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000086 germ line stem cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6639","subject_information_content":91.94953810872488} +UMLS:C4763651 Allogeneic Tri-functional Anti-CD19 CAR-NK Cells biolink:Cell skos:exactMatch NCIT:C157484 Allogeneic Tri-functional Anti-CD19 CAR-NK Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6640","subject_information_content":100.0,"identifierIndex":0} +CL:1000350 basal cell of epithelium of terminal bronchiole biolink:Cell skos:exactMatch CL:1000350 basal cell of epithelium of terminal bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6641","subject_information_content":94.92072406280138} +UMLS:C4322730 CD5+CD25+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322730 CD5+CD25+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6642"} +CL:0002530 immature CD1a-positive dermal dendritic cell biolink:Cell skos:exactMatch CL:0002530 immature CD1a-positive dermal dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6643","subject_information_content":100.0} +CL:0001053 IgD-negative memory B cell biolink:Cell skos:exactMatch CL:0001053 IgD-negative memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6644","subject_information_content":84.76217218840416} +CL:0000338 neuroblast (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000338 neuroblast (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6645","subject_information_content":94.92072406280138} +UMLS:C5157422 CD3 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157422 CD3 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6646"} +CL:0009045 B cell of medullary sinus of lymph node biolink:Cell skos:exactMatch CL:0009045 B cell of medullary sinus of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6647","subject_information_content":100.0} +CL:0002359 placental hematopoietic stem cell biolink:Cell skos:exactMatch CL:0002359 placental hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6648","subject_information_content":100.0} +UMLS:C1267849 Lymphocyte positive for both CD5 antigen and CD8 antigen biolink:Cell skos:exactMatch SNOMEDCT:117535003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6649","identifierIndex":0} +CL:0000915 CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000915 CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6650","subject_information_content":100.0} +UMLS:C1514174 Pleomorphic Lymphocyte biolink:Cell skos:exactMatch NCIT:C36995 Pleomorphic Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6651","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C5442137 BCMA-specific CAR-expressing T lymphocytes biolink:Cell skos:exactMatch UMLS:C5442137 BCMA-specific CAR-expressing T lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6652"} +UMLS:C1267895 Lymphocyte positive for CD23 antigen biolink:Cell skos:exactMatch SNOMEDCT:117568005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6653","identifierIndex":0} +UMLS:C2603381 CD135 cells biolink:Cell skos:exactMatch UMLS:C2603381 CD135 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6654"} +UMLS:C4304489 Population of all macrophages in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719699000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6655","identifierIndex":0} +CL:1001580 hippocampus glial cell biolink:Cell skos:exactMatch CL:1001580 hippocampus glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6656","subject_information_content":94.92072406280138} +UMLS:C0029432 Osteocytes biolink:Cell skos:exactMatch NCIT:C12569 Osteocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6657","subject_information_content":100.0,"identifierIndex":0} +CL:0002548 fibroblast of cardiac tissue biolink:Cell skos:exactMatch CL:0002548 fibroblast of cardiac tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6658","subject_information_content":91.94953810872488} +UMLS:C5382749 CD107a+b expressing HLA-B7 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382749 CD107a+b expressing HLA-B7 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6659"} +CL:1000341 enterocyte of epithelium proper of jejunum biolink:Cell skos:exactMatch CL:1000341 enterocyte of epithelium proper of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6660","subject_information_content":100.0} +UMLS:C5157402 CD23 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157402 CD23 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6661"} +UMLS:C1519090 Pinealocyte biolink:Cell skos:exactMatch NCIT:C33323 Pineocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6662","subject_information_content":100.0,"identifierIndex":0} +CL:0002564 nucleus pulposus cell of intervertebral disc biolink:Cell skos:exactMatch CL:0002564 nucleus pulposus cell of intervertebral disc biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6663","subject_information_content":100.0} +CL:0008008 striated visceral muscle cell biolink:Cell skos:exactMatch CL:0008008 striated visceral muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6664","subject_information_content":94.92072406280138} +CL:0000379 sensory processing neuron biolink:Cell skos:exactMatch CL:0000379 sensory processing neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6665","subject_information_content":100.0} +UMLS:C2334994 Brush cell of epithelium of trachea biolink:Cell skos:exactMatch UMLS:C2334994 Brush cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6666"} +UMLS:C0029432 Osteocytes biolink:Cell skos:exactMatch MESH:D010011 Osteocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6657","subject_information_content":100.0,"identifierIndex":1} +UMLS:C5216207 Erythrocytes.nucleated|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216207 Erythrocytes.nucleated|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6667"} +UMLS:C0682551 Argyrophilic cell biolink:Cell skos:exactMatch UMLS:C0682551 Argyrophilic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6668"} +CL:0002184 basal proper cell of olfactory epithelium biolink:Cell skos:exactMatch CL:0002184 basal proper cell of olfactory epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6669","subject_information_content":100.0} +UMLS:C0333863 Dysplastic platelet biolink:Cell skos:exactMatch SNOMEDCT:25624002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6670","identifierIndex":0} +UMLS:C2359895 Platelets.reticulated biolink:Cell skos:exactMatch UMLS:C2359895 Platelets.reticulated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6671"} +UMLS:C2324544 Type I enteric ganglion neuron biolink:Cell skos:exactMatch UMLS:C2324544 Type I enteric ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6672"} +CL:0002199 oxyphil cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002199 oxyphil cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6673","subject_information_content":100.0} +UMLS:C5216296 Neutrophils|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216296 Neutrophils|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6674"} +CL:0000811 CD8-positive, alpha-beta thymocyte biolink:Cell skos:exactMatch CL:0000811 CD8-positive, alpha-beta thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6675","subject_information_content":91.94953810872488} +UMLS:C0029432 Osteocytes biolink:Cell skos:exactMatch SNOMEDCT:23821005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6657","subject_information_content":100.0,"identifierIndex":2} +UMLS:C1979646 Blasts.CD36+CD235a+ biolink:Cell skos:exactMatch UMLS:C1979646 Blasts.CD36+CD235a+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6676"} +UMLS:C5175005 Normoblasts | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175005 Normoblasts | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6677"} +UMLS:C0037888 Spherocytes biolink:Cell skos:exactMatch SNOMEDCT:259682008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6678","identifierIndex":0} +UMLS:C1708912 Malignant Spindle-Shaped Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49072 Malignant Spindle-Shaped Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6679","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1708920 Malignant Syncytiotrophoblastic Giant Cell biolink:Cell skos:exactMatch NCIT:C54119 Malignant Syncytiotrophoblastic Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6680","subject_information_content":100.0,"identifierIndex":0} +CL:0000900 naive thymus-derived CD8-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000900 naive thymus-derived CD8-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6681","subject_information_content":100.0} +CL:0000914 immature NK T cell biolink:Cell skos:exactMatch CL:0000914 immature NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6682","subject_information_content":88.2062864997332} +UMLS:C1519468 Neoplastic Spindle-Shaped Smooth Muscle Cell biolink:Cell skos:exactMatch NCIT:C36945 Neoplastic Spindle-Shaped Smooth Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6683","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5427250 Macrophages | Prostatic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5427250 Macrophages | Prostatic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6684"} +CL:0000735 lymph gland hemocyte biolink:Cell skos:exactMatch CL:0000735 lymph gland hemocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6685","subject_information_content":91.94953810872488} +UMLS:C1516949 Epithelioid Melanocyte biolink:Cell skos:exactMatch NCIT:C36870 Epithelioid Melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6686","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1257910 Aneuploid Cell biolink:Cell skos:exactMatch UMLS:C1257910 Aneuploid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6687"} +UMLS:C4086612 Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107 biolink:Cell skos:exactMatch NCIT:C124054 Multi-glioblastoma-peptide-targeting Autologous Dendritic Cell Vaccine ICT-107 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6688","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0815000 neuroblastoma cell biolink:Cell skos:exactMatch UMLS:C0815000 neuroblastoma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6689"} +UMLS:C5163751 Erythrocytes.ghost cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163751 Erythrocytes.ghost cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6690"} +UMLS:C2327673 Rod bipolar cell biolink:Cell skos:exactMatch UMLS:C2327673 Rod bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6691"} +UMLS:C0312740 Immune effector cell biolink:Cell skos:exactMatch NCIT:C28241 Effector Immune Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6692","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1440308 Cells.CD42a biolink:Cell skos:exactMatch UMLS:C1440308 Cells.CD42a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6693"} +UMLS:C2325931 Epithelial cell of small intestine biolink:Cell skos:exactMatch UMLS:C2325931 Epithelial cell of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6694"} +UMLS:C5163720 Erythrocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163720 Erythrocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6695"} +CL:1000381 type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell skos:exactMatch CL:1000381 type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6696","subject_information_content":100.0} +UMLS:C5157483 CD33 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157483 CD33 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6697"} +UMLS:C1183931 Basal cell of prostatic acinus biolink:Cell skos:exactMatch UMLS:C1183931 Basal cell of prostatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6698"} +CL:0000458 serotonin secreting cell biolink:Cell skos:exactMatch CL:0000458 serotonin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6699","subject_information_content":83.89907621744979} +CL:0002403 mature Vgamma2-positive fetal thymocyte biolink:Cell skos:exactMatch CL:0002403 mature Vgamma2-positive fetal thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6700","subject_information_content":100.0} +UMLS:C1519550 Dental pulp cell biolink:Cell skos:exactMatch NCIT:C33793 Tooth Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6701","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C0312740 Immune effector cell biolink:Cell skos:exactMatch SNOMEDCT:86224008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6692","subject_information_content":91.94953810872488,"identifierIndex":1} +NCIT:C33391 Pre-B Lymphocyte biolink:Cell skos:exactMatch NCIT:C33391 Pre-B Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6702","subject_information_content":100.0} +UMLS:C0080261 Tumor-Derived Activated Cells biolink:Cell skos:exactMatch UMLS:C0080261 Tumor-Derived Activated Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6703"} +CL:1001109 kidney loop of Henle cortical thick ascending limb epithelial cell biolink:Cell skos:exactMatch CL:1001109 kidney loop of Henle cortical thick ascending limb epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6704","subject_information_content":100.0} +CL:0000890 alternatively activated macrophage biolink:Cell skos:exactMatch CL:0000890 alternatively activated macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6705","subject_information_content":94.92072406280138} +UMLS:C0545578 Marrow plasmablast biolink:Cell skos:exactMatch UMLS:C0545578 Marrow plasmablast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6706"} +UMLS:C2323503 Set of leukocytes biolink:Cell skos:exactMatch UMLS:C2323503 Set of leukocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6707"} +CL:0011023 CD25+ mast cell biolink:Cell skos:exactMatch CL:0011023 CD25+ mast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6708","subject_information_content":100.0} +UMLS:C5157925 Cells | Right anterior chamber | NEI eyeGENE slit lamp biomicroscopy biolink:Cell skos:exactMatch UMLS:C5157925 Cells | Right anterior chamber | NEI eyeGENE slit lamp biomicroscopy biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6709"} +CL:0000478 oxytocin stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000478 oxytocin stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6710","subject_information_content":100.0} +UMLS:C5216243 Lymphocytes.abnormal|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216243 Lymphocytes.abnormal|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6711"} +UMLS:C1514000 Neoplastic Large Cell with Abundant Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C37163 Neoplastic Large Cell with Abundant Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6712","subject_information_content":94.92072406280138,"identifierIndex":0} +MESH:D000078722 PC-3 Cells biolink:Cell skos:exactMatch MESH:D000078722 PC-3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6713"} +UMLS:C1513947 Neoplastic Cytotrophoblastic Cell biolink:Cell skos:exactMatch NCIT:C37140 Neoplastic Cytotrophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6714","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4239930 Primitive ectodermal cell biolink:Cell skos:exactMatch UMLS:C4239930 Primitive ectodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6715"} +UMLS:C1519070 Physaliphorous Cell biolink:Cell skos:exactMatch NCIT:C36739 Physaliphorous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6716","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0882908 Cell positive for CD61 antigen biolink:Cell skos:exactMatch SNOMEDCT:116829001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6717","identifierIndex":0} +UMLS:C5181363 Spermatozoa Motile | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5181363 Spermatozoa Motile | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6718"} +CL:0000043 mature basophil biolink:Cell skos:exactMatch CL:0000043 mature basophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6719","subject_information_content":100.0} +UMLS:C4072767 Cells.4q12 chromosome region rearrangements biolink:Cell skos:exactMatch UMLS:C4072767 Cells.4q12 chromosome region rearrangements biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6720"} +UMLS:C5446452 Autologous CRISPR-Cas9 Modified/BCL11A Gene-disrupted Human Hematopoietic Stem and Progenitor Cells OTQ923 biolink:Cell skos:exactMatch NCIT:C175342 Autologous CRISPR-Cas9 Modified/BCL11A Gene-disrupted Human Hematopoietic Stem and Progenitor Cells OTQ923 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6721","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1719174 Cells.CD19+CD27+IgD+ biolink:Cell skos:exactMatch UMLS:C1719174 Cells.CD19+CD27+IgD+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6722"} +UMLS:C0333737 Muciphage biolink:Cell skos:exactMatch SNOMEDCT:57068003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6723","identifierIndex":0} +UMLS:C0872076 Pluripotent Stem Cells biolink:Cell skos:exactMatch NCIT:C12977 Pluripotent Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6724","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1525453 Cells.CD19+CD33+ biolink:Cell skos:exactMatch UMLS:C1525453 Cells.CD19+CD33+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6725"} +UMLS:C0333845 Polyploid plasmablast biolink:Cell skos:exactMatch SNOMEDCT:55093000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6726","identifierIndex":0} +UMLS:C0333721 Fusiform cell biolink:Cell skos:exactMatch NCIT:C32645 Fusiform Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6727","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157495 CD34 cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157495 CD34 cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6729"} +CL:0000902 induced T-regulatory cell biolink:Cell skos:exactMatch CL:0000902 induced T-regulatory cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6728","subject_information_content":100.0} +UMLS:C5185096 Viable CD34 cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5185096 Viable CD34 cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6730"} +UMLS:C1148324 Cells.CD20+CD25+ biolink:Cell skos:exactMatch UMLS:C1148324 Cells.CD20+CD25+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6731"} +UMLS:C4725769 Cord Blood-derived Expanded Allogeneic Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C150483 Cord Blood-derived Expanded Allogeneic Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6732","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440317 Cells.CD45RO biolink:Cell skos:exactMatch UMLS:C1440317 Cells.CD45RO biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6733"} +UMLS:C0872076 Pluripotent Stem Cells biolink:Cell skos:exactMatch MESH:D039904 Pluripotent Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6724","subject_information_content":89.84144812560278,"identifierIndex":1} +MESH:D015603 Keratinocytes biolink:Cell skos:exactMatch MESH:D015603 Keratinocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6734"} +UMLS:C2323993 Epithelial cell of bile duct biolink:Cell skos:exactMatch UMLS:C2323993 Epithelial cell of bile duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6735"} +UMLS:C0333721 Fusiform cell biolink:Cell skos:exactMatch SNOMEDCT:15409002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6727","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:1000453 epithelial cell of intermediate tubule biolink:Cell skos:exactMatch CL:1000453 epithelial cell of intermediate tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6736","subject_information_content":94.92072406280138} +CL:0002208 brush cell of bronchus biolink:Cell skos:exactMatch CL:0002208 brush cell of bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6737","subject_information_content":91.94953810872488} +UMLS:C2340140 Type F enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2340140 Type F enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6738"} +CL:0000314 milk secreting cell biolink:Cell skos:exactMatch CL:0000314 milk secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6739","subject_information_content":94.92072406280138} +UMLS:C1440350 Cells.CD3-CD7+ biolink:Cell skos:exactMatch UMLS:C1440350 Cells.CD3-CD7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6740"} +CL:0000361 gastrula cell biolink:Cell skos:exactMatch CL:0000361 gastrula cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6741","subject_information_content":100.0} +UMLS:C4733644 Autologous Anti-CD19 CAR T-cells IM19 biolink:Cell skos:exactMatch NCIT:C155888 Autologous Anti-CD19 CAR T-cells IM19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6742","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267940 Lymphocyte positive for CD49E antigen biolink:Cell skos:exactMatch SNOMEDCT:117383004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6743","identifierIndex":0} +UMLS:C0314595 Colony-forming unit of neutrophilic-monocytic lineage biolink:Cell skos:exactMatch SNOMEDCT:445287005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6744","identifierIndex":0} +UMLS:C0427534 Agranular white blood cell biolink:Cell skos:exactMatch SNOMEDCT:250293008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6745","identifierIndex":0} +NCIT:C32199 Beta Cell biolink:Cell skos:exactMatch NCIT:C32199 Beta Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6746","subject_information_content":100.0} +CL:0000923 CD4-positive type I NK T cell biolink:Cell skos:exactMatch CL:0000923 CD4-positive type I NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6747","subject_information_content":89.84144812560278} +UMLS:C0027950 neutrophil biolink:Cell skos:exactMatch UMLS:C0027950 neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6748"} +UMLS:C1519006 Peripheral (Post-Thymic) T-Lymphocyte and Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C39568 Peripheral (Post-Thymic) T-Lymphocyte and Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6749","subject_information_content":71.94430466897393,"identifierIndex":0} +CL:0000319 mucus secreting cell biolink:Cell skos:exactMatch CL:0000319 mucus secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6750","subject_information_content":75.32497402808036} +UMLS:C1317332 Dysmorphic erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:725993007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6751","identifierIndex":0} +UMLS:C1515878 Activated B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38333 Activated B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6752","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5418021 Anti-GPC3-CAR T-lymphocytes TAK-102 biolink:Cell skos:exactMatch NCIT:C173713 Anti-GPC3-CAR T-lymphocytes TAK-102 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6753","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3176907 Cells.cytoplasmic CD79a biolink:Cell skos:exactMatch UMLS:C3176907 Cells.cytoplasmic CD79a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6754"} +UMLS:C1514742 Reactive Transitional Cell biolink:Cell skos:exactMatch NCIT:C36915 Reactive Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6755","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0231044 Structure of primordial sex cell biolink:Cell skos:exactMatch NCIT:C33401 Primordial Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6756","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5157298 CD13 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157298 CD13 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6757"} +UMLS:C1513977 Neoplastic Glandular Cell with Eosinophilic Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C36881 Neoplastic Glandular Cell with Eosinophilic Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6758","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5157336 CD179a blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157336 CD179a blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6759"} +CL:1000481 transitional myocyte of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000481 transitional myocyte of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6760","subject_information_content":84.76217218840416} +UMLS:C1267936 Lymphocyte positive for CD49A antigen biolink:Cell skos:exactMatch SNOMEDCT:117379004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6761","identifierIndex":0} +UMLS:C0013485 Embryonal Carcinoma Stem Cells biolink:Cell skos:exactMatch MESH:D054278 Embryonal Carcinoma Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6762","identifierIndex":0} +CL:0000748 retinal bipolar neuron biolink:Cell skos:exactMatch CL:0000748 retinal bipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6763","subject_information_content":80.1558246084581} +CL:0009057 anorectum goblet cell biolink:Cell skos:exactMatch CL:0009057 anorectum goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6764","subject_information_content":100.0} +UMLS:C3496154 Aaq dopamine cells biolink:Cell skos:exactMatch UMLS:C3496154 Aaq dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6765"} +UMLS:C0231044 Structure of primordial sex cell biolink:Cell skos:exactMatch SNOMEDCT:23430009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6756","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C1708905 Malignant Skeletal Muscle Cell biolink:Cell skos:exactMatch NCIT:C49197 Malignant Skeletal Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6766","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C4524525 Derived Placental Blood Cell biolink:Cell skos:exactMatch NCIT:C133262 Derived Placental Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6767","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4744702 Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19 biolink:Cell skos:exactMatch NCIT:C156271 Autologous Anti-CD19 CAR TCR-zeta/4-1BB-transduced T-lymphocytes huCART19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6768","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1441017 Neutrophil cytoplasmic biolink:Cell skos:exactMatch UMLS:C1441017 Neutrophil cytoplasmic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6769"} +CL:0001658 visual pigment cell (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0001658 visual pigment cell (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6770","subject_information_content":89.84144812560278} +CL:2000031 lateral line ganglion neuron biolink:Cell skos:exactMatch CL:2000031 lateral line ganglion neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6771","subject_information_content":91.94953810872488} +UMLS:C0162597 Stromal Cells biolink:Cell skos:exactMatch UMLS:C0162597 Stromal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6772"} +CL:0000434 eccrine cell biolink:Cell skos:exactMatch CL:0000434 eccrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6773","subject_information_content":91.94953810872488} +UMLS:C4038488 Cervical cells.overexpressing HPV E6+E7 mRNA biolink:Cell skos:exactMatch UMLS:C4038488 Cervical cells.overexpressing HPV E6+E7 mRNA biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6774"} +UMLS:C4512352 Entire primary sclerotic mastoid cell biolink:Cell skos:exactMatch SNOMEDCT:727108007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6775","identifierIndex":0} +UMLS:C1267962 Lymphocyte positive for CD66E antigen biolink:Cell skos:exactMatch SNOMEDCT:117403001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6776","identifierIndex":0} +UMLS:C4763592 Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells BIVV003 biolink:Cell skos:exactMatch NCIT:C157393 Autologous CD34-positive BCL11A-disrupted Hematopoietic Progenitor Cells BIVV003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6777","subject_information_content":100.0,"identifierIndex":0} +CL:0002512 CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell biolink:Cell skos:exactMatch CL:0002512 CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6778","subject_information_content":100.0} +CL:0002086 specialized cardiac myocyte biolink:Cell skos:exactMatch CL:0002086 specialized cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6779","subject_information_content":73.34432806080346} +UMLS:C0229641 Eosinophilic promyelocyte biolink:Cell skos:exactMatch SNOMEDCT:4029003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6780","identifierIndex":0} +UMLS:C1519658 Trophoblast cell biolink:Cell skos:exactMatch NCIT:C33917 Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6781","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1441122 Purkinje cell cytoplasmic type Tr biolink:Cell skos:exactMatch UMLS:C1441122 Purkinje cell cytoplasmic type Tr biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6782"} +CL:0002621 gingival epithelial cell biolink:Cell skos:exactMatch CL:0002621 gingival epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6783","subject_information_content":100.0} +UMLS:C4510885 Blast cell positive for CD13 antigen biolink:Cell skos:exactMatch SNOMEDCT:724270000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6784","identifierIndex":0} +UMLS:C5157541 CD4+CD28+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157541 CD4+CD28+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6785"} +UMLS:C1179186 Serous cell biolink:Cell skos:exactMatch UMLS:C1179186 Serous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6786"} +MESH:D009000 Monocytes biolink:Cell skos:exactMatch MESH:D009000 Monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6787"} +CL:4023024 neurogliaform lamp5 GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023024 neurogliaform lamp5 GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6788","subject_information_content":100.0} +CL:1000416 obsolete myoepithelial cell of lactiferous gland biolink:Cell skos:exactMatch CL:1000416 obsolete myoepithelial cell of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6789","subject_information_content":88.2062864997332} +CL:1000493 mesothelial cell of visceral pleura biolink:Cell skos:exactMatch CL:1000493 mesothelial cell of visceral pleura biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6790","subject_information_content":100.0} +UMLS:C5206698 Autologous Anti-CD19/CD22 CAR T-cells AUTO3 biolink:Cell skos:exactMatch NCIT:C162620 Autologous Anti-CD19/CD22 CAR T-cells AUTO3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6791","subject_information_content":100.0,"identifierIndex":0} +CL:1000441 epithelial cell of viscerocranial mucosa biolink:Cell skos:exactMatch CL:1000441 epithelial cell of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6792","subject_information_content":94.92072406280138} +UMLS:C0333765 Target fibers biolink:Cell skos:exactMatch SNOMEDCT:39037003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6793","identifierIndex":0} +UMLS:C0242629 CD8-Positive T-Lymphocytes biolink:Cell skos:exactMatch UMLS:C0242629 CD8-Positive T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6794"} +UMLS:C5170939 Leukocytes | Sputum | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170939 Leukocytes | Sputum | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6795"} +UMLS:C0227882 Secondary oocyte biolink:Cell skos:exactMatch UMLS:C0227882 Secondary oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6796"} +UMLS:C4510904 Blast cell positive for CD179a antigen biolink:Cell skos:exactMatch SNOMEDCT:724249006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6797","identifierIndex":0} +UMLS:C3828741 NY-ESO-1(157-165) Peptide-pulsed Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C114380 NY-ESO-1(157-165) Peptide-pulsed Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6798","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3495544 A10 dopamine cells biolink:Cell skos:exactMatch UMLS:C3495544 A10 dopamine cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6799"} +UMLS:C1516837 Columnar cell of endocervix biolink:Cell skos:exactMatch NCIT:C33914 Endocervical Columnar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6800","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5154484 Basophils | Vitreous fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154484 Basophils | Vitreous fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6801"} +UMLS:C5186011 Band form neutrophils | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186011 Band form neutrophils | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6802"} +UMLS:C1517639 KA09 biolink:Cell skos:exactMatch NCIT:C20269 KA09 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6803","subject_information_content":100.0,"identifierIndex":0} +CL:1000288 myocyte of atrial branch of anterior internodal tract biolink:Cell skos:exactMatch CL:1000288 myocyte of atrial branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6804","subject_information_content":100.0} +CL:0000398 polygonal cell biolink:Cell skos:exactMatch CL:0000398 polygonal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6805","subject_information_content":100.0} +UMLS:C5425000 Cells.CD3+CD8+CD27+CD45RO+CD62L+ biolink:Cell skos:exactMatch UMLS:C5425000 Cells.CD3+CD8+CD27+CD45RO+CD62L+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6806"} +UMLS:C2331294 Interdental cell of cochlea biolink:Cell skos:exactMatch UMLS:C2331294 Interdental cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6807"} +CL:0000810 CD4-positive, alpha-beta thymocyte biolink:Cell skos:exactMatch CL:0000810 CD4-positive, alpha-beta thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6808","subject_information_content":91.94953810872488} +UMLS:C5205406 Allogeneic CD34+-enriched and CD45RA-depleted PBSCs biolink:Cell skos:exactMatch NCIT:C160621 Allogeneic CD34+-enriched and CD45RA-depleted PBSCs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6809","subject_information_content":100.0,"identifierIndex":0} +CL:1000839 kidney proximal straight tubule epithelial cell biolink:Cell skos:exactMatch CL:1000839 kidney proximal straight tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6810","subject_information_content":100.0} +UMLS:C4518160 Population of all large oval head spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725387008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6811","identifierIndex":0} +CL:0002340 luminal cell of prostate epithelium biolink:Cell skos:exactMatch CL:0002340 luminal cell of prostate epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6812","subject_information_content":91.94953810872488} +UMLS:C0229660 Promyelomonocyte biolink:Cell skos:exactMatch SNOMEDCT:68936005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6813","identifierIndex":0} +UMLS:C1708709 Lipoblast-Like Malignant Transitional Cell biolink:Cell skos:exactMatch NCIT:C54562 Lipoblast-Like Malignant Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6814","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3498290 A6sc cell group biolink:Cell skos:exactMatch UMLS:C3498290 A6sc cell group biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6815"} +UMLS:C5432279 Allocetra biolink:Cell skos:exactMatch UMLS:C5432279 Allocetra biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6816"} +UMLS:C0227531 Ito Cells biolink:Cell skos:exactMatch SNOMEDCT:39977009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6817","identifierIndex":0} +UMLS:C1707879 Eccrine Cell biolink:Cell skos:exactMatch NCIT:C43373 Eccrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6818","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514659 RL20 biolink:Cell skos:exactMatch NCIT:C20293 RL20 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6819","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1979182 Blasts.CD179a biolink:Cell skos:exactMatch UMLS:C1979182 Blasts.CD179a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6820"} +UMLS:C1513960 Neoplastic Epithelial Clear Cell biolink:Cell skos:exactMatch NCIT:C36756 Neoplastic Epithelial Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6821","subject_information_content":81.20444558259193,"identifierIndex":0} +UMLS:C1709677 Bone Marrow Myeloid Stem Cell with Some Degree of Commitment to the Erythroid Lineage biolink:Cell skos:exactMatch NCIT:C43220 Bone Marrow Myeloid Stem Cell with Some Degree of Commitment to the Erythroid Lineage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6822","subject_information_content":100.0,"identifierIndex":0} +CL:0000132 corneal endothelial cell biolink:Cell skos:exactMatch CL:0000132 corneal endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6823","subject_information_content":100.0} +CL:1000385 type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell skos:exactMatch CL:1000385 type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6824","subject_information_content":100.0} +UMLS:C4697024 Cells.CD27+IgD+IgM+ biolink:Cell skos:exactMatch UMLS:C4697024 Cells.CD27+IgD+IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6825"} +UMLS:C4323048 Oocyte in metaphase II arrest biolink:Cell skos:exactMatch UMLS:C4323048 Oocyte in metaphase II arrest biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6826"} +UMLS:C5166080 Granulocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5166080 Granulocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6827"} +UMLS:C1516097 B lymphoblast biolink:Cell skos:exactMatch NCIT:C33931 Precursor B-Lymphoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6828","subject_information_content":100.0,"identifierIndex":0} +NCIT:C43420 Adult Stem Cell biolink:Cell skos:exactMatch NCIT:C43420 Adult Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6829","subject_information_content":100.0} +UMLS:C4301984 Non-motile spermatozoa biolink:Cell skos:exactMatch SNOMEDCT:723203005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6830","identifierIndex":0} +UMLS:C1514100 Neoplastic Spindle Cell biolink:Cell skos:exactMatch NCIT:C36823 Neoplastic Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6831","subject_information_content":74.37813033179641,"identifierIndex":0} +UMLS:C5382940 Interferon-gamma producing HLA-A2 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382940 Interferon-gamma producing HLA-A2 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6832"} +CL:0000719 posterior cone cell (sensu Endopterygota) biolink:Cell skos:exactMatch CL:0000719 posterior cone cell (sensu Endopterygota) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6833","subject_information_content":100.0} +UMLS:C1514110 Neoplastic T-Lymphocyte and Neoplastic Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C39566 Neoplastic T-Lymphocyte and Neoplastic Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6834","subject_information_content":74.60362031400695,"identifierIndex":0} +UMLS:C1515234 Technion ES Cell Line biolink:Cell skos:exactMatch NCIT:C20295 Technion ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6835","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:0001005 mature CD8_alpha-positive CD11b-negative dendritic cell biolink:Cell skos:exactMatch CL:0001005 mature CD8_alpha-positive CD11b-negative dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6836","subject_information_content":100.0} +UMLS:C1514654 RL05 biolink:Cell skos:exactMatch NCIT:C20288 RL05 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6837","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5161800 Cytoplasmic CD22 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5161800 Cytoplasmic CD22 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6838"} +MESH:D046569 Neuroepithelial Cells biolink:Cell skos:exactMatch MESH:D046569 Neuroepithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6839"} +CL:1000365 transitional myocyte of atrial septal branch of anterior internodal tract biolink:Cell skos:exactMatch CL:1000365 transitional myocyte of atrial septal branch of anterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6840","subject_information_content":100.0} +CL:1001595 rectum glandular cell biolink:Cell skos:exactMatch CL:1001595 rectum glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6841","subject_information_content":100.0} +UMLS:C4510911 Blast cell positive for CD33 antigen biolink:Cell skos:exactMatch SNOMEDCT:725171003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6843","identifierIndex":0} +UMLS:C4289596 Effector Memory T Cells biolink:Cell skos:exactMatch NCIT:C126419 Effector Memory T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6842","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157548 CD4+CD45RA+CD45RB+CD45RC+ cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157548 CD4+CD45RA+CD45RB+CD45RC+ cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6844"} +UMLS:C2325885 Free macrophage biolink:Cell skos:exactMatch UMLS:C2325885 Free macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6845"} +UMLS:C1257912 Haploid Cell biolink:Cell skos:exactMatch UMLS:C1257912 Haploid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6846"} +UMLS:C4724902 Donor-derived Cytokine-induced Memory-like Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C148213 Donor-derived Cytokine-induced Memory-like Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6847","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4072756 Cells.RARA gene rearrangements biolink:Cell skos:exactMatch UMLS:C4072756 Cells.RARA gene rearrangements biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6848"} +CL:0007005 notochordal cell biolink:Cell skos:exactMatch CL:0007005 notochordal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6849","subject_information_content":91.94953810872488} +UMLS:C4266557 Hematopoietic progenitor cells^BPU biolink:Cell skos:exactMatch UMLS:C4266557 Hematopoietic progenitor cells^BPU biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6850"} +CL:0000477 ovarian follicle cell biolink:Cell skos:exactMatch CL:0000477 ovarian follicle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6851","subject_information_content":91.94953810872488} +UMLS:C0178813 protoplast/spheroplast biolink:Cell skos:exactMatch UMLS:C0178813 protoplast/spheroplast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6852"} +UMLS:C5420488 Allogeneic Anti-BCMA/CS1 Bispecific CAR-T Cells biolink:Cell skos:exactMatch NCIT:C173967 Allogeneic Anti-BCMA/CS1 Bispecific CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6853","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511185 Bizarre Neoplastic Stromal Giant Cell biolink:Cell skos:exactMatch NCIT:C36826 Bizarre Neoplastic Stromal Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6854","subject_information_content":100.0,"identifierIndex":0} +CL:0002435 CD69-positive, CD8-positive single-positive thymocyte biolink:Cell skos:exactMatch CL:0002435 CD69-positive, CD8-positive single-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6855","subject_information_content":100.0} +UMLS:C5446871 Welgenaleucel biolink:Cell skos:exactMatch UMLS:C5448048 UWC 19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6856","subject_information_content":100.0,"identifierIndex":0} +CL:0000779 multinuclear osteoclast biolink:Cell skos:exactMatch CL:0000779 multinuclear osteoclast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6857","subject_information_content":94.92072406280138} +UMLS:C2346881 Autologous Ad-CD154-Transduced CLL B Cells biolink:Cell skos:exactMatch NCIT:C68842 Autologous Ad-CD154-Transduced CLL B Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6858","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5401389 Conditionally Reprogrammed Cells biolink:Cell skos:exactMatch NCIT:C172257 Conditionally Reprogrammed Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6859","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514019 Neoplastic Medium-Sized to Large Lymphocyte biolink:Cell skos:exactMatch NCIT:C36992 Neoplastic Medium-Sized to Large Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6860","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0225356 Myoepithelial cell biolink:Cell skos:exactMatch UMLS:C0225356 Myoepithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6861"} +UMLS:C0017528 Giant Cells, Langhans biolink:Cell skos:exactMatch NCIT:C12562 Langhans Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6862","subject_information_content":100.0,"identifierIndex":0} +CL:4023053 spinal interneuron synapsing Betz cell biolink:Cell skos:exactMatch CL:4023053 spinal interneuron synapsing Betz cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6863","subject_information_content":100.0} +CL:0000113 mononuclear phagocyte biolink:Cell skos:exactMatch CL:0000113 mononuclear phagocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6864","subject_information_content":100.0} +CL:0000906 activated CD8-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000906 activated CD8-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6865","subject_information_content":94.92072406280138} +UMLS:C5446871 Welgenaleucel biolink:Cell skos:exactMatch NCIT:C175943 Welgenaleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6856","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4484161 Cells.Ki-67 nuclear biolink:Cell skos:exactMatch UMLS:C4484161 Cells.Ki-67 nuclear biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6866"} +CL:0002602 annulus pulposus cell biolink:Cell skos:exactMatch CL:0002602 annulus pulposus cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6867","subject_information_content":100.0} +CL:1000296 epithelial cell of urethra biolink:Cell skos:exactMatch CL:1000296 epithelial cell of urethra biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6868","subject_information_content":91.94953810872488} +CL:1001607 articular chondrocyte biolink:Cell skos:exactMatch CL:1001607 articular chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6869","subject_information_content":91.94953810872488} +UMLS:C2332530 Goblet cell of epithelium proper of ileum biolink:Cell skos:exactMatch UMLS:C2332530 Goblet cell of epithelium proper of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6870"} +CL:1000456 mesothelial cell of parietal peritoneum biolink:Cell skos:exactMatch CL:1000456 mesothelial cell of parietal peritoneum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6871","subject_information_content":100.0} +CL:0002063 type II pneumocyte biolink:Cell skos:exactMatch CL:0002063 type II pneumocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6872","subject_information_content":100.0} +UMLS:C5157390 CD21 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157390 CD21 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6873"} +UMLS:C0682539 cuboid cell biolink:Cell skos:exactMatch UMLS:C0682539 cuboid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6874"} +CL:0001072 CD34-negative, CD117-positive innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001072 CD34-negative, CD117-positive innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6875","subject_information_content":91.94953810872488} +CL:4023050 L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023050 L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6876","subject_information_content":91.94953810872488} +UMLS:C1181966 Chromaffin cell of adrenal gland biolink:Cell skos:exactMatch UMLS:C1181966 Chromaffin cell of adrenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6877"} +UMLS:C1265917 Hand-Schüller-Christian histiocyte biolink:Cell skos:exactMatch SNOMEDCT:123635008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6878","identifierIndex":0} +UMLS:C4737460 terminal deoxyribonucleotidyl transferase cells per 100 cells biolink:Cell skos:exactMatch UMLS:C4737460 terminal deoxyribonucleotidyl transferase cells per 100 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6879"} +UMLS:C0333807 Macrocytic hyperchromic erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:23305007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6880","identifierIndex":0} +CL:0002173 extraglomerular mesangial cell biolink:Cell skos:exactMatch CL:0002173 extraglomerular mesangial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6881","subject_information_content":100.0} +UMLS:C5222945 CD3- CD16+ cells/100 cells in body fluid biolink:Cell skos:exactMatch UMLS:C5222945 CD3- CD16+ cells/100 cells in body fluid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6882"} +UMLS:C5205487 Autologous Anti-CS1 Hinge-optimized CAR-4-1BB-EGFRt-expressing Memory-enriched T-cells biolink:Cell skos:exactMatch NCIT:C160711 Autologous Anti-CS1 Hinge-optimized CAR-4-1BB-EGFRt-expressing Memory-enriched T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6883","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1978414 Blast cell positive for CD22 antigen biolink:Cell skos:exactMatch SNOMEDCT:724266008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6884","identifierIndex":0} +UMLS:C2336790 Macroglial cell biolink:Cell skos:exactMatch UMLS:C2336790 Macroglial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6885"} +UMLS:C1978609 Cells.CD3+CD57+ biolink:Cell skos:exactMatch UMLS:C1978609 Cells.CD3+CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6886"} +UMLS:C5157302 CD135 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157302 CD135 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6887"} +NCIT:C12578 Epithelial Cell biolink:Cell skos:exactMatch NCIT:C12578 Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6888","subject_information_content":64.27530379215159} +CL:0000510 paneth cell biolink:Cell skos:exactMatch CL:0000510 paneth cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6889","subject_information_content":85.74066969721673} +CL:0001022 CD115-positive monocyte biolink:Cell skos:exactMatch CL:0001022 CD115-positive monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6890","subject_information_content":82.42859222307153} +CL:3000003 sympathetic cholinergic neuron biolink:Cell skos:exactMatch CL:3000003 sympathetic cholinergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6891","subject_information_content":100.0} +UMLS:C4528709 Autologous Genetically-modified MAGE-A4 C1032 T Cells biolink:Cell skos:exactMatch NCIT:C138107 Autologous Genetically-modified MAGE-A4 C1032 T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6892","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519741 UC06 biolink:Cell skos:exactMatch NCIT:C20306 UC06 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6893","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182665 Internal epithelial cell of tympanic membrane biolink:Cell skos:exactMatch UMLS:C1182665 Internal epithelial cell of tympanic membrane biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6894"} +UMLS:C1513471 Monolobed Megakaryocyte biolink:Cell skos:exactMatch NCIT:C37048 Monolobed Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6895","subject_information_content":100.0,"identifierIndex":0} +CL:2000069 gallbladder fibroblast biolink:Cell skos:exactMatch CL:2000069 gallbladder fibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6896","subject_information_content":100.0} +UMLS:C4684830 Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143 biolink:Cell skos:exactMatch NCIT:C142807 Autologous Anti-BCMA-CAR-expressing CD4+/CD8+ T-lymphocytes FCARH143 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6897","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440345 Cells.CD66c biolink:Cell skos:exactMatch UMLS:C1440345 Cells.CD66c biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6898"} +UMLS:C3900058 Allogeneic Multivirus-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C115107 Allogeneic Multivirus-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6899","subject_information_content":100.0,"identifierIndex":0} +CL:0000301 pole cell biolink:Cell skos:exactMatch CL:0000301 pole cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6900","subject_information_content":100.0} +UMLS:C1518177 Malignant Epithelial Large Cell biolink:Cell skos:exactMatch NCIT:C36822 Malignant Epithelial Large Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6901","subject_information_content":82.42859222307153,"identifierIndex":0} +UMLS:C5419238 Atleradstrocel biolink:Cell skos:exactMatch NCIT:C171651 Atleradstrocel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6902","subject_information_content":100.0,"identifierIndex":0} +CL:0000525 syncytiotrophoblast cell biolink:Cell skos:exactMatch CL:0000525 syncytiotrophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6903","subject_information_content":100.0} +CL:2000010 dermis blood vessel endothelial cell biolink:Cell skos:exactMatch CL:2000010 dermis blood vessel endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6904","subject_information_content":100.0} +UMLS:C1513941 Neoplastic Clear Cell Oncocyte biolink:Cell skos:exactMatch NCIT:C36939 Neoplastic Clear Cell Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6905","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0042542 Vero Cells biolink:Cell skos:exactMatch MESH:D014709 Vero Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6906","identifierIndex":0} +UMLS:C5171660 Lymphocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171660 Lymphocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6907"} +CL:0000554 gastrin stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000554 gastrin stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6908","subject_information_content":100.0} +UMLS:C5173431 Monocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173431 Monocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6909"} +UMLS:C0882836 CD3+CD8+ cell biolink:Cell skos:exactMatch SNOMEDCT:732280007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6910","identifierIndex":0} +UMLS:C4697017 Cells.CD21- biolink:Cell skos:exactMatch UMLS:C4697017 Cells.CD21- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6911"} +UMLS:C3496194 Epidermal cells biolink:Cell skos:exactMatch UMLS:C3496194 Epidermal cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6912"} +UMLS:C5154002 B lymphocytes | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5154002 B lymphocytes | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6913"} +UMLS:C5157359 CD19+IgM+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157359 CD19+IgM+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6914"} +UMLS:C4518155 Population of all spermatozoa with abnormal midpiece in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725226000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6915","identifierIndex":0} +UMLS:C4266481 Tc-99m tagged RBC biolink:Cell skos:exactMatch UMLS:C4266481 Tc-99m tagged RBC biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6916"} +CL:0002212 type II muscle cell biolink:Cell skos:exactMatch CL:0002212 type II muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6917","subject_information_content":91.94953810872488} +UMLS:C1710678 Wolffian Duct Cell biolink:Cell skos:exactMatch NCIT:C43425 Wolffian Duct Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6918","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522253 Ovary - Lutein Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22664 Mouse Lutein Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6919","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216259 Malignant cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216259 Malignant cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6920"} +UMLS:C1882047 Neoplastic Epithelial Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C61295 Neoplastic Epithelial Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6921","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C2698130 Anti-CEA IgCD28TCR-Transduced Autologous T Cells biolink:Cell skos:exactMatch NCIT:C77865 Anti-CEA IgCD28TCR-Transduced Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6922","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1522171 Lung - Clara Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22603 Mouse Club Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6923","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5426719 Viable CD3 cells biolink:Cell skos:exactMatch UMLS:C5426719 Viable CD3 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6924"} +CL:0002171 globose cell of olfactory epithelium biolink:Cell skos:exactMatch CL:0002171 globose cell of olfactory epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6925","subject_information_content":100.0} +CL:0002422 enucleated reticulocyte biolink:Cell skos:exactMatch CL:0002422 enucleated reticulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6926","subject_information_content":91.94953810872488} +CL:2000032 peripheral nervous system neuron biolink:Cell skos:exactMatch CL:2000032 peripheral nervous system neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6927","subject_information_content":85.74066969721673} +UMLS:C4243124 Set of erythropoietic cells biolink:Cell skos:exactMatch UMLS:C4243124 Set of erythropoietic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6928"} +UMLS:C5216203 Eosinophils|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216203 Eosinophils|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6929"} +UMLS:C0682545 Basophil cell biolink:Cell skos:exactMatch NCIT:C32198 Basophilic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6930","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0008019 mesenchymal cell biolink:Cell skos:exactMatch CL:0008019 mesenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6931","subject_information_content":88.2062864997332} +CL:4023108 oxytocin-secreting magnocellular cell biolink:Cell skos:exactMatch CL:4023108 oxytocin-secreting magnocellular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6932","subject_information_content":100.0} +UMLS:C1709163 Neoplastic Adrenal Cortical Oncocyte biolink:Cell skos:exactMatch NCIT:C48448 Neoplastic Adrenal Cortical Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6933","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512101 Dysplastic Erythroblast biolink:Cell skos:exactMatch NCIT:C37056 Dysplastic Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6934","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2324444 Set of adrenergic cells in anterior reticular nucleus [C2] biolink:Cell skos:exactMatch UMLS:C2324444 Set of adrenergic cells in anterior reticular nucleus [C2] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6935"} +CL:0000709 R8 photoreceptor cell biolink:Cell skos:exactMatch CL:0000709 R8 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6936","subject_information_content":100.0} +UMLS:C4727557 Allogeneic CD19CAR-transfected Cytokine-induced Killer Cells biolink:Cell skos:exactMatch NCIT:C154284 Allogeneic CD19CAR-transfected Cytokine-induced Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6937","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0003154 Anterior Horn Cells biolink:Cell skos:exactMatch NCIT:C12645 Anterior Horn Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6938","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4697058 Predominant leukocyte biolink:Cell skos:exactMatch UMLS:C4697058 Predominant leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6939"} +UMLS:C5392177 Satellite Glia biolink:Cell skos:exactMatch UMLS:C5392177 Satellite Glia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6940"} +UMLS:C1513528 Mouse Cell Line biolink:Cell skos:exactMatch NCIT:C20220 Mouse Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6941","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1267902 Lymphocyte positive for CD29 antigen biolink:Cell skos:exactMatch SNOMEDCT:117573004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6942","identifierIndex":0} +UMLS:C1292099 IgE B lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:115605003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6943","identifierIndex":0} +CL:0000286 hyphal cell biolink:Cell skos:exactMatch CL:0000286 hyphal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6944","subject_information_content":100.0} +CL:0000836 promyelocyte biolink:Cell skos:exactMatch CL:0000836 promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6945","subject_information_content":86.87026217152628} +MESH:D009046 Motor Neurons biolink:Cell skos:exactMatch MESH:D009046 Motor Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6946"} +UMLS:C1545464 Cells.t(2;13)(q36.1;q14.4)(PAX3,FOXO1) biolink:Cell skos:exactMatch UMLS:C1545464 Cells.t(2;13)(q36.1;q14.4)(PAX3,FOXO1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6947"} +UMLS:C0003154 Anterior Horn Cells biolink:Cell skos:exactMatch MESH:D000870 Anterior Horn Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6938","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1519778 Undifferentiated Carcinoma Cell biolink:Cell skos:exactMatch NCIT:C37085 Undifferentiated Carcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6948","subject_information_content":100.0,"identifierIndex":0} +CL:1000326 ileal goblet cell biolink:Cell skos:exactMatch CL:1000326 ileal goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6949","subject_information_content":100.0} +CL:0002220 interstitial cell of pineal gland biolink:Cell skos:exactMatch CL:0002220 interstitial cell of pineal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6950","subject_information_content":100.0} +UMLS:C1180237 Cuboidal endothelial cell of vascular tree biolink:Cell skos:exactMatch UMLS:C1180237 Cuboidal endothelial cell of vascular tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6951"} +UMLS:C1317511 Lymphocytes.immunoblastic biolink:Cell skos:exactMatch NCIT:C34032 Immunoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6952","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1707673 Dendritic Melanoma Cell biolink:Cell skos:exactMatch NCIT:C53275 Dendritic Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6953","subject_information_content":100.0,"identifierIndex":0} +CL:0002324 myoepithelial cell of mammary gland biolink:Cell skos:exactMatch CL:0002324 myoepithelial cell of mammary gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6954","subject_information_content":100.0} +CL:0000358 sphincter associated smooth muscle cell biolink:Cell skos:exactMatch CL:0000358 sphincter associated smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6955","subject_information_content":94.92072406280138} +UMLS:C2328210 Basal cell of epithelium of bronchus biolink:Cell skos:exactMatch UMLS:C2328210 Basal cell of epithelium of bronchus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6956"} +UMLS:C5163556 Epithelial cells.squamous | Sputum | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163556 Epithelial cells.squamous | Sputum | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6957"} +UMLS:C4300406 Cells.chromosome region 11q22.3 biolink:Cell skos:exactMatch UMLS:C4300406 Cells.chromosome region 11q22.3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6958"} +CL:1000373 transitional myocyte of ventricular part of atrioventricular bundle biolink:Cell skos:exactMatch CL:1000373 transitional myocyte of ventricular part of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6959","subject_information_content":100.0} +CL:0010010 cerebellar stellate cell biolink:Cell skos:exactMatch CL:0010010 cerebellar stellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6960","subject_information_content":100.0} +UMLS:C4322731 CD22+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322731 CD22+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6961"} +UMLS:C1317511 Lymphocytes.immunoblastic biolink:Cell skos:exactMatch SNOMEDCT:725672006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6952","subject_information_content":91.94953810872488,"identifierIndex":1} +NCIT:C12656 Pericyte biolink:Cell skos:exactMatch NCIT:C12656 Pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6962","subject_information_content":94.92072406280138} +UMLS:C2336812 Type X enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2336812 Type X enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6963"} +UMLS:C0229604 Reticuloendothelial cell biolink:Cell skos:exactMatch SNOMEDCT:27604002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6964","identifierIndex":0} +MESH:D056809 Alveolar Epithelial Cells biolink:Cell skos:exactMatch MESH:D056809 Alveolar Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6965"} +CL:0002645 endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa biolink:Cell skos:exactMatch CL:0002645 endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6966","subject_information_content":100.0} +UMLS:C4072759 Cells.MYB gene biolink:Cell skos:exactMatch UMLS:C4072759 Cells.MYB gene biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6967"} +UMLS:C1507178 Cells.CD8+CD95+ biolink:Cell skos:exactMatch UMLS:C1507178 Cells.CD8+CD95+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6968"} +UMLS:C4763654 Therapeutic Ex Vivo-expanded Allogeneic gamma delta T-cells biolink:Cell skos:exactMatch UMLS:C4764336 OmnImmune biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6969","subject_information_content":100.0,"identifierIndex":0} +CL:0002589 smooth muscle cell of the brachiocephalic vasculature biolink:Cell skos:exactMatch CL:0002589 smooth muscle cell of the brachiocephalic vasculature biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6970","subject_information_content":100.0} +CL:0002465 CD11b-positive dendritic cell biolink:Cell skos:exactMatch CL:0002465 CD11b-positive dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6971","subject_information_content":75.5821178228195} +UMLS:C0205869 Perivascular Oligodendroglia biolink:Cell skos:exactMatch UMLS:C0205869 Perivascular Oligodendroglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6972"} +UMLS:C4740248 100 cells.CD15 biolink:Cell skos:exactMatch UMLS:C4740248 100 cells.CD15 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6973"} +NCIT:C179841 Mesenchymal Stromal Cell biolink:Cell skos:exactMatch NCIT:C179841 Mesenchymal Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6974","subject_information_content":100.0} +UMLS:C5157457 CD3+CD8+ (T8 suppressor cells) cells | Tissue and Smears | Cell markers biolink:Cell skos:exactMatch UMLS:C5157457 CD3+CD8+ (T8 suppressor cells) cells | Tissue and Smears | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6975"} +UMLS:C5170935 Leukocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170935 Leukocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6976"} +UMLS:C1182645 Ciliary epithelial cell biolink:Cell skos:exactMatch UMLS:C1182645 Ciliary epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6977"} +UMLS:C5549345 Cells.FOXP3 biolink:Cell skos:exactMatch UMLS:C5549345 Cells.FOXP3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6978"} +UMLS:C4763654 Therapeutic Ex Vivo-expanded Allogeneic gamma delta T-cells biolink:Cell skos:exactMatch NCIT:C157487 Therapeutic Ex Vivo-expanded Allogeneic gamma delta T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6969","subject_information_content":100.0,"identifierIndex":1} +UMLS:C2736935 Cells.CD56+CD138+ biolink:Cell skos:exactMatch UMLS:C2736935 Cells.CD56+CD138+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6979"} +UMLS:C1519715 Type II Epithelial Receptor Cell biolink:Cell skos:exactMatch NCIT:C33825 Type II Epithelial Receptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6980","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2324839 Set of cholinergic cells of diagonal gyrus [Ch3] biolink:Cell skos:exactMatch UMLS:C2324839 Set of cholinergic cells of diagonal gyrus [Ch3] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6981"} +CL:0000991 CD11c-negative plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000991 CD11c-negative plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6982","subject_information_content":91.94953810872488} +UMLS:C5173471 Monocytes+Macrophages | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173471 Monocytes+Macrophages | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6983"} +UMLS:C5186196 Donated egg | Patient | Fertility testing biolink:Cell skos:exactMatch UMLS:C5186196 Donated egg | Patient | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6984"} +UMLS:C1440344 Cells.CD66b biolink:Cell skos:exactMatch UMLS:C1440344 Cells.CD66b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6985"} +UMLS:C1511440 CH02 biolink:Cell skos:exactMatch NCIT:C20286 CH02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6986","subject_information_content":100.0,"identifierIndex":0} +CL:1000330 serous cell of epithelium of trachea biolink:Cell skos:exactMatch CL:1000330 serous cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6987","subject_information_content":100.0} +UMLS:C5155170 Blasts | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5155170 Blasts | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6988"} +CL:0010005 atrioventricular bundle cell biolink:Cell skos:exactMatch CL:0010005 atrioventricular bundle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6989","subject_information_content":82.42859222307153} +CL:0010002 epithelial cell of umbilical artery biolink:Cell skos:exactMatch CL:0010002 epithelial cell of umbilical artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6990","subject_information_content":100.0} +CL:0000882 thymic medullary macrophage biolink:Cell skos:exactMatch CL:0000882 thymic medullary macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6991","subject_information_content":100.0} +UMLS:C1514934 Rhabdomyoblast biolink:Cell skos:exactMatch NCIT:C36744 Rhabdomyoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6992","subject_information_content":80.1558246084581,"identifierIndex":0} +UMLS:C5177799 Polymorphonuclear cells/leukocytes | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177799 Polymorphonuclear cells/leukocytes | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6993"} +UMLS:C3640216 TIL 1383I T Cell Receptor-Transduced Autologous T Cells biolink:Cell skos:exactMatch NCIT:C101787 TIL 1383I T Cell Receptor-Transduced Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6994","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2334011 Wandering histiocyte biolink:Cell skos:exactMatch UMLS:C2334011 Wandering histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6995"} +CL:0002090 polar body biolink:Cell skos:exactMatch CL:0002090 polar body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6996","subject_information_content":91.94953810872488} +CL:0002573 Schwann cell biolink:Cell skos:exactMatch CL:0002573 Schwann cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6997","subject_information_content":84.76217218840416} +CL:1000303 fibroblast of areolar connective tissue biolink:Cell skos:exactMatch CL:1000303 fibroblast of areolar connective tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6998","subject_information_content":100.0} +UMLS:C4246478 Diencephalic neural crest cell biolink:Cell skos:exactMatch UMLS:C4246478 Diencephalic neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#6999"} +UMLS:C5179522 Reticulocytes.high light scatter | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179522 Reticulocytes.high light scatter | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7000"} +UMLS:C1317200 Cells.CD59 biolink:Cell skos:exactMatch UMLS:C1317200 Cells.CD59 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7001"} +UMLS:C1179445 Nonkeratinized cell of epidermis biolink:Cell skos:exactMatch UMLS:C1179445 Nonkeratinized cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7002"} +UMLS:C0229568 Adrenal medulllary cell biolink:Cell skos:exactMatch SNOMEDCT:35284004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7003","identifierIndex":0} +UMLS:C5380747 Cells.CD21lowCD38- biolink:Cell skos:exactMatch UMLS:C5380747 Cells.CD21lowCD38- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7004"} +UMLS:C4084729 Cardiac Stem Cell biolink:Cell skos:exactMatch NCIT:C124143 Cardiac Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7005","subject_information_content":100.0,"identifierIndex":0} +CL:0002676 neural crest derived neuroblast biolink:Cell skos:exactMatch CL:0002676 neural crest derived neuroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7006","subject_information_content":100.0} +UMLS:C1184877 External pillar cell of cochlea biolink:Cell skos:exactMatch UMLS:C1184877 External pillar cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7007"} +CL:0002525 metanephric glomerular visceral epithelial cell biolink:Cell skos:exactMatch CL:0002525 metanephric glomerular visceral epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7008","subject_information_content":100.0} +UMLS:C1267806 LEU M3+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117510009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7009","identifierIndex":0} +CL:0002427 resting double-positive thymocyte biolink:Cell skos:exactMatch CL:0002427 resting double-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7010","subject_information_content":100.0} +CL:0000966 Bm4 B cell biolink:Cell skos:exactMatch CL:0000966 Bm4 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7011","subject_information_content":100.0} +CL:0002244 squamous cell of ectocervix biolink:Cell skos:exactMatch CL:0002244 squamous cell of ectocervix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7012","subject_information_content":100.0} +CL:4023040 L2/3-6 intratelencephalic projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023040 L2/3-6 intratelencephalic projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7013","subject_information_content":81.20444558259193} +UMLS:C4725019 Partially HLA-matched Adenovirus-specific T Lymphocytes biolink:Cell skos:exactMatch NCIT:C148419 Partially HLA-matched Adenovirus-specific T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7014","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4288626 NK Cell-enriched Donor Lymphocytes biolink:Cell skos:exactMatch NCIT:C127939 NK Cell-enriched Donor Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7015","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4263664 Lymphocyte T-cell & B-cell & Natural killer subsets biolink:Cell skos:exactMatch UMLS:C4263664 Lymphocyte T-cell & B-cell & Natural killer subsets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7016"} +UMLS:C2985406 DU 145 biolink:Cell skos:exactMatch NCIT:C93036 DU 145 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7017","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177615 Platelets | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177615 Platelets | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7018"} +UMLS:C0014603 Epithelioid Cells biolink:Cell skos:exactMatch NCIT:C12559 Epithelioid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7019","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1514003 Neoplastic Large Germ Cell biolink:Cell skos:exactMatch NCIT:C36904 Neoplastic Large Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7020","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C4697027 Cells.CD27-CD45RO+CD62L-CCR7- biolink:Cell skos:exactMatch UMLS:C4697027 Cells.CD27-CD45RO+CD62L-CCR7- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7021"} +CL:4023020 dynamic gamma motor neuron biolink:Cell skos:exactMatch CL:4023020 dynamic gamma motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7022","subject_information_content":100.0} +UMLS:C5216212 Erythrocytes|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216212 Erythrocytes|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7023"} +UMLS:C4518174 Population of all hyperchromic erythrocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725442005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7024","identifierIndex":0} +CL:0000970 unswitched memory B cell biolink:Cell skos:exactMatch CL:0000970 unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7025","subject_information_content":85.74066969721673} +CL:2000043 brain pericyte biolink:Cell skos:exactMatch CL:2000043 brain pericyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7026","subject_information_content":100.0} +UMLS:C0229662 Marrow fibrocyte biolink:Cell skos:exactMatch SNOMEDCT:42901005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7027","identifierIndex":0} +UMLS:C1267945 Lymphocyte positive for CD53 antigen biolink:Cell skos:exactMatch SNOMEDCT:117388008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7028","identifierIndex":0} +UMLS:C0014603 Epithelioid Cells biolink:Cell skos:exactMatch MESH:D015622 Epithelioid Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7019","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C1441342 100 leukocytes biolink:Cell skos:exactMatch UMLS:C1441342 100 leukocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7029"} +CL:1000480 transitional myocyte of internodal tract biolink:Cell skos:exactMatch CL:1000480 transitional myocyte of internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7030","subject_information_content":86.87026217152628} +UMLS:C3652916 chondrocytes, autologous biolink:Cell skos:exactMatch UMLS:C3652916 chondrocytes, autologous biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7031"} +UMLS:C1267897 Lymphocyte positive for CD25 antigen biolink:Cell skos:exactMatch SNOMEDCT:116844000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7032","identifierIndex":0} +UMLS:C1517808 Leukemic Lymphocyte biolink:Cell skos:exactMatch NCIT:C41073 Leukemic Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7033","subject_information_content":79.23864834624368,"identifierIndex":0} +UMLS:C5157653 CD71 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157653 CD71 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7034"} +CL:0001079 NKp44-positive group 3 innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001079 NKp44-positive group 3 innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7035","subject_information_content":100.0} +UMLS:C3831071 cMet CAR-mRNA Electroporated Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C106230 cMet CAR-mRNA Electroporated Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7036","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518174 Malignant Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36779 Malignant Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7037","subject_information_content":64.61885949919962,"identifierIndex":0} +CL:1001572 colon endothelial cell biolink:Cell skos:exactMatch CL:1001572 colon endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7038","subject_information_content":100.0} +UMLS:C1513410 Monkey Cell Line biolink:Cell skos:exactMatch NCIT:C20219 Monkey Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7039","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2336716 Stromal cell of ovarian medulla biolink:Cell skos:exactMatch UMLS:C2336716 Stromal cell of ovarian medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7041"} +UMLS:C1513017 Maturation-Stage Ameloblast biolink:Cell skos:exactMatch NCIT:C33057 Maturation-Stage Ameloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7042","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513020 Mature B-Lymphocyte at the Germinal Center Stage of Differentiation biolink:Cell skos:exactMatch NCIT:C38436 Mature B-Lymphocyte at the Germinal Center Stage of Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7043","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12533 Neutrophil biolink:Cell skos:exactMatch NCIT:C12533 Neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7044","subject_information_content":100.0} +CL:1001582 lateral ventricle neuron biolink:Cell skos:exactMatch CL:1001582 lateral ventricle neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7045","subject_information_content":100.0} +CL:0000503 theca cell biolink:Cell skos:exactMatch CL:0000503 theca cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7046","subject_information_content":100.0} +CL:2000038 posterior lateral line neuromast mantle cell biolink:Cell skos:exactMatch CL:2000038 posterior lateral line neuromast mantle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7047","subject_information_content":100.0} +UMLS:C5157342 CD19 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157342 CD19 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7040"} +CL:0000066 epithelial cell biolink:Cell skos:exactMatch CL:0000066 epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7048","subject_information_content":52.14273315445158} +UMLS:C5157536 CD4+ CD26- Cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157536 CD4+ CD26- Cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7049"} +UMLS:C5154482 Basophils | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154482 Basophils | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7050"} +UMLS:C5163714 Erythrocytes | Dialysis fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163714 Erythrocytes | Dialysis fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7051"} +CL:0008032 rosehip neuron biolink:Cell skos:exactMatch CL:0008032 rosehip neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7052","subject_information_content":100.0} +CL:0000892 smooth muscle cell derived foam cell biolink:Cell skos:exactMatch CL:0000892 smooth muscle cell derived foam cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7053","subject_information_content":100.0} +UMLS:C1512639 Immature Platelet biolink:Cell skos:exactMatch NCIT:C13126 Immature Platelet biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7054","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5174097 Myelocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174097 Myelocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7055"} +CL:0002378 immature Vgamma2-positive fetal thymocyte biolink:Cell skos:exactMatch CL:0002378 immature Vgamma2-positive fetal thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7056","subject_information_content":100.0} +UMLS:C1184810 Endocardial cell biolink:Cell skos:exactMatch UMLS:C1184810 Endocardial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7057"} +UMLS:C5171653 Lymphocyte T-cell and B-cell and Natural killer subsets | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5171653 Lymphocyte T-cell and B-cell and Natural killer subsets | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7058"} +UMLS:C0229640 Segmented neutrophil biolink:Cell skos:exactMatch UMLS:C0229640 Segmented neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7059"} +UMLS:C5170954 Leukocytes other | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170954 Leukocytes other | Fetus | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7060"} +CL:1001005 glomerular capillary endothelial cell biolink:Cell skos:exactMatch CL:1001005 glomerular capillary endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7061","subject_information_content":100.0} +CL:0009075 myo-medullary thymic epithelial cell biolink:Cell skos:exactMatch CL:0009075 myo-medullary thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7062"} +CL:0002634 epithelial cell of anal column biolink:Cell skos:exactMatch CL:0002634 epithelial cell of anal column biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7063","subject_information_content":88.2062864997332} +UMLS:C0085087 3T3 Cells biolink:Cell skos:exactMatch MESH:D016475 3T3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7064","identifierIndex":0} +CL:0002653 squamous endothelial cell biolink:Cell skos:exactMatch CL:0002653 squamous endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7065","subject_information_content":100.0} +CL:0000645 pituicyte biolink:Cell skos:exactMatch CL:0000645 pituicyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7066","subject_information_content":100.0} +UMLS:C1511043 Balloon Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36751 Balloon Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7067","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514089 Neoplastic Small Lymphocyte biolink:Cell skos:exactMatch NCIT:C36998 Neoplastic Small Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7068","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1514004 Neoplastic T-Cell Large Granular Lymphocyte biolink:Cell skos:exactMatch NCIT:C37019 Neoplastic T-Cell Large Granular Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7069","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1510737 Abnormal Transitional Cell biolink:Cell skos:exactMatch NCIT:C36767 Abnormal Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7070","subject_information_content":81.79098623432766,"identifierIndex":0} +UMLS:C4277646 Place Cells biolink:Cell skos:exactMatch MESH:D000071037 Place Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7071","identifierIndex":0} +UMLS:C2339101 Serous cell of epithelium of trachea biolink:Cell skos:exactMatch UMLS:C2339101 Serous cell of epithelium of trachea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7072"} +UMLS:C1513954 Neoplastic Adrenal Cortical Compact Cell biolink:Cell skos:exactMatch NCIT:C36931 Neoplastic Adrenal Cortical Compact Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7073","subject_information_content":100.0,"identifierIndex":0} +CL:0002623 acinar cell of salivary gland biolink:Cell skos:exactMatch CL:0002623 acinar cell of salivary gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7074","subject_information_content":100.0} +CL:0002356 primitive reticulocyte biolink:Cell skos:exactMatch CL:0002356 primitive reticulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7075","subject_information_content":100.0} +UMLS:C1180273 Myoepithelial cell of terminal lactiferous duct biolink:Cell skos:exactMatch UMLS:C1180273 Myoepithelial cell of terminal lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7076"} +UMLS:C5173415 Monoblasts | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173415 Monoblasts | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7077"} +UMLS:C5220599 Leukocytes|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220599 Leukocytes|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7078"} +UMLS:C5157515 CD3-CD16+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157515 CD3-CD16+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7079"} +UMLS:C1510956 Atypical Histiocyte biolink:Cell skos:exactMatch NCIT:C40999 Atypical Histiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7080","subject_information_content":100.0,"identifierIndex":0} +CL:4023030 L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023030 L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7081","subject_information_content":100.0} +UMLS:C0178708 immortalized cell biolink:Cell skos:exactMatch UMLS:C0178708 immortalized cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7082"} +CL:0008001 hematopoietic precursor cell biolink:Cell skos:exactMatch CL:0008001 hematopoietic precursor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7083","subject_information_content":65.9666177709961} +CL:4023120 cochlea auditory hair cell biolink:Cell skos:exactMatch CL:4023120 cochlea auditory hair cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7084"} +CL:1001138 interlobular artery cell biolink:Cell skos:exactMatch CL:1001138 interlobular artery cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7085","subject_information_content":88.2062864997332} +UMLS:C1440291 Cells.CD3+DR+ biolink:Cell skos:exactMatch UMLS:C1440291 Cells.CD3+DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7086"} +UMLS:C1516859 Stromal cell of endometrium biolink:Cell skos:exactMatch NCIT:C33921 Endometrial Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7087","subject_information_content":100.0,"identifierIndex":0} +CL:0010004 mononuclear cell of bone marrow biolink:Cell skos:exactMatch CL:0010004 mononuclear cell of bone marrow biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7088","subject_information_content":100.0} +UMLS:C1179554 Pancreatic ductal cell biolink:Cell skos:exactMatch UMLS:C1179554 Pancreatic ductal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7089"} +UMLS:C0933804 Type B synoviocyte biolink:Cell skos:exactMatch UMLS:C0933804 Type B synoviocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7090"} +CL:0000703 sustentacular cell biolink:Cell skos:exactMatch CL:0000703 sustentacular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7091","subject_information_content":91.94953810872488} +UMLS:C4518171 Population of all squamous epithelial cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726505005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7092","identifierIndex":0} +MESH:D017779 Sympathetic Fibers, Postganglionic biolink:Cell skos:exactMatch MESH:D017779 Sympathetic Fibers, Postganglionic biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7093"} +UMLS:C2984201 Leukemic Apoptotic Corpse-Pulsed Autologous Dendritic Cells biolink:Cell skos:exactMatch NCIT:C91379 Leukemic Apoptotic Corpse-Pulsed Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7094","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157597 CD5+CD2- | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157597 CD5+CD2- | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7095"} +UMLS:C1440353 Cells.CD74 biolink:Cell skos:exactMatch UMLS:C1440353 Cells.CD74 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7096"} +UMLS:C5173467 Monocytes+Macrophages | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173467 Monocytes+Macrophages | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7097"} +UMLS:C0599757 Microfold cell biolink:Cell skos:exactMatch UMLS:C0599757 Microfold cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7098"} +UMLS:C2325541 Fibroblast of dense regular elastic tissue biolink:Cell skos:exactMatch UMLS:C2325541 Fibroblast of dense regular elastic tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7099"} +UMLS:C1440419 Cells.t(X;18)(q11.2;p11.23)(SS18,SSX1) biolink:Cell skos:exactMatch UMLS:C1440419 Cells.t(X;18)(q11.2;p11.23)(SS18,SSX1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7100"} +UMLS:C5187191 Platelets^BPU biolink:Cell skos:exactMatch UMLS:C5187191 Platelets^BPU biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7101"} +UMLS:C1512945 Intraepithelial T-Lymphocyte of the Intestine biolink:Cell skos:exactMatch NCIT:C39613 Intraepithelial T-Lymphocyte of the Intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7102","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216209 Erythrocytes.nucleated|NCnc|Pt|Synv fld biolink:Cell skos:exactMatch UMLS:C5216209 Erythrocytes.nucleated|NCnc|Pt|Synv fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7103"} +UMLS:C5157520 CD3-CD16+CD56+ (Natural killer) cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157520 CD3-CD16+CD56+ (Natural killer) cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7104"} +UMLS:C0684118 Early erythroblast biolink:Cell skos:exactMatch SNOMEDCT:115610004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7105","identifierIndex":0} +UMLS:C5179962 Round cells | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5179962 Round cells | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7106"} +CL:0002477 adipose macrophage biolink:Cell skos:exactMatch CL:0002477 adipose macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7107","subject_information_content":91.94953810872488} +CL:0008009 transversely striated visceral muscle cell biolink:Cell skos:exactMatch CL:0008009 transversely striated visceral muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7108","subject_information_content":100.0} +UMLS:C1267813 Lymphocyte positive for CD2 antigen biolink:Cell skos:exactMatch SNOMEDCT:117516003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7109","identifierIndex":0} +UMLS:C5447428 Autologous Anti-CD20 CAR T-cells C-CAR066 biolink:Cell skos:exactMatch NCIT:C176772 Autologous Anti-CD20 CAR T-cells C-CAR066 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7110","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2324639 Retinal glial cell biolink:Cell skos:exactMatch UMLS:C2324639 Retinal glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7111"} +UMLS:C5544464 Immunological Memory Cells biolink:Cell skos:exactMatch MESH:D000091244 Immunological Memory Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7112","identifierIndex":0} +CL:0000741 spinal accessory motor neuron biolink:Cell skos:exactMatch CL:0000741 spinal accessory motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7113","subject_information_content":100.0} +UMLS:C1440283 Cells.CD3+CD4+CD45RO-CD45RA- biolink:Cell skos:exactMatch UMLS:C1440283 Cells.CD3+CD4+CD45RO-CD45RA- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7114"} +CL:0000544 slowly adapting mechanoreceptor cell biolink:Cell skos:exactMatch CL:0000544 slowly adapting mechanoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7115","subject_information_content":100.0} +UMLS:C5157241 CD10+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157241 CD10+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7116"} +CL:2000060 placental villous trophoblast biolink:Cell skos:exactMatch CL:2000060 placental villous trophoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7117","subject_information_content":94.92072406280138} +CL:0002118 CD38-negative IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002118 CD38-negative IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7118","subject_information_content":91.94953810872488} +CL:0000747 cyanophore biolink:Cell skos:exactMatch CL:0000747 cyanophore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7119","subject_information_content":100.0} +CL:0001025 Kit-positive, Sca1-positive common lymphoid progenitor biolink:Cell skos:exactMatch CL:0001025 Kit-positive, Sca1-positive common lymphoid progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7120","subject_information_content":100.0} +UMLS:C1182667 Endo-epithelial cell of tympanic part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182667 Endo-epithelial cell of tympanic part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7121"} +UMLS:C0682549 argentaffin cell (stain) biolink:Cell skos:exactMatch UMLS:C0682549 argentaffin cell (stain) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7122"} +CL:0000971 IgM memory B cell biolink:Cell skos:exactMatch CL:0000971 IgM memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7123","subject_information_content":100.0} +UMLS:C1510962 Atypical Parabasal Cell biolink:Cell skos:exactMatch NCIT:C36787 Atypical Parabasal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7124","subject_information_content":100.0,"identifierIndex":0} +CL:0002669 type 3 otic fibrocyte biolink:Cell skos:exactMatch CL:0002669 type 3 otic fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7125","subject_information_content":100.0} +CL:0002004 CD34-negative, GlyA-negative proerythroblast biolink:Cell skos:exactMatch CL:0002004 CD34-negative, GlyA-negative proerythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7126","subject_information_content":100.0} +UMLS:C5157504 CD36 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157504 CD36 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7127"} +UMLS:C5157497 CD34+CD117+ blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157497 CD34+CD117+ blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7128"} +UMLS:C0018873 HeLa Cells biolink:Cell skos:exactMatch UMLS:C0018873 HeLa Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7129"} +UMLS:C3714800 SCID-Repopulating Cell biolink:Cell skos:exactMatch NCIT:C114279 SCID-Repopulating Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7130","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4740249 100 cells.CD33 biolink:Cell skos:exactMatch UMLS:C4740249 100 cells.CD33 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7131"} +CL:0000875 non-classical monocyte biolink:Cell skos:exactMatch CL:0000875 non-classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7132","subject_information_content":85.74066969721673} +CL:0000838 lymphoid lineage restricted progenitor cell biolink:Cell skos:exactMatch CL:0000838 lymphoid lineage restricted progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7133","subject_information_content":84.76217218840416} +UMLS:C1182778 Epithelial cell of sweat gland biolink:Cell skos:exactMatch UMLS:C1182778 Epithelial cell of sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7134"} +UMLS:C1328818 Podocytes biolink:Cell skos:exactMatch UMLS:C1328818 Podocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7135"} +UMLS:C4304497 Population of all dacryocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719691002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7136","identifierIndex":0} +UMLS:C5216247 Lymphocytes.variant|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216247 Lymphocytes.variant|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7137"} +CL:0000555 neuronal brush cell biolink:Cell skos:exactMatch CL:0000555 neuronal brush cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7138","subject_information_content":100.0} +CL:0002269 vasoactive intestinal peptide secreting cell biolink:Cell skos:exactMatch CL:0002269 vasoactive intestinal peptide secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7139","subject_information_content":89.84144812560278} +UMLS:C5157429 CD3+CD16+CD56+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157429 CD3+CD16+CD56+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7140"} +CL:0002317 external limiting cell of vestibular epithelium biolink:Cell skos:exactMatch CL:0002317 external limiting cell of vestibular epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7141","subject_information_content":100.0} +UMLS:C1276865 Entire hilar cell of ovary biolink:Cell skos:exactMatch SNOMEDCT:259185009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7142","identifierIndex":0} +UMLS:C1954324 Leukocytes+Platelets biolink:Cell skos:exactMatch UMLS:C1954324 Leukocytes+Platelets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7143"} +UMLS:C3826976 IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051 biolink:Cell skos:exactMatch NCIT:C114385 IL-12-expressing Mesenchymal Stem Cell Vaccine GX-051 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7144","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4296892 Enterochromaffin cell (EC), serotonin-producing biolink:Cell skos:exactMatch UMLS:C4296892 Enterochromaffin cell (EC), serotonin-producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7145"} +UMLS:C2336187 Smooth muscle fiber of prostate biolink:Cell skos:exactMatch UMLS:C2336187 Smooth muscle fiber of prostate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7146"} +CL:1001610 bone marrow hematopoietic cell biolink:Cell skos:exactMatch CL:1001610 bone marrow hematopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7147","subject_information_content":83.1270105625346} +CL:1000001 retrotrapezoid nucleus neuron biolink:Cell skos:exactMatch CL:1000001 retrotrapezoid nucleus neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7148","subject_information_content":100.0} +UMLS:C1656735 Cells.CD9+CD41+ biolink:Cell skos:exactMatch UMLS:C1656735 Cells.CD9+CD41+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7149"} +UMLS:C5174619 Neutrophils | Nose | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174619 Neutrophils | Nose | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7150"} +CL:2000048 anterior horn motor neuron biolink:Cell skos:exactMatch CL:2000048 anterior horn motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7151","subject_information_content":100.0} +UMLS:C3831512 Anti-NY-ESO1 TCR-transduced Autologous CD62L+-derived T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C114295 Anti-NY-ESO1 TCR-transduced Autologous CD62L+-derived T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7152","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518308 Neutrophil with Pseudo Chediak-Higashi Granules biolink:Cell skos:exactMatch NCIT:C37175 Neutrophil with Pseudo Chediak-Higashi Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7153","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0225466 Structure of anterior cells of ethmoid sinus biolink:Cell skos:exactMatch SNOMEDCT:26357003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7154","identifierIndex":0} +UMLS:C1519454 Spider Cell biolink:Cell skos:exactMatch NCIT:C36742 Spider Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7155","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5161838 Dacrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5161838 Dacrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7156"} +UMLS:C1179160 Pancreatic centro-acinar cell biolink:Cell skos:exactMatch NCIT:C33254 Pancreatic Centroacinar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7157","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157322 CD158 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157322 CD158 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7158"} +CL:0000578 experimentally modified cell in vitro biolink:Cell skos:exactMatch CL:0000578 experimentally modified cell in vitro biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7159","subject_information_content":46.85287243255251} +UMLS:C1440411 Cells.t(4;11)(q21.3;q23)(AFF1,MLL) biolink:Cell skos:exactMatch UMLS:C1440411 Cells.t(4;11)(q21.3;q23)(AFF1,MLL) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7160"} +UMLS:C4745256 Adenocarcinoma Cell with Abundant Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C54724 Adenocarcinoma Cell with Abundant Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7161","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4695105 Kymriah (DLBCL) biolink:Cell skos:exactMatch UMLS:C4695105 Kymriah (DLBCL) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7162"} +UMLS:C5417957 Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702 biolink:Cell skos:exactMatch UMLS:C5421409 Anti-HER2 oNK Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7163","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3897804 RNA Electroporated CD19CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C118947 RNA Electroporated CD19CAR-CD3zeta-4-1BB-expressing Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7164","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519712 Type III Epithelial Receptor Cell biolink:Cell skos:exactMatch NCIT:C13149 Type III Epithelial Receptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7165","subject_information_content":100.0,"identifierIndex":0} +CL:0002251 epithelial cell of alimentary canal biolink:Cell skos:exactMatch CL:0002251 epithelial cell of alimentary canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7166","subject_information_content":64.5604699774679} +UMLS:C2331938 Diploid nucleated cell biolink:Cell skos:exactMatch UMLS:C2331938 Diploid nucleated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7167"} +UMLS:C0001646 Adrenergic Fibers biolink:Cell skos:exactMatch MESH:D000320 Adrenergic Fibers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7168","identifierIndex":0} +UMLS:C1513992 Neoplastic Intermediate Type Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C37142 Neoplastic Intermediate Type Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7169","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1511006 BG01 biolink:Cell skos:exactMatch NCIT:C20233 BG01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7170","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177798 Polymorphonuclear cells/leukocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177798 Polymorphonuclear cells/leukocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7171"} +UMLS:C0085133 Reed-Sternberg Cells biolink:Cell skos:exactMatch UMLS:C0085133 Reed-Sternberg Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7172"} +UMLS:C5417957 Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702 biolink:Cell skos:exactMatch NCIT:C173076 Anti-HER2 Antibody Conjugated Natural Killer Cells ACE1702 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7163","subject_information_content":100.0,"identifierIndex":1} +CL:3000004 peripheral sensory neuron biolink:Cell skos:exactMatch CL:3000004 peripheral sensory neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7173","subject_information_content":100.0} +CL:0011014 non-motile sperm cell biolink:Cell skos:exactMatch CL:0011014 non-motile sperm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7174","subject_information_content":100.0} +CL:4023048 L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell skos:exactMatch CL:4023048 L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7175","subject_information_content":100.0} +UMLS:C3831434 Autologous Mesenchymal Stem Cells Apceth_101 biolink:Cell skos:exactMatch NCIT:C113803 Autologous Mesenchymal Stem Cells Apceth_101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7176","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0001646 Adrenergic Fibers biolink:Cell skos:exactMatch SNOMEDCT:361060001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7168","identifierIndex":1} +UMLS:C5216276 Monocytes|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216276 Monocytes|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7177"} +UMLS:C5172510 Mesothelial cells | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172510 Mesothelial cells | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7179"} +UMLS:C1514017 CD4+/CD56+ Neoplastic Medium-Sized Cell biolink:Cell skos:exactMatch NCIT:C39301 CD4+/CD56+ Neoplastic Medium-Sized Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7180","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2322638 Set of cholinergic cells of globus pallidus [Ch3] biolink:Cell skos:exactMatch UMLS:C2322638 Set of cholinergic cells of globus pallidus [Ch3] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7178"} +UMLS:C4700206 Cells.CD25+CD45RA+CD127Low+ biolink:Cell skos:exactMatch UMLS:C4700206 Cells.CD25+CD45RA+CD127Low+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7181"} +UMLS:C5157337 CD179a blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157337 CD179a blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7182"} +CL:0000749 ON-bipolar cell biolink:Cell skos:exactMatch CL:0000749 ON-bipolar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7183","subject_information_content":100.0} +UMLS:C5216319 Sezary cells|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216319 Sezary cells|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7184"} +UMLS:C4517379 Population of all large unstained cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:732290004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7185","identifierIndex":0} +UMLS:C1183327 Mesothelial cell of visceral peritoneum biolink:Cell skos:exactMatch UMLS:C1183327 Mesothelial cell of visceral peritoneum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7186"} +UMLS:C5168997 Immunodeficiency markers | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5168997 Immunodeficiency markers | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7187"} +UMLS:C4322815 CD45RO+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322815 CD45RO+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7188"} +UMLS:C1707524 Corticotroph biolink:Cell skos:exactMatch SNOMEDCT:113332000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7189","identifierIndex":0} +CL:0000889 myeloid suppressor cell biolink:Cell skos:exactMatch CL:0000889 myeloid suppressor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7190","subject_information_content":91.94953810872488} +UMLS:C1440406 Cells.t(14;18)(q32;q21.3)(IGH,BCL2) biolink:Cell skos:exactMatch UMLS:C1440406 Cells.t(14;18)(q32;q21.3)(IGH,BCL2) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7191"} +UMLS:C4696004 Cells.CD3+CD8+CD27+CD62L+ biolink:Cell skos:exactMatch UMLS:C4696004 Cells.CD3+CD8+CD27+CD62L+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7192"} +UMLS:C5172505 Mesothelial cells | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172505 Mesothelial cells | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7194"} +CL:0002523 mesonephric glomerular visceral epithelial cell biolink:Cell skos:exactMatch CL:0002523 mesonephric glomerular visceral epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7193","subject_information_content":100.0} +UMLS:C0882818 Cell positive for CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:116754005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7195","identifierIndex":0} +UMLS:C1184876 Internal pillar cell of cochlea biolink:Cell skos:exactMatch UMLS:C1184876 Internal pillar cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7196"} +UMLS:C0229472 Cell of Hensen biolink:Cell skos:exactMatch SNOMEDCT:57870006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7197","identifierIndex":0} +UMLS:C1514031 Neoplastic Multinucleated Stromal Cell biolink:Cell skos:exactMatch NCIT:C37124 Neoplastic Multinucleated Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7198","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0002172 interdental cell of cochlea biolink:Cell skos:exactMatch CL:0002172 interdental cell of cochlea biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7199","subject_information_content":100.0} +UMLS:C4688337 Autologous Anti-CD19 T-cell Receptor T cells ET190L1 biolink:Cell skos:exactMatch NCIT:C148030 Autologous Anti-CD19 T-cell Receptor T cells ET190L1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7200","subject_information_content":100.0,"identifierIndex":0} +CL:0011108 colon epithelial cell biolink:Cell skos:exactMatch CL:0011108 colon epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7201","subject_information_content":81.20444558259193} +CL:1000301 fibroblast of subepithelial connective tissue of prostatic gland biolink:Cell skos:exactMatch CL:1000301 fibroblast of subepithelial connective tissue of prostatic gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7202","subject_information_content":100.0} +CL:4023129 retinoblast biolink:Cell skos:exactMatch CL:4023129 retinoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7203"} +UMLS:C1513176 Metaplastic Squamous Cell biolink:Cell skos:exactMatch NCIT:C36817 Metaplastic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7204","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12538 Helper-Inducer T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C12538 Helper-Inducer T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7205","subject_information_content":85.74066969721673} +CL:0002535 epithelial cell of cervix biolink:Cell skos:exactMatch CL:0002535 epithelial cell of cervix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7206","subject_information_content":89.84144812560278} +UMLS:C1515966 Anaplastic Large Lymphocyte biolink:Cell skos:exactMatch NCIT:C37018 Anaplastic Large Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7207","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0000907 central memory CD8-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000907 central memory CD8-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7208","subject_information_content":100.0} +NCIT:C33334 Podocyte biolink:Cell skos:exactMatch NCIT:C33334 Podocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7209","subject_information_content":100.0} +UMLS:C0221284 Leptocyte biolink:Cell skos:exactMatch SNOMEDCT:112660002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7210","identifierIndex":0} +CL:0000594 skeletal muscle satellite cell biolink:Cell skos:exactMatch CL:0000594 skeletal muscle satellite cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7211","subject_information_content":88.2062864997332} +UMLS:C1182776 Lens cell biolink:Cell skos:exactMatch UMLS:C1182776 Lens cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7212"} +CL:0000342 pigment cell (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000342 pigment cell (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7213","subject_information_content":91.94953810872488} +UMLS:C5427435 Xanthoma cells | Lower respiratory specimen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5427435 Xanthoma cells | Lower respiratory specimen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7214"} +UMLS:C1525452 Cells.CD11b+CD11c+ biolink:Cell skos:exactMatch UMLS:C1525452 Cells.CD11b+CD11c+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7215"} +UMLS:C4322821 CD13+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322821 CD13+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7216"} +UMLS:C5549475 Spermatozoa Agglutinated | Urine | Fertility testing biolink:Cell skos:exactMatch UMLS:C5549475 Spermatozoa Agglutinated | Urine | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7217"} +UMLS:C0023517 Nongranular leukocyte biolink:Cell skos:exactMatch NCIT:C12534 Non-Granular Leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7218","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2362091 100 platelets biolink:Cell skos:exactMatch UMLS:C2362091 100 platelets biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7219"} +UMLS:C0221284 Leptocyte biolink:Cell skos:exactMatch SNOMEDCT:259686006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7210","identifierIndex":1} +CL:1000612 kidney corpuscule cell biolink:Cell skos:exactMatch CL:1000612 kidney corpuscule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7220","subject_information_content":78.81980028025117} +UMLS:C5171965 Malignant cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171965 Malignant cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7221"} +UMLS:C1183899 Luminal cell of prostatic duct biolink:Cell skos:exactMatch UMLS:C1183899 Luminal cell of prostatic duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7222"} +UMLS:C0301863 "U" lymphocyte biolink:Cell skos:exactMatch UMLS:C0301863 "U" lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7223"} +UMLS:C1520211 Yolk Cell biolink:Cell skos:exactMatch NCIT:C33933 Yolk Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7224","subject_information_content":100.0,"identifierIndex":0} +CL:0000664 closable valve cell biolink:Cell skos:exactMatch CL:0000664 closable valve cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7225","subject_information_content":100.0} +UMLS:C1880539 Epithelioid Osteoblast biolink:Cell skos:exactMatch NCIT:C67121 Epithelioid Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7226","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0023517 Nongranular leukocyte biolink:Cell skos:exactMatch MESH:D007963 Leukocytes, Mononuclear biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7218","subject_information_content":100.0,"identifierIndex":1} +UMLS:C2350831 Retinal Photoreceptor Cells biolink:Cell skos:exactMatch UMLS:C2350831 Retinal Photoreceptor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7227"} +UMLS:C0333723 Folded cell biolink:Cell skos:exactMatch SNOMEDCT:39922000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7228","identifierIndex":0} +UMLS:C1709168 Neoplastic Chromaffin Cell biolink:Cell skos:exactMatch NCIT:C48559 Neoplastic Chromaffin Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7229","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1709170 Neoplastic Elongated Mononuclear Stromal Cell biolink:Cell skos:exactMatch NCIT:C49054 Neoplastic Elongated Mononuclear Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7230","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1513926 Neoplastic Astrocyte with Few Flaccid Processes biolink:Cell skos:exactMatch NCIT:C37135 Neoplastic Astrocyte with Few Flaccid Processes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7231","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1511434 CEA RNA-pulsed Autologous Human Cultured Dendritic Cells biolink:Cell skos:exactMatch NCIT:C2710 CEA RNA-pulsed Autologous Human Cultured Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7232","subject_information_content":100.0,"identifierIndex":0} +CL:0000196 flight muscle cell biolink:Cell skos:exactMatch CL:0000196 flight muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7233","subject_information_content":100.0} +CL:1000155 Malpighian tubule stellate cell biolink:Cell skos:exactMatch CL:1000155 Malpighian tubule stellate cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7234","subject_information_content":100.0} +CL:0001074 CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human biolink:Cell skos:exactMatch CL:0001074 CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7235","subject_information_content":94.92072406280138} +UMLS:C4038496 Cells.aneuploid.G2 phase population 2 biolink:Cell skos:exactMatch UMLS:C4038496 Cells.aneuploid.G2 phase population 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7236"} +UMLS:C1512140 ES Cell Line biolink:Cell skos:exactMatch NCIT:C20232 ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7237","subject_information_content":67.79815243489958,"identifierIndex":0} +CL:0000925 activated CD4-positive type I NK T cell biolink:Cell skos:exactMatch CL:0000925 activated CD4-positive type I NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7238","subject_information_content":100.0} +CL:0000371 protoplast biolink:Cell skos:exactMatch CL:0000371 protoplast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7239","subject_information_content":94.92072406280138} +UMLS:C4484160 Cells.FMRP biolink:Cell skos:exactMatch UMLS:C4484160 Cells.FMRP biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7240"} +UMLS:C1513746 Multinucleated Malignant Squamous Cell biolink:Cell skos:exactMatch NCIT:C36774 Multinucleated Malignant Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7241","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440376 CDA Cells biolink:Cell skos:exactMatch UMLS:C1440376 CDA Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7242"} +UMLS:C5549346 Cells.FOXP3 Ag biolink:Cell skos:exactMatch UMLS:C5549346 Cells.FOXP3 Ag biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7243"} +MESH:D012708 Sertoli Cells biolink:Cell skos:exactMatch MESH:D012708 Sertoli Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7244"} +UMLS:C1622423 polymorphonuclear granulocyte biolink:Cell skos:exactMatch UMLS:C1622423 polymorphonuclear granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7245"} +CL:0009071 medullary thymic epithelial cell type 1 biolink:Cell skos:exactMatch CL:0009071 medullary thymic epithelial cell type 1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7246"} +CL:0000552 orthochromatic erythroblast biolink:Cell skos:exactMatch CL:0000552 orthochromatic erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7247","subject_information_content":91.94953810872488} +UMLS:C2339961 Nonkeratinized cell of stratum corneum of esophageal epithelium biolink:Cell skos:exactMatch UMLS:C2339961 Nonkeratinized cell of stratum corneum of esophageal epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7248"} +UMLS:C1440273 Cells.CD22+CD19+ biolink:Cell skos:exactMatch UMLS:C1440273 Cells.CD22+CD19+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7249"} +UMLS:C2332996 Thrombocytopoietic cell biolink:Cell skos:exactMatch UMLS:C2332996 Thrombocytopoietic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7250"} +UMLS:C5186802 Macrophages | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186802 Macrophages | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7251"} +UMLS:C5157920 Cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5157920 Cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7252"} +UMLS:C3658291 Adult Germline Stem Cells biolink:Cell skos:exactMatch MESH:D000072956 Adult Germline Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7253","identifierIndex":0} +UMLS:C4725105 CD33-specific CAR Lentiviral Vector-transduced Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C148530 CD33-specific CAR Lentiviral Vector-transduced Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7254","subject_information_content":100.0,"identifierIndex":0} +CL:0000702 R5 photoreceptor cell biolink:Cell skos:exactMatch CL:0000702 R5 photoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7255","subject_information_content":100.0} +UMLS:C1514072 Neoplastic Lactotroph Cell biolink:Cell skos:exactMatch NCIT:C36918 Neoplastic Lactotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7256","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:0000864 tissue-resident macrophage biolink:Cell skos:exactMatch CL:0000864 tissue-resident macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7257","subject_information_content":72.96845868813736} +UMLS:C5157664 CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157664 CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7258"} +UMLS:C5420484 Autologous Anti-EGFR CAR-transduced CXCR 5-modified T-lymphocytes biolink:Cell skos:exactMatch NCIT:C173958 Autologous Anti-EGFR CAR-transduced CXCR 5-modified T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7259","subject_information_content":100.0,"identifierIndex":0} +CL:0002285 type III taste bud cell biolink:Cell skos:exactMatch CL:0002285 type III taste bud cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7260","subject_information_content":100.0} +CL:1000444 mesothelial cell of anterior chamber of eye biolink:Cell skos:exactMatch CL:1000444 mesothelial cell of anterior chamber of eye biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7261","subject_information_content":100.0} +UMLS:C1182797 Epithelial cell of intermediate tubule biolink:Cell skos:exactMatch UMLS:C1182797 Epithelial cell of intermediate tubule biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7262"} +CL:0002562 hair germinal matrix cell biolink:Cell skos:exactMatch CL:0002562 hair germinal matrix cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7263","subject_information_content":100.0} +UMLS:C5206468 Autologous Anti-HLA-A*02/AFP TCRm-expressing T-cells ET140202 biolink:Cell skos:exactMatch NCIT:C162260 Autologous Anti-HLA-A*02/AFP TCRm-expressing T-cells ET140202 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7264","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4267785 Cells.CD27-IgD+ biolink:Cell skos:exactMatch UMLS:C4267785 Cells.CD27-IgD+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7265"} +UMLS:C3897094 IL13Ralpha2-specific Hinge-optimized 41BB-co-stimulatory CAR Truncated CD19-expressing Autologous T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C117233 IL13Ralpha2-specific Hinge-optimized 41BB-co-stimulatory CAR Truncated CD19-expressing Autologous T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7266","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4724836 Autologous PD-1 Antibody-expressing Mesothelin-specific CAR-T Cells biolink:Cell skos:exactMatch NCIT:C148133 Autologous PD-1 Antibody-expressing Mesothelin-specific CAR-T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7267","subject_information_content":100.0,"identifierIndex":0} +CL:0000742 periarticular chondrocyte biolink:Cell skos:exactMatch CL:0000742 periarticular chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7268","subject_information_content":100.0} +UMLS:C1510722 Abnormal Erythroblast biolink:Cell skos:exactMatch NCIT:C37057 Abnormal Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7269","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0000929 CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma biolink:Cell skos:exactMatch CL:0000929 CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7270","subject_information_content":100.0} +UMLS:C1267867 Lymphocyte positive for CD11B antigen biolink:Cell skos:exactMatch SNOMEDCT:117548004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7271","identifierIndex":0} +UMLS:C0879357 Vaccine-Sensitized Draining Lymph Node Cells biolink:Cell skos:exactMatch NCIT:C2542 Vaccine-Sensitized Draining Lymph Node Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7272","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1266872 Renal tubular epithelial cell biolink:Cell skos:exactMatch NCIT:C61147 Renal Tubular Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7273","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4316924 Cell positive for CD8 antigen biolink:Cell skos:exactMatch SNOMEDCT:732271007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7274","identifierIndex":0} +UMLS:C5174625 Neutrophils | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5174625 Neutrophils | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7275"} +UMLS:C1267958 Lymphocyte positive for CD66A antigen biolink:Cell skos:exactMatch SNOMEDCT:117399005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7276","identifierIndex":0} +CL:0002271 type EC1 enteroendocrine cell biolink:Cell skos:exactMatch CL:0002271 type EC1 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7277","subject_information_content":100.0} +UMLS:C2326742 Goblet cell of epithelium proper of small intestine biolink:Cell skos:exactMatch UMLS:C2326742 Goblet cell of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7278"} +UMLS:C4724856 Autologous CD19CAR-CD28-CD137/CD27/CD3zeta-iCasp9-expressing T-lymphocytes biolink:Cell skos:exactMatch NCIT:C148156 Autologous CD19CAR-CD28-CD137/CD27/CD3zeta-iCasp9-expressing T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7279","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1955875 F9 Teratocarcinoma Stem Cells biolink:Cell skos:exactMatch UMLS:C1955875 F9 Teratocarcinoma Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7280"} +NCIT:C12535 Lymphocyte biolink:Cell skos:exactMatch NCIT:C12535 Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7281","subject_information_content":66.10891051776997} +UMLS:C0242697 Muscle Fibers biolink:Cell skos:exactMatch UMLS:C0242697 Muscle Fibers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7282"} +UMLS:C1266872 Renal tubular epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:117287000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7273","subject_information_content":100.0,"identifierIndex":1} +UMLS:C4697033 Cells.IgM biolink:Cell skos:exactMatch UMLS:C4697033 Cells.IgM biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7283"} +UMLS:C0229631 Siderocyte biolink:Cell skos:exactMatch SNOMEDCT:61837008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7284","identifierIndex":0} +UMLS:C4727553 Therapeutic Ex-vivo-treated Autologous Central Memory T Cells biolink:Cell skos:exactMatch NCIT:C154280 Therapeutic Ex-vivo-treated Autologous Central Memory T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7285","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2336943 Transitional myocyte of interatrial septum biolink:Cell skos:exactMatch UMLS:C2336943 Transitional myocyte of interatrial septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7286"} +CL:0005003 leucoblast biolink:Cell skos:exactMatch CL:0005003 leucoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7287","subject_information_content":100.0} +UMLS:C3652665 chromium (51Cr) chromate labelled cells biolink:Cell skos:exactMatch UMLS:C3652665 chromium (51Cr) chromate labelled cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7288"} +UMLS:C4724838 iC9-GD2-CAR-CD28-OX40-expressing Autologous NKT Cells biolink:Cell skos:exactMatch NCIT:C148135 iC9-GD2-CAR-CD28-OX40-expressing Autologous NKT Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7289","subject_information_content":100.0,"identifierIndex":0} +CL:0000056 myoblast biolink:Cell skos:exactMatch CL:0000056 myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7290","subject_information_content":81.79098623432766} +UMLS:C4740211 Erythrocytes.CD59 complete loss biolink:Cell skos:exactMatch UMLS:C4740211 Erythrocytes.CD59 complete loss biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7291"} +UMLS:C1440355 CD79a+ cell biolink:Cell skos:exactMatch SNOMEDCT:732274004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7292","identifierIndex":0} +UMLS:C5175154 Nucleated cells | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175154 Nucleated cells | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7293"} +UMLS:C4329326 Anti-Glypican 3-scFvGC33-CAR-expressing T Lymphocytes biolink:Cell skos:exactMatch NCIT:C132989 Anti-Glypican 3-scFvGC33-CAR-expressing T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7294","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514732 Rat-1 biolink:Cell skos:exactMatch NCIT:C19584 Rat-1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7295","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512138 ESO-1 Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell skos:exactMatch NCIT:C38120 ESO-1 Reactive Autologous Tumor Infiltrating Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7296","subject_information_content":100.0,"identifierIndex":0} +MESH:D008533 Megakaryocytes biolink:Cell skos:exactMatch MESH:D008533 Megakaryocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7297"} +CL:0005002 xanthoblast biolink:Cell skos:exactMatch CL:0005002 xanthoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7298","subject_information_content":100.0} +UMLS:C1881561 Malignant Intermediate Type Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C61405 Malignant Intermediate Type Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7299","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163435 Eosinophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163435 Eosinophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7300"} +UMLS:C1280543 Entire syncytial trophoblast biolink:Cell skos:exactMatch SNOMEDCT:256965005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7301","identifierIndex":0} +UMLS:C5163729 Erythrocytes | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163729 Erythrocytes | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7302"} +CL:0000385 prohemocyte (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000385 prohemocyte (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7303","subject_information_content":100.0} +CL:0002151 late promyelocyte biolink:Cell skos:exactMatch CL:0002151 late promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7304","subject_information_content":100.0} +UMLS:C5180436 Schistocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180436 Schistocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7305"} +CL:0001043 activated CD4-positive, alpha-beta T cell, human biolink:Cell skos:exactMatch CL:0001043 activated CD4-positive, alpha-beta T cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7306","subject_information_content":100.0} +UMLS:C1518309 Neutrophil with Abnormal Cytoplasmic Granulation biolink:Cell skos:exactMatch NCIT:C37173 Neutrophil with Abnormal Cytoplasmic Granulation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7307","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0949376 Perineuronal Oligodendroglia biolink:Cell skos:exactMatch UMLS:C0949376 Perineuronal Oligodendroglia biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7308"} +UMLS:C4694618 Kymriah (Ped ALL) biolink:Cell skos:exactMatch UMLS:C4694618 Kymriah (Ped ALL) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7309"} +UMLS:C2328623 Fibrocyte of adventitia of ureter biolink:Cell skos:exactMatch UMLS:C2328623 Fibrocyte of adventitia of ureter biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7310"} +UMLS:C1440236 Cell positive for CD104 antigen biolink:Cell skos:exactMatch SNOMEDCT:725329009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7311","identifierIndex":0} +UMLS:C1518114 MB02 biolink:Cell skos:exactMatch NCIT:C20276 MB02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7312","subject_information_content":100.0,"identifierIndex":0} +CL:0002210 red muscle cell biolink:Cell skos:exactMatch CL:0002210 red muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7313","subject_information_content":91.94953810872488} +CL:1001009 kidney efferent arteriole cell biolink:Cell skos:exactMatch CL:1001009 kidney efferent arteriole cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7314","subject_information_content":91.94953810872488} +CL:1000706 ureter urothelial cell biolink:Cell skos:exactMatch CL:1000706 ureter urothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7315","subject_information_content":100.0} +UMLS:C1512130 ES01 (cell line) biolink:Cell skos:exactMatch NCIT:C20249 ES01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7316","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512551 Hyperchromatic Stromal Cell biolink:Cell skos:exactMatch NCIT:C36980 Hyperchromatic Stromal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7317","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163553 Epithelial cells.renal | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163553 Epithelial cells.renal | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7318"} +UMLS:C4724740 CMV/EBV/ADV/BKV-specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C150381 CMV/EBV/ADV/BKV-specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7319","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4733660 Total Tumor mRNA-pulsed Tumor-specific Ex vivo-expanded Autologous Lymphocyte Transfer Cells biolink:Cell skos:exactMatch NCIT:C155969 Total Tumor mRNA-pulsed Tumor-specific Ex vivo-expanded Autologous Lymphocyte Transfer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7320","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5418874 Autologous Anti-CD147 CAR T-cells biolink:Cell skos:exactMatch NCIT:C170913 Autologous Anti-CD147 CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7321","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163550 Epithelial cells.non-squamous | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163550 Epithelial cells.non-squamous | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7322"} +UMLS:C0521182 Opalski cell biolink:Cell skos:exactMatch SNOMEDCT:83687003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7323","identifierIndex":0} +CL:0002174 follicular cell of ovary biolink:Cell skos:exactMatch CL:0002174 follicular cell of ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7324","subject_information_content":85.74066969721673} +UMLS:C0301864 Target cell of immunologic reaction biolink:Cell skos:exactMatch SNOMEDCT:56709009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7325","identifierIndex":0} +UMLS:C0596981 Muscle Cells biolink:Cell skos:exactMatch NCIT:C12612 Muscle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7326","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C1708897 Malignant Ovoid to Spindle-Shaped Fibrohistiocytic Cell biolink:Cell skos:exactMatch NCIT:C49067 Malignant Ovoid to Spindle-Shaped Fibrohistiocytic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7327","subject_information_content":100.0,"identifierIndex":0} +MESH:D054503 Lymphoid Progenitor Cells biolink:Cell skos:exactMatch MESH:D054503 Lymphoid Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7328"} +CL:0000593 androgen secreting cell biolink:Cell skos:exactMatch CL:0000593 androgen secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7329","subject_information_content":89.84144812560278} +CL:0002046 early pro-B cell biolink:Cell skos:exactMatch CL:0002046 early pro-B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7330","subject_information_content":100.0} +CL:0002143 dark chief cell of parathyroid gland biolink:Cell skos:exactMatch CL:0002143 dark chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7331","subject_information_content":100.0} +UMLS:C0596981 Muscle Cells biolink:Cell skos:exactMatch MESH:D032342 Muscle Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7326","subject_information_content":85.74066969721673,"identifierIndex":1} +UMLS:C1708869 Malignant Cuboidal Mucous Cell biolink:Cell skos:exactMatch NCIT:C47811 Malignant Cuboidal Mucous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7332","subject_information_content":100.0,"identifierIndex":0} +CL:0000722 cystoblast biolink:Cell skos:exactMatch CL:0000722 cystoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7333","subject_information_content":100.0} +UMLS:C2325623 Pyramidal cell of precentral gyrus of cerebral hemisphere biolink:Cell skos:exactMatch SNOMEDCT:89416001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7334","identifierIndex":0} +CL:0009009 paneth cell of colon biolink:Cell skos:exactMatch CL:0009009 paneth cell of colon biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7335","subject_information_content":100.0} +UMLS:C1709165 Neoplastic C-Cell biolink:Cell skos:exactMatch NCIT:C47802 Neoplastic C-Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7336","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440258 Cells.CD16+CD57- biolink:Cell skos:exactMatch UMLS:C1440258 Cells.CD16+CD57- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7337"} +UMLS:C1440254 Cells.CD128 biolink:Cell skos:exactMatch UMLS:C1440254 Cells.CD128 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7338"} +CL:0000847 ciliated olfactory receptor neuron biolink:Cell skos:exactMatch CL:0000847 ciliated olfactory receptor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7339","subject_information_content":100.0} +UMLS:C1267948 Lymphocyte positive for CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:116732008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7340","identifierIndex":0} +UMLS:C1956422 Cancer Stem Cells biolink:Cell skos:exactMatch NCIT:C68706 Cancer Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7341","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512631 Immature B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C32766 Immature B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7342","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0001280 Armed macrophage biolink:Cell skos:exactMatch SNOMEDCT:86373002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7343","identifierIndex":0} +UMLS:C1513979 Neoplastic Glomerulosa Cell biolink:Cell skos:exactMatch NCIT:C36927 Neoplastic Glomerulosa Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7344","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4764236 Citrate Blood Cell Fraction biolink:Cell skos:exactMatch NCIT:C158461 Citrate Blood Cell Fraction biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7345","subject_information_content":100.0,"identifierIndex":0} +CL:0002238 male gonocyte biolink:Cell skos:exactMatch CL:0002238 male gonocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7346","subject_information_content":100.0} +CL:0002383 conidium of conidiophore head biolink:Cell skos:exactMatch CL:0002383 conidium of conidiophore head biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7347","subject_information_content":100.0} +UMLS:C4304495 Population of all spherocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719693004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7348","identifierIndex":0} +UMLS:C1440108 Autologous erythrocytes biolink:Cell skos:exactMatch UMLS:C1440108 Autologous erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7349"} +CL:0002631 epithelial cell of upper respiratory tract biolink:Cell skos:exactMatch CL:0002631 epithelial cell of upper respiratory tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7350","subject_information_content":94.92072406280138} +UMLS:C1709177 Neoplastic Granulocyte biolink:Cell skos:exactMatch NCIT:C43230 Neoplastic Granulocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7351","subject_information_content":80.66139376001811,"identifierIndex":0} +UMLS:C1512631 Immature B-Lymphocyte biolink:Cell skos:exactMatch MESH:D054448 Precursor Cells, B-Lymphoid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7342","subject_information_content":91.94953810872488,"identifierIndex":1} +CL:0000062 osteoblast biolink:Cell skos:exactMatch CL:0000062 osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7352","subject_information_content":86.87026217152628} +UMLS:C1709189 Neoplastic Parathyroid Gland Cell biolink:Cell skos:exactMatch NCIT:C48265 Neoplastic Parathyroid Gland Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7353","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:0000073 barrier epithelial cell biolink:Cell skos:exactMatch CL:0000073 barrier epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7354","subject_information_content":100.0} +UMLS:C4246711 Vascular smooth muscle cell of left coronary artery biolink:Cell skos:exactMatch UMLS:C4246711 Vascular smooth muscle cell of left coronary artery biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7355"} +UMLS:C5177470 Plasma cells/100 leukocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177470 Plasma cells/100 leukocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7356"} +UMLS:C1513756 Mummified Cell biolink:Cell skos:exactMatch NCIT:C37025 Mummified Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7357","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171963 Malignant cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171963 Malignant cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7358"} +UMLS:C0039215 CD4 Positive T Lymphocytes biolink:Cell skos:exactMatch NCIT:C12537 CD4-Positive T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7359","subject_information_content":81.79098623432766,"identifierIndex":0} +UMLS:C2950040 Type D cell of ileum biolink:Cell skos:exactMatch UMLS:C2950040 Type D cell of ileum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7360"} +UMLS:C1440359 Cells.CD80 biolink:Cell skos:exactMatch UMLS:C1440359 Cells.CD80 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7361"} +CL:1001217 interlobulary artery smooth muscle cell biolink:Cell skos:exactMatch CL:1001217 interlobulary artery smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7362","subject_information_content":94.92072406280138} +UMLS:C1514013 Neoplastic Mature Ganglion Cell biolink:Cell skos:exactMatch NCIT:C42084 Neoplastic Mature Ganglion Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7363","subject_information_content":100.0,"identifierIndex":0} +NCIT:C13012 Lymphoid Progenitor Cell biolink:Cell skos:exactMatch NCIT:C13012 Lymphoid Progenitor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7364","subject_information_content":100.0} +CL:0000479 vasopressin stimulating hormone secreting cell biolink:Cell skos:exactMatch CL:0000479 vasopressin stimulating hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7365","subject_information_content":100.0} +CL:0000796 CD8-alpha-beta-positive, alpha-beta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000796 CD8-alpha-beta-positive, alpha-beta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7366","subject_information_content":100.0} +CL:0000501 granulosa cell biolink:Cell skos:exactMatch CL:0000501 granulosa cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7367","subject_information_content":94.92072406280138} +UMLS:C1267808 SMIG+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117512001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7368","identifierIndex":0} +UMLS:C0039215 CD4 Positive T Lymphocytes biolink:Cell skos:exactMatch MESH:D015496 CD4-Positive T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7359","subject_information_content":81.79098623432766,"identifierIndex":1} +UMLS:C5186830 Myelocytes | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186830 Myelocytes | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7369"} +CL:0009033 plasma cell of appendix biolink:Cell skos:exactMatch CL:0009033 plasma cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7370","subject_information_content":100.0} +CL:1000344 paneth cell of epithelium proper of small intestine biolink:Cell skos:exactMatch CL:1000344 paneth cell of epithelium proper of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7371","subject_information_content":100.0} +CL:0002633 respiratory basal cell biolink:Cell skos:exactMatch CL:0002633 respiratory basal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7372","subject_information_content":85.74066969721673} +UMLS:C5173435 Monocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173435 Monocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7373"} +CL:4023081 inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mus musculus) biolink:Cell skos:exactMatch CL:4023081 inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7374","subject_information_content":100.0} +CL:0000505 substance P secreting cell biolink:Cell skos:exactMatch CL:0000505 substance P secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7375","subject_information_content":94.92072406280138} +CL:0000430 xanthophore cell biolink:Cell skos:exactMatch CL:0000430 xanthophore cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7376","subject_information_content":100.0} +UMLS:C1440243 CD117 Cells biolink:Cell skos:exactMatch UMLS:C1440243 CD117 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7377"} +UMLS:C0039215 CD4 Positive T Lymphocytes biolink:Cell skos:exactMatch SNOMEDCT:115412003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7359","subject_information_content":81.79098623432766,"identifierIndex":2} +UMLS:C4518158 Population of all motile spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726584006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7378","identifierIndex":0} +UMLS:C4072766 Cells.9q34 chromosome region biolink:Cell skos:exactMatch UMLS:C4072766 Cells.9q34 chromosome region biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7379"} +CL:0002641 epithelial cell of esophageal gland proper biolink:Cell skos:exactMatch CL:0002641 epithelial cell of esophageal gland proper biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7380","subject_information_content":100.0} +CL:1000405 epithelial cell of appendix biolink:Cell skos:exactMatch CL:1000405 epithelial cell of appendix biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7381","subject_information_content":83.1270105625346} +UMLS:C3640100 Lentivirus Vector rHIV7-shI-TAR-CCR5RZ-transduced Hematopoietic Progenitor Cells biolink:Cell skos:exactMatch NCIT:C101371 Lentivirus Vector rHIV7-shI-TAR-CCR5RZ-transduced Hematopoietic Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7382","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229659 Myelomonocyte biolink:Cell skos:exactMatch NCIT:C37041 Neoplastic Monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7383","subject_information_content":100.0,"identifierIndex":0} +CL:0000083 epithelial cell of pancreas biolink:Cell skos:exactMatch CL:0000083 epithelial cell of pancreas biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7384","subject_information_content":82.42859222307153} +UMLS:C1510960 Atypical Metaplastic Apocrine Cell biolink:Cell skos:exactMatch NCIT:C36909 Atypical Metaplastic Apocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7385","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0221910 Squamous Epithelial Cells biolink:Cell skos:exactMatch UMLS:C0221910 Squamous Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7386"} +CL:0000517 macrophage derived foam cell biolink:Cell skos:exactMatch CL:0000517 macrophage derived foam cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7387","subject_information_content":100.0} +UMLS:C2953241 Interdigitating dendritic cell of lymph node biolink:Cell skos:exactMatch UMLS:C2953241 Interdigitating dendritic cell of lymph node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7388"} +CL:0000351 trophoblast cell biolink:Cell skos:exactMatch CL:0000351 trophoblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7389","subject_information_content":81.79098623432766} +UMLS:C5157525 CD3-CD56+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157525 CD3-CD56+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7390"} +CL:1000222 stomach neuroendocrine cell biolink:Cell skos:exactMatch CL:1000222 stomach neuroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7391","subject_information_content":100.0} +UMLS:C4038490 Cells.diploid.S phase biolink:Cell skos:exactMatch UMLS:C4038490 Cells.diploid.S phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7392"} +UMLS:C0229659 Myelomonocyte biolink:Cell skos:exactMatch SNOMEDCT:41621006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7383","subject_information_content":100.0,"identifierIndex":1} +CL:0002580 preadipocyte of the breast biolink:Cell skos:exactMatch CL:0002580 preadipocyte of the breast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7393","subject_information_content":100.0} +UMLS:C2325047 Martinotti cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2325047 Martinotti cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7394"} +UMLS:C0014467 eosinophil biolink:Cell skos:exactMatch UMLS:C0014467 eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7395"} +UMLS:C4724904 Allogeneic iC9/CD19-CAR-CD28-zeta-2A-IL15-transduced Cord Blood-derived Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C148215 Allogeneic iC9/CD19-CAR-CD28-zeta-2A-IL15-transduced Cord Blood-derived Natural Killer Cells TAK-007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7396","subject_information_content":100.0,"identifierIndex":0} +CL:0002116 B220-low CD38-positive unswitched memory B cell biolink:Cell skos:exactMatch CL:0002116 B220-low CD38-positive unswitched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7397","subject_information_content":100.0} +CL:2000093 bronchus fibroblast of lung biolink:Cell skos:exactMatch CL:2000093 bronchus fibroblast of lung biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7398","subject_information_content":100.0} +UMLS:C2323033 Type EC1 enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2323033 Type EC1 enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7399"} +UMLS:C1879717 Apocrine Carcinoma Cell biolink:Cell skos:exactMatch NCIT:C36908 Apocrine Carcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7400","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0002565 iris pigment epithelial cell biolink:Cell skos:exactMatch CL:0002565 iris pigment epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7401","subject_information_content":100.0} +NCIT:C12527 Erythroblast biolink:Cell skos:exactMatch NCIT:C12527 Erythroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7402","subject_information_content":89.84144812560278} +CL:0002407 mature Vgamma2-positive thymocyte biolink:Cell skos:exactMatch CL:0002407 mature Vgamma2-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7403","subject_information_content":100.0} +CL:1000804 kidney outer medulla interstitial cell biolink:Cell skos:exactMatch CL:1000804 kidney outer medulla interstitial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7404","subject_information_content":100.0} +CL:0007006 chordamesodermal cell biolink:Cell skos:exactMatch CL:0007006 chordamesodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7405","subject_information_content":100.0} +CL:0000935 CD4-negative, CD8-negative, alpha-beta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000935 CD4-negative, CD8-negative, alpha-beta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7406","subject_information_content":100.0} +UMLS:C1513937 Neoplastic Chondroblast biolink:Cell skos:exactMatch NCIT:C36985 Neoplastic Chondroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7407","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1183712 Luminal cell of lactiferous gland biolink:Cell skos:exactMatch UMLS:C1183712 Luminal cell of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7408"} +UMLS:C1522109 Leukocyte - Lymphocyte - B-Lymphocyte (MMHCC) biolink:Cell skos:exactMatch NCIT:C22576 Mouse B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7409","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1183982 Chromaffin cell of left ovary biolink:Cell skos:exactMatch UMLS:C1183982 Chromaffin cell of left ovary biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7410"} +CL:0002493 strial basal cell biolink:Cell skos:exactMatch CL:0002493 strial basal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7411","subject_information_content":100.0} +CL:1001142 arcuate vein cell biolink:Cell skos:exactMatch CL:1001142 arcuate vein cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7412","subject_information_content":91.94953810872488} +CL:4023095 untufted pyramidal neuron biolink:Cell skos:exactMatch CL:4023095 untufted pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7413","subject_information_content":100.0} +UMLS:C1515962 Anaplastic Astrocyte biolink:Cell skos:exactMatch NCIT:C37136 Anaplastic Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7414","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267880 Lymphocyte positive for both CD16C antigen and CD56 antigen biolink:Cell skos:exactMatch SNOMEDCT:117557005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7415","identifierIndex":0} +UMLS:C1515141 T-Prolymphocyte biolink:Cell skos:exactMatch NCIT:C33927 T-Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7416","subject_information_content":100.0,"identifierIndex":0} +CL:0011019 mesothelial cell of epicardium biolink:Cell skos:exactMatch CL:0011019 mesothelial cell of epicardium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7417","subject_information_content":100.0} +UMLS:C1440346 Cells.CD66d biolink:Cell skos:exactMatch UMLS:C1440346 Cells.CD66d biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7418"} +CL:0002369 fungal spore biolink:Cell skos:exactMatch CL:0002369 fungal spore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7419","subject_information_content":77.34931628587292} +UMLS:C1512336 HeLa S3 biolink:Cell skos:exactMatch NCIT:C20227 HeLa S3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7420","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3811668 Circulating Plasma Cell biolink:Cell skos:exactMatch NCIT:C114278 Circulating Plasma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7421","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5157274 CD11c+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157274 CD11c+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7422"} +UMLS:C5417969 Autologous Anti-ICAM-1-CAR-CD28-4-1BB-CD3zeta-expressing T-cells AIC100 biolink:Cell skos:exactMatch NCIT:C173378 Autologous Anti-ICAM-1-CAR-CD28-4-1BB-CD3zeta-expressing T-cells AIC100 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7423","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2330686 Transitional myocyte of right branch of atrioventricular bundle biolink:Cell skos:exactMatch UMLS:C2330686 Transitional myocyte of right branch of atrioventricular bundle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7424"} +UMLS:C1267838 Lymphocyte negative for CD3 antigen and positive for CD16 antigen biolink:Cell skos:exactMatch SNOMEDCT:117527001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7425","identifierIndex":0} +UMLS:C2369073 MRC-5 cell line components biolink:Cell skos:exactMatch UMLS:C2369073 MRC-5 cell line components biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7426"} +UMLS:C3827147 Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201 biolink:Cell skos:exactMatch NCIT:C106242 Adenovector-transduced AP1903-inducible MyD88/CD40-expressing Autologous PSMA-specific Prostate Cancer Vaccine BPX-201 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7427","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5177800 Polymorphonuclear cells/leukocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177800 Polymorphonuclear cells/leukocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7428"} +UMLS:C0229617 Medium sized lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:52180000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7429","identifierIndex":0} +UMLS:C1515997 Anti-gp100 TCR Retroviral Vector-Transduced Autologous TIL biolink:Cell skos:exactMatch NCIT:C38135 Anti-gp100 TCR Retroviral Vector-Transduced Autologous TIL biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7430","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5380985 Cells.CD8.HLA-A1 CMV specific biolink:Cell skos:exactMatch UMLS:C5380985 Cells.CD8.HLA-A1 CMV specific biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7431"} +CL:0000167 peptide hormone secreting cell biolink:Cell skos:exactMatch CL:0000167 peptide hormone secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7432","subject_information_content":68.86768025975131} +CL:4023008 intratelencephalic-projecting glutamatergic cortical neuron biolink:Cell skos:exactMatch CL:4023008 intratelencephalic-projecting glutamatergic cortical neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7433","subject_information_content":80.66139376001811} +UMLS:C1711279 Neoplastic Parathyroid Gland Oncocyte biolink:Cell skos:exactMatch NCIT:C48272 Neoplastic Parathyroid Gland Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7434","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1180383 Specialized cardiac myocyte biolink:Cell skos:exactMatch UMLS:C1180383 Specialized cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7435"} +CL:0009092 endothelial cell of placenta biolink:Cell skos:exactMatch CL:0009092 endothelial cell of placenta biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7436"} +UMLS:C4245839 Set of specialized cardiac muscle cells biolink:Cell skos:exactMatch UMLS:C4245839 Set of specialized cardiac muscle cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7437"} +UMLS:C1115672 Lymphocytes.kappa biolink:Cell skos:exactMatch UMLS:C1115672 Lymphocytes.kappa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7438"} +UMLS:C4524461 Autologous Human Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes biolink:Cell skos:exactMatch NCIT:C133191 Autologous Human Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7439","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216295 Neutrophils|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216295 Neutrophils|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7440"} +UMLS:C1518125 MI01 biolink:Cell skos:exactMatch NCIT:C20279 MI01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7441","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170928 Leukocytes | Ear | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170928 Leukocytes | Ear | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7442"} +UMLS:C5417908 Anti-CD19 Antibody-T-cell Receptor-expressing T-cells ET019003 biolink:Cell skos:exactMatch NCIT:C172202 Anti-CD19 Antibody-T-cell Receptor-expressing T-cells ET019003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7443","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2698062 Alpha-Galactosylceramide-Pulsed Autologous Dendritic Cells biolink:Cell skos:exactMatch NCIT:C78489 Alpha-Galactosylceramide-Pulsed Autologous Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7444","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4724877 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes biolink:Cell skos:exactMatch NCIT:C148177 Autologous Anti-BCMA-CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7445","subject_information_content":100.0,"identifierIndex":0} +CL:0000569 cardiac mesenchymal cell biolink:Cell skos:exactMatch CL:0000569 cardiac mesenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7446","subject_information_content":94.92072406280138} +CL:1000478 transitional myocyte of sinoatrial node biolink:Cell skos:exactMatch CL:1000478 transitional myocyte of sinoatrial node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7447","subject_information_content":100.0} +UMLS:C1178808 Purkinje myocyte biolink:Cell skos:exactMatch UMLS:C1178808 Purkinje myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7448"} +UMLS:C1513469 Monocytoid B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C33138 Monocytoid B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7449","subject_information_content":100.0,"identifierIndex":0} +CL:0000667 collagen secreting cell biolink:Cell skos:exactMatch CL:0000667 collagen secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7450","subject_information_content":83.89907621744979} +UMLS:C5157375 CD2+CD3+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157375 CD2+CD3+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7451"} +UMLS:C1512098 Dyskeratotic Cell biolink:Cell skos:exactMatch NCIT:C39667 Dyskeratotic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7452","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1276861 Entire endometrial glandular cell biolink:Cell skos:exactMatch SNOMEDCT:254032002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7453","identifierIndex":0} +CL:0000927 CD4-positive type I NK T cell secreting interleukin-4 biolink:Cell skos:exactMatch CL:0000927 CD4-positive type I NK T cell secreting interleukin-4 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7454","subject_information_content":100.0} +UMLS:C5206130 Autologous TCR-engineered T-cells IMA203 biolink:Cell skos:exactMatch NCIT:C161831 Autologous TCR-engineered T-cells IMA203 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7455","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1265916 Abnormal macrophage biolink:Cell skos:exactMatch NCIT:C36832 Abnormal Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7456","subject_information_content":81.20444558259193,"identifierIndex":0} +CL:0005024 somatomotor neuron biolink:Cell skos:exactMatch CL:0005024 somatomotor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7457","subject_information_content":81.20444558259193} +CL:1000615 kidney cortex tubule cell biolink:Cell skos:exactMatch CL:1000615 kidney cortex tubule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7458","subject_information_content":80.66139376001811} +UMLS:C1518175 Malignant Epithelial Clear Cell biolink:Cell skos:exactMatch NCIT:C36784 Malignant Epithelial Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7459","subject_information_content":86.87026217152628,"identifierIndex":0} +UMLS:C1513929 Neoplastic B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38640 Neoplastic B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7460","subject_information_content":72.4385040025727,"identifierIndex":0} +UMLS:C5157262 CD117 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157262 CD117 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7461"} +NCIT:C13151 Olfactory Receptor Cell biolink:Cell skos:exactMatch NCIT:C13151 Olfactory Receptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7462","subject_information_content":100.0} +UMLS:C1514741 Reactive Squamous Cell biolink:Cell skos:exactMatch NCIT:C36810 Reactive Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7463","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5170899 Leukemia markers | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5170899 Leukemia markers | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7464"} +UMLS:C1514041 Neoplastic Myoid Cell biolink:Cell skos:exactMatch NCIT:C36964 Neoplastic Myoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7465","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1265916 Abnormal macrophage biolink:Cell skos:exactMatch SNOMEDCT:127565009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7456","subject_information_content":81.20444558259193,"identifierIndex":1} +CL:1000340 enterocyte of epithelium proper of duodenum biolink:Cell skos:exactMatch CL:1000340 enterocyte of epithelium proper of duodenum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7466","subject_information_content":100.0} +CL:0000861 elicited macrophage biolink:Cell skos:exactMatch CL:0000861 elicited macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7467","subject_information_content":85.74066969721673} +UMLS:C5427574 Ganglion cells.left biolink:Cell skos:exactMatch UMLS:C5427574 Ganglion cells.left biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7468"} +UMLS:C1515149 TE07 biolink:Cell skos:exactMatch NCIT:C20302 TE07 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7469","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4484193 Neutrophil.PMA stimulated.DHR biolink:Cell skos:exactMatch UMLS:C4484193 Neutrophil.PMA stimulated.DHR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7470"} +NCIT:C26454 Dopaminergic Cell biolink:Cell skos:exactMatch NCIT:C26454 Dopaminergic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7471","subject_information_content":100.0} +CL:0000557 granulocyte monocyte progenitor cell biolink:Cell skos:exactMatch CL:0000557 granulocyte monocyte progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7472","subject_information_content":91.94953810872488} +CL:1000717 kidney outer medulla collecting duct intercalated cell biolink:Cell skos:exactMatch CL:1000717 kidney outer medulla collecting duct intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7473","subject_information_content":100.0} +CL:4023000 beta motor neuron biolink:Cell skos:exactMatch CL:4023000 beta motor neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7474","subject_information_content":91.94953810872488} +CL:0000625 CD8-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000625 CD8-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7475","subject_information_content":77.69020780594161} +UMLS:C5157453 CD3+CD62L+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157453 CD3+CD62L+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7476"} +UMLS:C5216260 Malignant cells|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216260 Malignant cells|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7477"} +UMLS:C2333098 Set of cholinergic cells of diagonal gyrus [Ch2] biolink:Cell skos:exactMatch UMLS:C2333098 Set of cholinergic cells of diagonal gyrus [Ch2] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7478"} +UMLS:C1440603 Erythrocytes.CD59 deficient biolink:Cell skos:exactMatch UMLS:C1440603 Erythrocytes.CD59 deficient biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7479"} +UMLS:C1317187 Cells.CD10+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C1317187 Cells.CD10+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7480"} +UMLS:C4300402 Cells.chromosome region 5q31 deletion biolink:Cell skos:exactMatch UMLS:C4300402 Cells.chromosome region 5q31 deletion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7481"} +UMLS:C0314591 Colony-forming unit of lymphoid-myeloid lineage biolink:Cell skos:exactMatch SNOMEDCT:444995008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7482","identifierIndex":0} +UMLS:C4687585 Autologous PBLs Retrovirally-transduced with TCRs Targeting Neoantigens biolink:Cell skos:exactMatch NCIT:C146937 Autologous PBLs Retrovirally-transduced with TCRs Targeting Neoantigens biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7483","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5154475 Basophils | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154475 Basophils | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7484"} +CL:0000772 immature eosinophil biolink:Cell skos:exactMatch CL:0000772 immature eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7485","subject_information_content":88.2062864997332} +UMLS:C1512944 Intraepithelial Lymphocytes biolink:Cell skos:exactMatch NCIT:C38331 Intraepithelial T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7487","subject_information_content":94.92072406280138,"identifierIndex":0} +NCIT:C12621 Antigen Presenting Cell biolink:Cell skos:exactMatch NCIT:C12621 Antigen Presenting Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7486","subject_information_content":76.4125729994664} +UMLS:C1513946 Neoplastic Cutaneous Basal Cell biolink:Cell skos:exactMatch NCIT:C36781 Neoplastic Cutaneous Basal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7488","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0312866 Sensitized leukocyte biolink:Cell skos:exactMatch SNOMEDCT:64668006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7489","identifierIndex":0} +CL:0002455 CD8_alpha-negative plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0002455 CD8_alpha-negative plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7490","subject_information_content":100.0} +UMLS:C4086897 Tergenpumatucel-L biolink:Cell skos:exactMatch NCIT:C66985 Tergenpumatucel-L biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7491","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163717 Erythrocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163717 Erythrocytes | Fetus | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7492"} +UMLS:C5180579 Segmented neutrophils | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180579 Segmented neutrophils | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7493"} +UMLS:C1267996 Lymphocyte positive for CD117 antigen biolink:Cell skos:exactMatch SNOMEDCT:117436000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7494","identifierIndex":0} +UMLS:C5418069 Multi-antigen-directed Autologous T-cells NEXI-002 biolink:Cell skos:exactMatch NCIT:C174128 Multi-antigen-directed Autologous T-cells NEXI-002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7495","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512944 Intraepithelial Lymphocytes biolink:Cell skos:exactMatch MESH:D000075942 Intraepithelial Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7487","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:0002101 CD38-positive naive B cell biolink:Cell skos:exactMatch CL:0002101 CD38-positive naive B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7496","subject_information_content":91.94953810872488} +CL:0000106 unipolar neuron biolink:Cell skos:exactMatch CL:0000106 unipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7497","subject_information_content":100.0} +UMLS:C2919236 Colony-forming unit of granulocytic-monocytic lineage (cell) biolink:Cell skos:exactMatch SNOMEDCT:445259001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7498","identifierIndex":0} +UMLS:C2325342 Set of cholinergic cells of substantia innominata [Ch4] biolink:Cell skos:exactMatch UMLS:C2325342 Set of cholinergic cells of substantia innominata [Ch4] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7499"} +UMLS:C5163557 Epithelial cells.squamous | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163557 Epithelial cells.squamous | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7500"} +UMLS:C3178740 Be1 Cells biolink:Cell skos:exactMatch UMLS:C3178740 Be1 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7501"} +UMLS:C5157267 CD11a blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157267 CD11a blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7502"} +CL:0011005 GABAergic interneuron biolink:Cell skos:exactMatch CL:0011005 GABAergic interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7503","subject_information_content":72.4385040025727} +CL:0000431 iridophore biolink:Cell skos:exactMatch CL:0000431 iridophore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7504","subject_information_content":100.0} +UMLS:C5417979 Autologous AFP Specific T Cell Receptor Transduced T Cells C-TCR055 biolink:Cell skos:exactMatch NCIT:C173429 Autologous AFP Specific T Cell Receptor Transduced T Cells C-TCR055 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7505","subject_information_content":100.0,"identifierIndex":0} +CL:0001014 CD1a-positive Langerhans cell biolink:Cell skos:exactMatch CL:0001014 CD1a-positive Langerhans cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7506","subject_information_content":91.94953810872488} +UMLS:C0229637 Neutrophilic myelocyte biolink:Cell skos:exactMatch SNOMEDCT:4717004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7507","identifierIndex":0} +UMLS:C1520105 Wisconsin H13 stem cell line biolink:Cell skos:exactMatch NCIT:C20311 WA13 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7508","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2985477 Exocrine Pancreas Cell biolink:Cell skos:exactMatch NCIT:C93173 Exocrine Pancreas Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7509","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000529 pigmented epithelial cell biolink:Cell skos:exactMatch CL:0000529 pigmented epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7510","subject_information_content":94.92072406280138} +UMLS:C5157613 CD55 RBC | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157613 CD55 RBC | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7511"} +CL:0009067 vacuolated fetal-type enterocyte biolink:Cell skos:exactMatch CL:0009067 vacuolated fetal-type enterocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7512"} +CL:1000490 mesothelial cell of peritoneum biolink:Cell skos:exactMatch CL:1000490 mesothelial cell of peritoneum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7513","subject_information_content":91.94953810872488} +UMLS:C5157229 CD1 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157229 CD1 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7514"} +UMLS:C0882937 Cells.CD8+CD57+ biolink:Cell skos:exactMatch UMLS:C0882937 Cells.CD8+CD57+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7515"} +UMLS:C1880084 Ciliated Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C61577 Ciliated Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7516","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5161801 Cytoplasmic CD3 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5161801 Cytoplasmic CD3 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7517"} +CL:0002028 basophil mast progenitor cell biolink:Cell skos:exactMatch CL:0002028 basophil mast progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7518","subject_information_content":94.92072406280138} +UMLS:C4329343 Anti-hCD70-CAR Retroviral Vector-transduced Autologous PBLs biolink:Cell skos:exactMatch NCIT:C129593 Anti-hCD70-CAR Retroviral Vector-transduced Autologous PBLs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7519","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5158933 Cerebroventricular lining cells | Cerebral spinal fluid | Cytology biolink:Cell skos:exactMatch UMLS:C5158933 Cerebroventricular lining cells | Cerebral spinal fluid | Cytology biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7520"} +CL:0009079 thymic fibroblast type 2 biolink:Cell skos:exactMatch CL:0009079 thymic fibroblast type 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7521"} +CL:0009016 intestinal crypt stem cell of large intestine biolink:Cell skos:exactMatch CL:0009016 intestinal crypt stem cell of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7522","subject_information_content":94.92072406280138} +UMLS:C3641631 FAP-specific CD8-positive T Cells biolink:Cell skos:exactMatch NCIT:C103829 FAP-specific CD8-positive T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7523","subject_information_content":100.0,"identifierIndex":0} +CL:0002197 inactive chief cell of parathyoid gland biolink:Cell skos:exactMatch CL:0002197 inactive chief cell of parathyoid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7524","subject_information_content":100.0} +UMLS:C5426675 Monocytes.programmed cell death ligand 1 biolink:Cell skos:exactMatch UMLS:C5426675 Monocytes.programmed cell death ligand 1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7525"} +CL:0000879 meningeal macrophage biolink:Cell skos:exactMatch CL:0000879 meningeal macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7526","subject_information_content":100.0} +UMLS:C5157471 CD3+IL2R1+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157471 CD3+IL2R1+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7527"} +UMLS:C5418084 Allogeneic Anti-CD20 CAR T-cells LUCAR-20S biolink:Cell skos:exactMatch NCIT:C174397 Allogeneic Anti-CD20 CAR T-cells LUCAR-20S biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7528","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267990 Lymphocyte positive for CD104 antigen biolink:Cell skos:exactMatch SNOMEDCT:117430006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7529","identifierIndex":0} +UMLS:C5168981 Immature lymphocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168981 Immature lymphocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7530"} +CL:0002345 CD27-low, CD11b-low immature natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002345 CD27-low, CD11b-low immature natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7531","subject_information_content":100.0} +CL:0002551 fibroblast of dermis biolink:Cell skos:exactMatch CL:0002551 fibroblast of dermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7532","subject_information_content":91.94953810872488} +UMLS:C1514073 Neoplastic Prolymphocyte biolink:Cell skos:exactMatch NCIT:C37182 Neoplastic Prolymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7533","subject_information_content":88.2062864997332,"identifierIndex":0} +UMLS:C5154476 Basophils | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154476 Basophils | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7534"} +UMLS:C5216210 Erythrocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216210 Erythrocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7535"} +UMLS:C1257909 Diploid Cell biolink:Cell skos:exactMatch NCIT:C12949 Somatic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7536","subject_information_content":100.0,"identifierIndex":0} +CL:1001319 bladder cell biolink:Cell skos:exactMatch CL:1001319 bladder cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7537","subject_information_content":88.2062864997332} +UMLS:C4697020 Cells.CD25-CD127+ biolink:Cell skos:exactMatch UMLS:C4697020 Cells.CD25-CD127+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7538"} +CL:0000315 tear secreting cell biolink:Cell skos:exactMatch CL:0000315 tear secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7539","subject_information_content":100.0} +CL:0000158 club cell biolink:Cell skos:exactMatch CL:0000158 club cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7540","subject_information_content":100.0} +UMLS:C1440051 Abnormal blood cells.CD19 biolink:Cell skos:exactMatch UMLS:C1440051 Abnormal blood cells.CD19 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7541"} +UMLS:C2327375 Fibroblast of subepithelial connective tissue of prostatic gland biolink:Cell skos:exactMatch UMLS:C2327375 Fibroblast of subepithelial connective tissue of prostatic gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7542"} +UMLS:C2330982 Tanycytes biolink:Cell skos:exactMatch UMLS:C2330982 Tanycytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7543"} +UMLS:C0301868 Committed cell biolink:Cell skos:exactMatch SNOMEDCT:55484008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7544","identifierIndex":0} +CL:3000002 sympathetic noradrenergic neuron biolink:Cell skos:exactMatch CL:3000002 sympathetic noradrenergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7545","subject_information_content":100.0} +UMLS:C1514178 Pleomorphic Reed-Sternberg Cell biolink:Cell skos:exactMatch NCIT:C38423 Pleomorphic Reed-Sternberg Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7546","subject_information_content":100.0,"identifierIndex":0} +CL:0000924 CD4-negative, CD8-negative type I NK T cell biolink:Cell skos:exactMatch CL:0000924 CD4-negative, CD8-negative type I NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7547","subject_information_content":89.84144812560278} +CL:0002225 secondary lens fiber biolink:Cell skos:exactMatch CL:0002225 secondary lens fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7548","subject_information_content":91.94953810872488} +UMLS:C2339111 Type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell skos:exactMatch UMLS:C2339111 Type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7549"} +CL:0000786 plasma cell biolink:Cell skos:exactMatch CL:0000786 plasma cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7550","subject_information_content":81.20444558259193} +UMLS:C1182610 Corneal epithelial cell biolink:Cell skos:exactMatch UMLS:C1182610 Corneal epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7551"} +UMLS:C1267801 CYIG MU+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117505005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7552","identifierIndex":0} +CL:0000926 CD4-positive type I NK T cell secreting interferon-gamma biolink:Cell skos:exactMatch CL:0000926 CD4-positive type I NK T cell secreting interferon-gamma biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7553","subject_information_content":100.0} +CL:0000773 eosinophilic metamyelocyte biolink:Cell skos:exactMatch CL:0000773 eosinophilic metamyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7554","subject_information_content":100.0} +CL:0002135 nonkeratinized cell of epidermis biolink:Cell skos:exactMatch CL:0002135 nonkeratinized cell of epidermis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7555","subject_information_content":100.0} +MESH:D002477 Cells biolink:Cell skos:exactMatch MESH:D002477 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7556"} +CL:0002129 regular atrial cardiac myocyte biolink:Cell skos:exactMatch CL:0002129 regular atrial cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7557","subject_information_content":100.0} +UMLS:C0314589 Granulocyte-Macrophage Colony Forming Units biolink:Cell skos:exactMatch NCIT:C121475 Granulocyte-Macrophage Colony Forming Unit biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7558","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4322735 CD20+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322735 CD20+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7559"} +CL:0002540 mesenchymal stem cell of the bone marrow biolink:Cell skos:exactMatch CL:0002540 mesenchymal stem cell of the bone marrow biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7560","subject_information_content":94.92072406280138} +UMLS:C5157431 CD3+CD25+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157431 CD3+CD25+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7561"} +MESH:D009865 Oocytes biolink:Cell skos:exactMatch MESH:D009865 Oocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7562"} +UMLS:C1956421 Neoplastic Stem Cells biolink:Cell skos:exactMatch MESH:D014411 Neoplastic Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7563","identifierIndex":0} +UMLS:C5173494 Mononuclear cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173494 Mononuclear cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7564"} +CL:0002204 brush cell biolink:Cell skos:exactMatch CL:0002204 brush cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7565","subject_information_content":82.42859222307153} +CL:1000361 transitional myocyte of interatrial septum biolink:Cell skos:exactMatch CL:1000361 transitional myocyte of interatrial septum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7566","subject_information_content":100.0} +UMLS:C4764041 Autologous Deep IL-15 Primed T-cells TRQ15-01 biolink:Cell skos:exactMatch NCIT:C158091 Autologous Deep IL-15 Primed T-cells TRQ15-01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7567","subject_information_content":100.0,"identifierIndex":0} +CL:0001204 CD4-positive, alpha-beta memory T cell, CD45RO-positive biolink:Cell skos:exactMatch CL:0001204 CD4-positive, alpha-beta memory T cell, CD45RO-positive biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7568","subject_information_content":91.94953810872488} +CL:4023093 stellate pyramidal neuron biolink:Cell skos:exactMatch CL:4023093 stellate pyramidal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7569","subject_information_content":100.0} +CL:0002663 myocardial endocrine cell of atrium biolink:Cell skos:exactMatch CL:0002663 myocardial endocrine cell of atrium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7570","subject_information_content":100.0} +UMLS:C3656576 Cells.CD158b biolink:Cell skos:exactMatch UMLS:C3656576 Cells.CD158b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7571"} +UMLS:C1440351 Cells.CD72 biolink:Cell skos:exactMatch UMLS:C1440351 Cells.CD72 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7572"} +UMLS:C1513957 Neoplastic Eosinophilic Cell Oncocyte biolink:Cell skos:exactMatch NCIT:C37166 Neoplastic Eosinophilic Cell Oncocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7573","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:4028004 alveolar type 1 fibroblast cell biolink:Cell skos:exactMatch CL:4028004 alveolar type 1 fibroblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7574"} +UMLS:C1518624 Mouse Osteoblast biolink:Cell skos:exactMatch NCIT:C22680 Mouse Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7575","subject_information_content":100.0,"identifierIndex":0} +CL:0000096 mature neutrophil biolink:Cell skos:exactMatch CL:0000096 mature neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7576","subject_information_content":91.94953810872488} +UMLS:C5382576 Cells.CD8.PMA+ionomycin stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5382576 Cells.CD8.PMA+ionomycin stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7577"} +UMLS:C1267991 CD105+ lymphocyte biolink:Cell skos:exactMatch SNOMEDCT:117431005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7578","identifierIndex":0} +NCIT:C13015 Myeloblast biolink:Cell skos:exactMatch NCIT:C13015 Myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7579","subject_information_content":100.0} +CL:0000551 unimodal nocireceptor biolink:Cell skos:exactMatch CL:0000551 unimodal nocireceptor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7580","subject_information_content":100.0} +UMLS:C1708867 Malignant Connective and Soft Tissue Cell biolink:Cell skos:exactMatch NCIT:C48787 Malignant Connective and Soft Tissue Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7581","subject_information_content":71.3332970622678,"identifierIndex":0} +UMLS:C1510967 Atypical Transitional Cell biolink:Cell skos:exactMatch NCIT:C36911 Atypical Transitional Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7582","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2339291 Syncytial giant cell biolink:Cell skos:exactMatch UMLS:C2339291 Syncytial giant cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7583"} +UMLS:C2350245 Megakaryocyte Progenitor Cells biolink:Cell skos:exactMatch MESH:D055016 Megakaryocyte Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7584","identifierIndex":0} +UMLS:C5161797 Cytoplasmic CD179a blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5161797 Cytoplasmic CD179a blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7585"} +CL:0007004 premigratory neural crest cell biolink:Cell skos:exactMatch CL:0007004 premigratory neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7586","subject_information_content":100.0} +UMLS:C1709194 Neoplastic Plump Endothelial Cell biolink:Cell skos:exactMatch NCIT:C53305 Neoplastic Plump Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7587","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181542 Type II cell of paraganglion biolink:Cell skos:exactMatch UMLS:C1181542 Type II cell of paraganglion biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7588"} +UMLS:C2362027 Frozen erythrocytes biolink:Cell skos:exactMatch UMLS:C2362027 Frozen erythrocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7589"} +UMLS:C5157552 CD4+CD45RO+ cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157552 CD4+CD45RO+ cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7590"} +CL:0002391 multinucleate blastoconidium biolink:Cell skos:exactMatch CL:0002391 multinucleate blastoconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7591","subject_information_content":100.0} +CL:0000401 macrophage (sensu Diptera) biolink:Cell skos:exactMatch CL:0000401 macrophage (sensu Diptera) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7592","subject_information_content":100.0} +UMLS:C3870602 B cells+monocytes biolink:Cell skos:exactMatch UMLS:C3870602 B cells+monocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7593"} +UMLS:C1513370 MizMedi ES Cell Line biolink:Cell skos:exactMatch NCIT:C20278 MizMedi ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7594","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2984034 Allogeneic Cytomegalovirus-Specific Cytotoxic T lymphocytes biolink:Cell skos:exactMatch NCIT:C91095 Allogeneic Cytomegalovirus-Specific Cytotoxic T lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7595","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518009 Low Columnar Cell biolink:Cell skos:exactMatch NCIT:C33008 Low Columnar Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7596","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1518216 Malignant Neuroendocrine Cell biolink:Cell skos:exactMatch NCIT:C36825 Malignant Neuroendocrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7597","subject_information_content":80.66139376001811,"identifierIndex":0} +CL:0002134 stromal cell of ovarian medulla biolink:Cell skos:exactMatch CL:0002134 stromal cell of ovarian medulla biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7598","subject_information_content":100.0} +UMLS:C1513961 Neoplastic Epithelial Polygonal Cell biolink:Cell skos:exactMatch NCIT:C37036 Neoplastic Epithelial Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7599","subject_information_content":83.89907621744979,"identifierIndex":0} +MESH:D018414 CD8-Positive T-Lymphocytes biolink:Cell skos:exactMatch MESH:D018414 CD8-Positive T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7600"} +UMLS:C4697031 Cells.CD38+IgM- biolink:Cell skos:exactMatch UMLS:C4697031 Cells.CD38+IgM- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7601"} +UMLS:C5154297 Band form neutrophils | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154297 Band form neutrophils | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7602"} +CL:0000518 phagocyte (sensu Vertebrata) biolink:Cell skos:exactMatch CL:0000518 phagocyte (sensu Vertebrata) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7603","subject_information_content":91.94953810872488} +UMLS:C5416839 Amniotic Epithelial Cells biolink:Cell skos:exactMatch UMLS:C5416839 Amniotic Epithelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7604"} +UMLS:C5177629 Platelets reticulated | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177629 Platelets reticulated | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7605"} +UMLS:C5216300 Nucleated cells|NCnc|Pt|Dial fld biolink:Cell skos:exactMatch UMLS:C5216300 Nucleated cells|NCnc|Pt|Dial fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7606"} +UMLS:C1267812 Lymphoblast positive for CD2 antigen biolink:Cell skos:exactMatch SNOMEDCT:117515004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7607","identifierIndex":0} +CL:0019026 periportal region hepatocyte biolink:Cell skos:exactMatch CL:0019026 periportal region hepatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7608","subject_information_content":100.0} +UMLS:C1440412 Cells.t(5;12)(q33.1;p13)(PDGFRB,ETV6) biolink:Cell skos:exactMatch UMLS:C1440412 Cells.t(5;12)(q33.1;p13)(PDGFRB,ETV6) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7609"} +UMLS:C1519459 Spindle-Shaped Meningothelial Cell biolink:Cell skos:exactMatch NCIT:C37156 Spindle-Shaped Meningothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7610","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2347293 Mononucleated Blood Cell biolink:Cell skos:exactMatch NCIT:C73123 Mononucleated Blood Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7611","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0231010 Penetrated oocyte biolink:Cell skos:exactMatch SNOMEDCT:3447009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7612","identifierIndex":0} +UMLS:C5157237 CD10 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157237 CD10 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7613"} +UMLS:C1183498 Primitive node cell biolink:Cell skos:exactMatch UMLS:C1183498 Primitive node cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7614"} +CL:0002100 regular interventricular cardiac myocyte biolink:Cell skos:exactMatch CL:0002100 regular interventricular cardiac myocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7615","subject_information_content":100.0} +CL:0002504 enteric smooth muscle cell biolink:Cell skos:exactMatch CL:0002504 enteric smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7616","subject_information_content":80.66139376001811} +CL:1001590 epididymis glandular cell biolink:Cell skos:exactMatch CL:1001590 epididymis glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7617","subject_information_content":100.0} +UMLS:C5421015 Rovaleucel biolink:Cell skos:exactMatch NCIT:C174916 Rovaleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7618","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267818 Lymphocyte positive for both CD3 antigen and CD25 antigen biolink:Cell skos:exactMatch SNOMEDCT:116856004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7619","identifierIndex":0} +UMLS:C1513945 Neoplastic Cuboidal Cell biolink:Cell skos:exactMatch NCIT:C42082 Neoplastic Cuboidal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7620","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4518169 Population of all band eosinophils in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725233000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7621","identifierIndex":0} +UMLS:C4725932 Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa biolink:Cell skos:exactMatch NCIT:C150698 Autologous FRa-4SCAR-expressing T-cells 4SCAR-FRa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7622","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4085944 Allodepleted T Cell Immunotherapeutic ATIR101 biolink:Cell skos:exactMatch UMLS:C4722614 Theralux-ATIR biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7623","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2334601 Intermediate cell of urothelium biolink:Cell skos:exactMatch UMLS:C2334601 Intermediate cell of urothelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7624"} +CL:0000355 multi-potent skeletal muscle stem cell biolink:Cell skos:exactMatch CL:0000355 multi-potent skeletal muscle stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7625","subject_information_content":100.0} +UMLS:C1515127 T-Cell Large Granular Lymphocyte biolink:Cell skos:exactMatch NCIT:C38673 T-Cell Large Granular Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7626","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440320 Cells.CD48 biolink:Cell skos:exactMatch UMLS:C1440320 Cells.CD48 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7627"} +UMLS:C4505243 Suprachiasmatic Nucleus Neurons biolink:Cell skos:exactMatch MESH:D000074523 Suprachiasmatic Nucleus Neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7628","identifierIndex":0} +UMLS:C5446533 Autologous PD1-knockout CD19-specific CAR T Cells biolink:Cell skos:exactMatch NCIT:C175452 Autologous PD1-knockout CD19-specific CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7629","subject_information_content":100.0,"identifierIndex":0} +CL:4023017 sst GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023017 sst GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7630","subject_information_content":83.1270105625346} +UMLS:C4733604 Genetically-modified Anti-HER2-CAR-CD28zeta-expressing Allogeneic NK-92/5.28.z Cells biolink:Cell skos:exactMatch NCIT:C154568 Genetically-modified Anti-HER2-CAR-CD28zeta-expressing Allogeneic NK-92/5.28.z Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7631","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0483192 CD5+CD2- biolink:Cell skos:exactMatch UMLS:C0483192 CD5+CD2- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7632"} +UMLS:C4085944 Allodepleted T Cell Immunotherapeutic ATIR101 biolink:Cell skos:exactMatch NCIT:C123911 Allodepleted T Cell Immunotherapeutic ATIR101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7623","subject_information_content":100.0,"identifierIndex":1} +CL:0000650 mesangial cell biolink:Cell skos:exactMatch CL:0000650 mesangial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7633","subject_information_content":91.94953810872488} +UMLS:C1257793 Lymphatic Endothelial Cells biolink:Cell skos:exactMatch UMLS:C1257793 Lymphatic Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7634"} +CL:0008011 skeletal muscle satellite stem cell biolink:Cell skos:exactMatch CL:0008011 skeletal muscle satellite stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7635","subject_information_content":100.0} +UMLS:C5163724 Erythrocytes | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5163724 Erythrocytes | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7636"} +CL:0005010 renal intercalated cell biolink:Cell skos:exactMatch CL:0005010 renal intercalated cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7637","subject_information_content":84.76217218840416} +UMLS:C0597407 retinal bipolar neuron biolink:Cell skos:exactMatch UMLS:C0597407 retinal bipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7638"} +UMLS:C2718310 Gametes biolink:Cell skos:exactMatch UMLS:C2718310 Gametes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7639"} +UMLS:C2986403 Anti-CTLA4 MoAb RNA/GITRL RNA-transfected Autologous Dendritic Cell Vaccine biolink:Cell skos:exactMatch NCIT:C94218 Anti-CTLA4 MoAb RNA/GITRL RNA-transfected Autologous Dendritic Cell Vaccine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7640","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5237178 MB-102 biolink:Cell skos:exactMatch NCIT:C165435 Autologous CD123CAR-CD28-CD3zeta-EGFRt-expressing T Lymphocytes MB-102 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7641","subject_information_content":100.0,"identifierIndex":0} +CL:0002154 early promyelocyte biolink:Cell skos:exactMatch CL:0002154 early promyelocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7642","subject_information_content":100.0} +UMLS:C5176526 Pelger Huet cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5176526 Pelger Huet cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7643"} +UMLS:C1514584 Pseudo-Gaucher Cell biolink:Cell skos:exactMatch NCIT:C37078 Pseudo-Gaucher Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7644","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2329382 Brush cell of epithelium proper of large intestine biolink:Cell skos:exactMatch UMLS:C2329382 Brush cell of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7645"} +UMLS:C2328498 Pacemaker cell of sinuatrial node biolink:Cell skos:exactMatch UMLS:C2328498 Pacemaker cell of sinuatrial node biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7646"} +UMLS:C4682464 Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707 biolink:Cell skos:exactMatch NCIT:C139730 Autologous ACTR-CD16-CD28-expressing T-lymphocytes ACTR707 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7647","subject_information_content":100.0,"identifierIndex":0} +CL:0000048 multi fate stem cell biolink:Cell skos:exactMatch CL:0000048 multi fate stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7648","subject_information_content":70.63487872280473} +UMLS:C0282480 Muscle Fibers, White biolink:Cell skos:exactMatch UMLS:C0282480 Muscle Fibers, White biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7649"} +CL:1000546 kidney medulla collecting duct epithelial cell biolink:Cell skos:exactMatch CL:1000546 kidney medulla collecting duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7650","subject_information_content":100.0} +UMLS:C1440147 Blasts.CD34 biolink:Cell skos:exactMatch UMLS:C1440147 Blasts.CD34 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7651"} +CL:0002665 otic fibrocyte biolink:Cell skos:exactMatch CL:0002665 otic fibrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7652","subject_information_content":86.87026217152628} +CL:1001602 cerebral cortex endothelial cell biolink:Cell skos:exactMatch CL:1001602 cerebral cortex endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7653","subject_information_content":100.0} +UMLS:C4687588 NY-ESO-1 TCR/sr39TK Lentiviral Vector-transduced Autologous PBSCs biolink:Cell skos:exactMatch NCIT:C146940 NY-ESO-1 TCR/sr39TK Lentiviral Vector-transduced Autologous PBSCs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7654","subject_information_content":100.0,"identifierIndex":0} +CL:1000435 epithelial cell of lacrimal duct biolink:Cell skos:exactMatch CL:1000435 epithelial cell of lacrimal duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7655","subject_information_content":94.92072406280138} +UMLS:C5158561 Cells.CD4-CD8-CD45R+TCR alpha beta+ | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5158561 Cells.CD4-CD8-CD45R+TCR alpha beta+ | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7656"} +UMLS:C1881538 Malignant Basaloid Cell biolink:Cell skos:exactMatch NCIT:C62227 Malignant Basaloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7657","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C5177617 Platelets | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177617 Platelets | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7659"} +UMLS:C5171960 Malignant cells | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171960 Malignant cells | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7660"} +UMLS:C0229473 Cell of Claudius biolink:Cell skos:exactMatch NCIT:C12478 Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7661","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C0229473 Cell of Claudius biolink:Cell skos:exactMatch SNOMEDCT:40489007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7661","subject_information_content":94.92072406280138,"identifierIndex":1} +UMLS:C4528183 Derived Dental Pulp biolink:Cell skos:exactMatch NCIT:C138973 Derived Dental Pulp biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7662","subject_information_content":100.0,"identifierIndex":0} +CL:0002110 B220-low CD38-positive naive B cell biolink:Cell skos:exactMatch CL:0002110 B220-low CD38-positive naive B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7663","subject_information_content":100.0} +UMLS:C1267828 T lymphocyte positive for both CD8 antigen and CD11b antigen biolink:Cell skos:exactMatch SNOMEDCT:115414002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7664","identifierIndex":0} +UMLS:C4086010 betibeglogene autotemcel biolink:Cell skos:exactMatch UMLS:C5417758 Zynteglo biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7665","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086010 betibeglogene autotemcel biolink:Cell skos:exactMatch NCIT:C123881 Betibeglogene Autotemcel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7665","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1979642 Blast cell positive for CD25 antigen biolink:Cell skos:exactMatch SNOMEDCT:724263000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7666","identifierIndex":0} +UMLS:C1709192 Neoplastic Parathyroid Gland Water-Clear Cell biolink:Cell skos:exactMatch NCIT:C48625 Neoplastic Parathyroid Gland Water-Clear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7658","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5417820 Allogeneic CD8+ Leukemia-associated Antigens Specific T Cells NEXI-001 biolink:Cell skos:exactMatch NCIT:C170887 Allogeneic CD8+ Leukemia-associated Antigens Specific T Cells NEXI-001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7667","subject_information_content":100.0,"identifierIndex":0} +NCIT:C12994 Thymocyte biolink:Cell skos:exactMatch NCIT:C12994 Thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7668","subject_information_content":89.84144812560278} +CL:0001057 myeloid dendritic cell, human biolink:Cell skos:exactMatch CL:0001057 myeloid dendritic cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7669","subject_information_content":100.0} +UMLS:C1267883 Lymphocyte positive for CD17 antigen biolink:Cell skos:exactMatch SNOMEDCT:117560003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7670","identifierIndex":0} +CL:0002471 MHC-II-negative non-classical monocyte biolink:Cell skos:exactMatch CL:0002471 MHC-II-negative non-classical monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7671","subject_information_content":94.92072406280138} +UMLS:C5401666 BREXUCABTAGENE biolink:Cell skos:exactMatch UMLS:C5401666 BREXUCABTAGENE biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7672"} +CL:0002078 meso-epithelial cell biolink:Cell skos:exactMatch CL:0002078 meso-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7673","subject_information_content":62.19523619960665} +CL:0000384 ligament cell biolink:Cell skos:exactMatch CL:0000384 ligament cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7674","subject_information_content":94.92072406280138} +UMLS:C2349140 WT1-Sensitized Allogeneic T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C74091 WT1-Sensitized Allogeneic T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7675","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5171664 Lymphocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171664 Lymphocytes | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7676"} +UMLS:C5443442 lisocabtagene maraleucel, CD8 component, 1 of 2 biolink:Cell skos:exactMatch UMLS:C5443442 lisocabtagene maraleucel, CD8 component, 1 of 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7677"} +UMLS:C1135918 Myocytes, Smooth Muscle biolink:Cell skos:exactMatch UMLS:C1135918 Myocytes, Smooth Muscle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7678"} +UMLS:C4511892 Population of all schistocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726510009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7679","identifierIndex":0} +CL:0000136 fat cell biolink:Cell skos:exactMatch CL:0000136 fat cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7680","subject_information_content":80.66139376001811} +CL:1000601 ureteral cell biolink:Cell skos:exactMatch CL:1000601 ureteral cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7681","subject_information_content":88.2062864997332} +CL:0002449 CD94-positive Ly49CI-positive natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002449 CD94-positive Ly49CI-positive natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7682","subject_information_content":100.0} +UMLS:C1513976 Neoplastic Glandular Cell with Enlarged Nucleus and Prominent Nucleolus biolink:Cell skos:exactMatch NCIT:C37128 Neoplastic Glandular Cell with Enlarged Nucleus and Prominent Nucleolus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7683","subject_information_content":100.0,"identifierIndex":0} +CL:0002630 actinomycete-type spore biolink:Cell skos:exactMatch CL:0002630 actinomycete-type spore biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7684","subject_information_content":100.0} +CL:0002293 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002293 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7685","subject_information_content":83.1270105625346} +UMLS:C1514055 Neoplastic Osteoblast biolink:Cell skos:exactMatch NCIT:C36900 Neoplastic Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7686","subject_information_content":83.89907621744979,"identifierIndex":0} +CL:0000392 crystal cell biolink:Cell skos:exactMatch CL:0000392 crystal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7687","subject_information_content":91.94953810872488} +CL:0002614 neuron of the substantia nigra biolink:Cell skos:exactMatch CL:0002614 neuron of the substantia nigra biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7688","subject_information_content":100.0} +CL:0001081 group 2 innate lymphoid cell, human biolink:Cell skos:exactMatch CL:0001081 group 2 innate lymphoid cell, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7689","subject_information_content":100.0} +UMLS:C1267819 Lymphocyte positive for both CD3 antigen and CD26 antigen biolink:Cell skos:exactMatch SNOMEDCT:117520004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7690","identifierIndex":0} +UMLS:C5170945 Leukocytes | Vaginal | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170945 Leukocytes | Vaginal | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7691"} +CL:0000774 band form eosinophil biolink:Cell skos:exactMatch CL:0000774 band form eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7692","subject_information_content":94.92072406280138} +CL:0002491 auditory epithelial cell biolink:Cell skos:exactMatch CL:0002491 auditory epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7693","subject_information_content":76.4125729994664} +CL:0000904 central memory CD4-positive, alpha-beta T cell biolink:Cell skos:exactMatch CL:0000904 central memory CD4-positive, alpha-beta T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7694","subject_information_content":100.0} +CL:4030002 effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated biolink:Cell skos:exactMatch CL:4030002 effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7695"} +CL:0002490 organ of Corti supporting cell biolink:Cell skos:exactMatch CL:0002490 organ of Corti supporting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7696","subject_information_content":84.76217218840416} +UMLS:C5163549 Epithelial cells.non-squamous | Urine | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163549 Epithelial cells.non-squamous | Urine | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7697"} +UMLS:C1514271 Postgerminal Center B-Lymphocyte biolink:Cell skos:exactMatch NCIT:C38340 Postgerminal Center B-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7698","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1267997 Lymphocyte positive for CD118 antigen biolink:Cell skos:exactMatch SNOMEDCT:117437009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7699","identifierIndex":0} +CL:0002258 thyroid follicular cell biolink:Cell skos:exactMatch CL:0002258 thyroid follicular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7700","subject_information_content":100.0} +UMLS:C5157551 CD4+CD45RO+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157551 CD4+CD45RO+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7701"} +UMLS:C1514171 Pleomorphic Connective and Soft Tissue Cell biolink:Cell skos:exactMatch NCIT:C37112 Pleomorphic Connective and Soft Tissue Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7702","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0221283 Drepanocyte (cell) biolink:Cell skos:exactMatch NCIT:C36717 Sickle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7703","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267908 Lymphocyte positive for both CD33 antigen and CD44 antigen biolink:Cell skos:exactMatch SNOMEDCT:117579000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7704","identifierIndex":0} +UMLS:C3900001 Autologous Cytomegalovirus-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C116732 Autologous Cytomegalovirus-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7705","subject_information_content":100.0,"identifierIndex":0} +CL:0002159 general ecto-epithelial cell biolink:Cell skos:exactMatch CL:0002159 general ecto-epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7706","subject_information_content":71.7867105046421} +UMLS:C1184143 Luminal cell of acinus of lactiferous gland biolink:Cell skos:exactMatch UMLS:C1184143 Luminal cell of acinus of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7707"} +UMLS:C2950760 Interdigitating dendritic cell of mucosa-associated lymphoid tissue biolink:Cell skos:exactMatch UMLS:C2950760 Interdigitating dendritic cell of mucosa-associated lymphoid tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7708"} +CL:0000340 glioblast (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000340 glioblast (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7709","subject_information_content":100.0} +UMLS:C1180241 Endothelial cell of arteriole biolink:Cell skos:exactMatch UMLS:C1180241 Endothelial cell of arteriole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7710"} +UMLS:C1440417 Cells.t(9;22)(q34.1;q11)(ABL1,BCR) biolink:Cell skos:exactMatch UMLS:C1440417 Cells.t(9;22)(q34.1;q11)(ABL1,BCR) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7711"} +UMLS:C1182611 Conjunctival epithelial cell biolink:Cell skos:exactMatch UMLS:C1182611 Conjunctival epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7712"} +UMLS:C0221283 Drepanocyte (cell) biolink:Cell skos:exactMatch SNOMEDCT:49938009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7703","subject_information_content":100.0,"identifierIndex":1} +CL:4028006 alveolar type 2 fibroblast cell biolink:Cell skos:exactMatch CL:4028006 alveolar type 2 fibroblast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7713"} +UMLS:C1522193 PNS - Schwann Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22632 Mouse Schwann Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7714","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5161804 Cytoplasmic Ig mu cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5161804 Cytoplasmic Ig mu cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7715"} +UMLS:C1267894 Lymphocyte positive for both CD22 antigen and CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:117567000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7716","identifierIndex":0} +UMLS:C1277042 Parathyroid cell biolink:Cell skos:exactMatch SNOMEDCT:360553006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7717","identifierIndex":0} +UMLS:C5185786 ZAP70 cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5185786 ZAP70 cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7718"} +CL:0002031 hematopoietic lineage restricted progenitor cell biolink:Cell skos:exactMatch CL:0002031 hematopoietic lineage restricted progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7719","subject_information_content":69.52434437680833} +UMLS:C4322673 CD8+HLA-DR+ T lymphocyte biolink:Cell skos:exactMatch UMLS:C4322673 CD8+HLA-DR+ T lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7720"} +UMLS:C1699193 african green monkey kidney cells biolink:Cell skos:exactMatch UMLS:C1699193 african green monkey kidney cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7721"} +UMLS:C4510921 Blast cell positive for CD19 antigen biolink:Cell skos:exactMatch SNOMEDCT:725177004 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7722","identifierIndex":0} +CL:0002360 AGM hematopoietic stem cell biolink:Cell skos:exactMatch CL:0002360 AGM hematopoietic stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7723","subject_information_content":100.0} +UMLS:C0945924 Cell positive for CD23 antigen biolink:Cell skos:exactMatch SNOMEDCT:116755006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7724","identifierIndex":0} +CL:0002007 Kit-low, CD34-positive eosinophil progenitor cell biolink:Cell skos:exactMatch CL:0002007 Kit-low, CD34-positive eosinophil progenitor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7725","subject_information_content":100.0} +UMLS:C0242633 T-helper cell type 2 biolink:Cell skos:exactMatch UMLS:C0242633 T-helper cell type 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7726"} +UMLS:C5216221 Granulocytes|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216221 Granulocytes|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7727"} +UMLS:C3496268 B5 serotonin cells biolink:Cell skos:exactMatch UMLS:C3496268 B5 serotonin cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7728"} +UMLS:C5417959 Allogeneic CRISPR-Cas9 Engineered Anti-CD70 CAR-T Cells CTX130 biolink:Cell skos:exactMatch NCIT:C173153 Allogeneic CRISPR-Cas9 Engineered Anti-CD70 CAR-T Cells CTX130 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7729","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4525410 Alloantigen-specific Allogeneic Type 1 Regulatory T Cells T-allo10 biolink:Cell skos:exactMatch NCIT:C134838 Alloantigen-specific Allogeneic Type 1 Regulatory T Cells T-allo10 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7730","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2827682 Autologous TGFbeta-Resistant HER2/EBV-Specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C85459 Autologous TGFbeta-Resistant HER2/EBV-Specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7731","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1651663 Cells.CD20+CD23+ biolink:Cell skos:exactMatch UMLS:C1651663 Cells.CD20+CD23+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7732"} +UMLS:C1513962 Neoplastic Epithelial Spindle Cell biolink:Cell skos:exactMatch NCIT:C36849 Neoplastic Epithelial Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7733","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1706683 Abnormal Germ Cell biolink:Cell skos:exactMatch NCIT:C54103 Abnormal Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7734","subject_information_content":80.1558246084581,"identifierIndex":0} +UMLS:C1267870 Lymphocyte positive for CD12 antigen biolink:Cell skos:exactMatch SNOMEDCT:117549007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7735","identifierIndex":0} +UMLS:C1280517 Entire exocervical epithelial cell biolink:Cell skos:exactMatch SNOMEDCT:255268008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7736","identifierIndex":0} +UMLS:C5178307 Promyelocytes | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5178307 Promyelocytes | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7737"} +UMLS:C1518293 Neuron, Neuroepithelial Cell, and Supporting Cell of the Nervous System biolink:Cell skos:exactMatch NCIT:C41405 Neuron, Neuroepithelial Cell, and Supporting Cell of the Nervous System biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7738","subject_information_content":70.37314210672696,"identifierIndex":0} +UMLS:C0682544 neutrophilic cell biolink:Cell skos:exactMatch UMLS:C0682544 neutrophilic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7739"} +CL:1000697 kidney interstitial suppressor macrophage biolink:Cell skos:exactMatch CL:1000697 kidney interstitial suppressor macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7741","subject_information_content":100.0} +UMLS:C4518149 Population of all spermatozoa with broken tail in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725253001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7740","identifierIndex":0} +UMLS:C0022891 Labyrinth Supporting Cells biolink:Cell skos:exactMatch NCIT:C12590 Supporting Cell of Organ of Corti biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7742","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C0333799 Basket cell erythrocyte biolink:Cell skos:exactMatch SNOMEDCT:54244009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7743","identifierIndex":0} +CL:0000154 protein secreting cell biolink:Cell skos:exactMatch CL:0000154 protein secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7744","subject_information_content":76.4125729994664} +UMLS:C3899738 CXCR2-transduced Autologous Tumor Infiltrating Lymphocytes biolink:Cell skos:exactMatch NCIT:C120001 CXCR2-transduced Autologous Tumor Infiltrating Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7745","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1507328 Cells.G0+G1 phase biolink:Cell skos:exactMatch UMLS:C1507328 Cells.G0+G1 phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7746"} +CL:1000448 epithelial cell of sweat gland biolink:Cell skos:exactMatch CL:1000448 epithelial cell of sweat gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7747","subject_information_content":88.2062864997332} +CL:0009072 medullary thymic epithelial cell type 2 biolink:Cell skos:exactMatch CL:0009072 medullary thymic epithelial cell type 2 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7748"} +CL:4023119 displaced amacrine cell biolink:Cell skos:exactMatch CL:4023119 displaced amacrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7749"} +UMLS:C4277534 Oogonial Stem Cells biolink:Cell skos:exactMatch MESH:D000072977 Oogonial Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7750","identifierIndex":0} +CL:0002601 uterine smooth muscle cell biolink:Cell skos:exactMatch CL:0002601 uterine smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7751","subject_information_content":94.92072406280138} +UMLS:C5180578 Segmented neutrophils | Pleural fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180578 Segmented neutrophils | Pleural fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7752"} +CL:0000374 trichogen cell biolink:Cell skos:exactMatch CL:0000374 trichogen cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7753","subject_information_content":100.0} +UMLS:C5157370 CD2 cells | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157370 CD2 cells | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7754"} +CL:0002001 CD34-positive, CD38-positive granulocyte monocyte progenitor biolink:Cell skos:exactMatch CL:0002001 CD34-positive, CD38-positive granulocyte monocyte progenitor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7755","subject_information_content":100.0} +UMLS:C5170936 Leukocytes | Prostatic fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170936 Leukocytes | Prostatic fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7756"} +UMLS:C2348033 Cytomegalovirus pp65-Specific Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C71747 Cytomegalovirus pp65-Specific Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7757","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5220577 Epithelial cells|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220577 Epithelial cells|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7758"} +CL:0002484 epithelial melanocyte biolink:Cell skos:exactMatch CL:0002484 epithelial melanocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7759","subject_information_content":89.84144812560278} +UMLS:C1947950 Embryonic Cell biolink:Cell skos:exactMatch NCIT:C13054 Embryonic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7760","subject_information_content":77.34931628587292,"identifierIndex":0} +UMLS:C5185785 ZAP70 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5185785 ZAP70 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7761"} +UMLS:C1709182 Neoplastic Large Striated Muscle Cell with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C49169 Neoplastic Large Striated Muscle Cell with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7762","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2984029 Autologous IL-21-Modulated CD8+ MART1-Specific T Cells biolink:Cell skos:exactMatch NCIT:C91088 Autologous IL-21-Modulated CD8+ MART1-Specific T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7763","subject_information_content":100.0,"identifierIndex":0} +CL:0000843 follicular B cell biolink:Cell skos:exactMatch CL:0000843 follicular B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7764","subject_information_content":91.94953810872488} +UMLS:C0598829 Madin Darby Canine Kidney Cells biolink:Cell skos:exactMatch MESH:D061985 Madin Darby Canine Kidney Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7765","identifierIndex":0} +UMLS:C1510958 Atypical Lobular Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36885 Atypical Lobular Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7766","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4696006 Cells.CD3+CD4+CD27+CD62L+ biolink:Cell skos:exactMatch UMLS:C4696006 Cells.CD3+CD4+CD27+CD62L+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7767"} +UMLS:C1317185 Cells.CD10+CD20+ biolink:Cell skos:exactMatch UMLS:C1317185 Cells.CD10+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7768"} +CL:0000753 type 1 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000753 type 1 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7769","subject_information_content":100.0} +UMLS:C5420174 CD44v6-specific CAR T-cells biolink:Cell skos:exactMatch NCIT:C173368 CD44v6-specific CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7770","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514008 Neoplastic Large T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C37016 Neoplastic Large T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7771","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C4725094 EPS8 Peptide-specific Dendritic Cells biolink:Cell skos:exactMatch NCIT:C148518 EPS8 Peptide-specific Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7772","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5420412 Allogeneic SARS-CoV-2 Specific T Cells biolink:Cell skos:exactMatch NCIT:C173856 Allogeneic SARS-CoV-2 Specific T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7773","subject_information_content":100.0,"identifierIndex":0} +CL:4023070 caudal ganglionic eminence derived GABAergic cortical interneuron biolink:Cell skos:exactMatch CL:4023070 caudal ganglionic eminence derived GABAergic cortical interneuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7774","subject_information_content":100.0} +UMLS:C3642265 Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T Cells biolink:Cell skos:exactMatch UMLS:C3642265 Autologous CD19CAR-CD28-CD3zeta-EGFRt-expressing Tcm-enriched T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7775"} +UMLS:C1882050 Neoplastic Epithelial Oval Cell biolink:Cell skos:exactMatch NCIT:C60990 Neoplastic Epithelial Oval Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7776","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1710399 Thymic Epithelial Stem Cell biolink:Cell skos:exactMatch NCIT:C45723 Thymic Epithelial Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7777","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4246840 Trunk neural crest cell biolink:Cell skos:exactMatch UMLS:C4246840 Trunk neural crest cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7778"} +UMLS:C1512859 Intermediate-Sized Neoplastic Germ Cell biolink:Cell skos:exactMatch NCIT:C37133 Intermediate-Sized Neoplastic Germ Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7779","subject_information_content":100.0,"identifierIndex":0} +CL:0009095 endothelial cell of uterus biolink:Cell skos:exactMatch CL:0009095 endothelial cell of uterus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7780"} +UMLS:C5157647 CD69 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157647 CD69 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7781"} +CL:1001585 appendix glandular cell biolink:Cell skos:exactMatch CL:1001585 appendix glandular cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7782","subject_information_content":89.84144812560278} +UMLS:C1514047 Neoplastic Neuroendocrine Spindle Cell biolink:Cell skos:exactMatch NCIT:C36935 Neoplastic Neuroendocrine Spindle Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7783","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000500 follicular epithelial cell biolink:Cell skos:exactMatch CL:0000500 follicular epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7784","subject_information_content":94.92072406280138} +UMLS:C5157394 CD22 blasts | Bone marrow | Cell markers biolink:Cell skos:exactMatch UMLS:C5157394 CD22 blasts | Bone marrow | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7785"} +UMLS:C1516671 Clonal Hematopoietic Stem Cell biolink:Cell skos:exactMatch NCIT:C37061 Clonal Hematopoietic Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7786","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1513095 Melanoma Cell biolink:Cell skos:exactMatch NCIT:C36873 Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7787","subject_information_content":80.66139376001811,"identifierIndex":0} +CL:0002104 IgG-negative double negative memory B cell biolink:Cell skos:exactMatch CL:0002104 IgG-negative double negative memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7788","subject_information_content":100.0} +CL:0002430 CD4-intermediate, CD8-positive double-positive thymocyte biolink:Cell skos:exactMatch CL:0002430 CD4-intermediate, CD8-positive double-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7789","subject_information_content":100.0} +CL:0007022 micropylar cell biolink:Cell skos:exactMatch CL:0007022 micropylar cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7790","subject_information_content":100.0} +UMLS:C5157618 CD56 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157618 CD56 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7791"} +UMLS:C1514057 Neoplastic Perineurial Cell biolink:Cell skos:exactMatch NCIT:C37154 Neoplastic Perineurial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7792","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1257913 Polyploid Cell biolink:Cell skos:exactMatch UMLS:C1257913 Polyploid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7793"} +UMLS:C3176904 Cells.CD3+CD5+ biolink:Cell skos:exactMatch UMLS:C3176904 Cells.CD3+CD5+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7794"} +NCIT:C116387 Tumor-Associated Macrophage biolink:Cell skos:exactMatch NCIT:C116387 Tumor-Associated Macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7795","subject_information_content":100.0} +UMLS:C2350052 Granulocyte Progenitor Cells biolink:Cell skos:exactMatch UMLS:C2350052 Granulocyte Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7796"} +UMLS:C3652652 indium (111In) tropolonate labelled cells biolink:Cell skos:exactMatch UMLS:C3652652 indium (111In) tropolonate labelled cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7797"} +UMLS:C1440387 Cells.FMC7 biolink:Cell skos:exactMatch UMLS:C1440387 Cells.FMC7 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7798"} +CL:0011009 embryonic plasmatocyte biolink:Cell skos:exactMatch CL:0011009 embryonic plasmatocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7799","subject_information_content":100.0} +UMLS:C5175159 Nucleated erythrocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175159 Nucleated erythrocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7800"} +UMLS:C4322672 CD23+ hemal cell biolink:Cell skos:exactMatch UMLS:C4322672 CD23+ hemal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7801"} +UMLS:C5213149 Cells with cytogenetic abnormality | Blood or Tissue | Molecular pathology biolink:Cell skos:exactMatch UMLS:C5213149 Cells with cytogenetic abnormality | Blood or Tissue | Molecular pathology biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7802"} +UMLS:C5163558 Epithelial cells.squamous | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5163558 Epithelial cells.squamous | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7803"} +CL:0000165 neuroendocrine cell biolink:Cell skos:exactMatch CL:0000165 neuroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7804","subject_information_content":73.94695619694993} +UMLS:C5170924 Leukocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170924 Leukocytes | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7805"} +UMLS:C5163443 Eosinophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163443 Eosinophils | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7806"} +UMLS:C5181336 Spermatozoa | Urine sediment | Urinalysis biolink:Cell skos:exactMatch UMLS:C5181336 Spermatozoa | Urine sediment | Urinalysis biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7807"} +UMLS:C0333794 Abnormal cellular component of blood biolink:Cell skos:exactMatch SNOMEDCT:89615005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7808","identifierIndex":0} +UMLS:C5186014 Basophils | Fetus | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5186014 Basophils | Fetus | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7809"} +CL:0000244 transitional epithelial cell biolink:Cell skos:exactMatch CL:0000244 transitional epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7810","subject_information_content":85.74066969721673} +UMLS:C0005955 Bone Marrow Cells biolink:Cell skos:exactMatch MESH:D001854 Bone Marrow Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7811","identifierIndex":0} +UMLS:C1116267 Cells.CD3+IL2R1+ biolink:Cell skos:exactMatch UMLS:C1116267 Cells.CD3+IL2R1+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7812"} +UMLS:C5173498 Mononuclear cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173498 Mononuclear cells | Peritoneal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7813"} +NCIT:C12552 Bone Marrow Myeloid Stem Cell biolink:Cell skos:exactMatch NCIT:C12552 Bone Marrow Myeloid Stem Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7814","subject_information_content":82.42859222307153} +CL:0000865 gastrointestinal tract (lamina propria) macrophage biolink:Cell skos:exactMatch CL:0000865 gastrointestinal tract (lamina propria) macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7815","subject_information_content":91.94953810872488} +CL:0000883 thymic cortical macrophage biolink:Cell skos:exactMatch CL:0000883 thymic cortical macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7816","subject_information_content":100.0} +UMLS:C1441140 Reticulocytes.aggregate biolink:Cell skos:exactMatch UMLS:C1441140 Reticulocytes.aggregate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7817"} +UMLS:C4764038 Anti-CD38/BCMA CAR T-lymphocytes biolink:Cell skos:exactMatch NCIT:C158087 Anti-CD38/BCMA CAR T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7818","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4322671 CD14+ myeloid cell biolink:Cell skos:exactMatch UMLS:C4322671 CD14+ myeloid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7819"} +UMLS:C1514096 Neoplastic Small to Medium-Sized T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39606 Neoplastic Small to Medium-Sized T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7820","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1180925 Corneocyte biolink:Cell skos:exactMatch UMLS:C1180925 Corneocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7821"} +UMLS:C3172534 Cells.CD3+CD5- biolink:Cell skos:exactMatch UMLS:C3172534 Cells.CD3+CD5- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7822"} +CL:0000188 cell of skeletal muscle biolink:Cell skos:exactMatch CL:0000188 cell of skeletal muscle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7823","subject_information_content":75.84861432617468} +UMLS:C1440379 Cells.cytoplasmic CD79 biolink:Cell skos:exactMatch UMLS:C1440379 Cells.cytoplasmic CD79 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7824"} +UMLS:C1440388 Cells.G2+M phase biolink:Cell skos:exactMatch UMLS:C1440388 Cells.G2+M phase biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7825"} +UMLS:C0228090 Fibrillary astrocyte biolink:Cell skos:exactMatch NCIT:C32600 Fibrous Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7826","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0945916 Cells.CD11b biolink:Cell skos:exactMatch UMLS:C0945916 Cells.CD11b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7827"} +UMLS:C0882865 Cells.CD4+HLA-DR+ biolink:Cell skos:exactMatch UMLS:C0882865 Cells.CD4+HLA-DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7828"} +UMLS:C4745172 Human Anti-CD30 CAR-expressing Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C156933 Human Anti-CD30 CAR-expressing Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7829","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1182613 Epithelial cell of nasal part of viscerocranial mucosa biolink:Cell skos:exactMatch UMLS:C1182613 Epithelial cell of nasal part of viscerocranial mucosa biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7830"} +UMLS:C2327682 Chandelier cell of cerebral cortex biolink:Cell skos:exactMatch UMLS:C2327682 Chandelier cell of cerebral cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7831"} +UMLS:C0228089 Protoplasmic astrocyte biolink:Cell skos:exactMatch NCIT:C33415 Protoplasmic Astrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7832","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440409 Cells.t(2;5)(p23;q35.1)(ALK,NPM1) biolink:Cell skos:exactMatch UMLS:C1440409 Cells.t(2;5)(p23;q35.1)(ALK,NPM1) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7833"} +CL:0002122 B220-positive CD38-positive IgG-negative class switched memory B cell biolink:Cell skos:exactMatch CL:0002122 B220-positive CD38-positive IgG-negative class switched memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7834","subject_information_content":94.92072406280138} +UMLS:C1441340 100 cells biolink:Cell skos:exactMatch UMLS:C1441340 100 cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7835"} +UMLS:C0228090 Fibrillary astrocyte biolink:Cell skos:exactMatch SNOMEDCT:70357005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7826","subject_information_content":100.0,"identifierIndex":1} +CL:0002149 epithelial cell of uterus biolink:Cell skos:exactMatch CL:0002149 epithelial cell of uterus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7836","subject_information_content":91.94953810872488} +CL:0002202 epithelial cell of tracheobronchial tree biolink:Cell skos:exactMatch CL:0002202 epithelial cell of tracheobronchial tree biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7837","subject_information_content":76.12516964539331} +UMLS:C5216242 Lymphoblasts|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216242 Lymphoblasts|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7838"} +UMLS:C1512102 Dysplastic Erythroid Precursor biolink:Cell skos:exactMatch NCIT:C37054 Dysplastic Erythroid Precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7839","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C0228089 Protoplasmic astrocyte biolink:Cell skos:exactMatch SNOMEDCT:4328003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7832","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1511463 CY12 biolink:Cell skos:exactMatch NCIT:C20237 CY12 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7841","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1519742 UCSF ES Cell Line biolink:Cell skos:exactMatch NCIT:C20304 UCSF ES Cell Line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7840","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C5216252 Lymphocytes|NCnc|Pt|Pericard fld biolink:Cell skos:exactMatch UMLS:C5216252 Lymphocytes|NCnc|Pt|Pericard fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7842"} +UMLS:C5157542 CD4+CD29+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157542 CD4+CD29+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7843"} +CL:0000047 neuronal stem cell biolink:Cell skos:exactMatch CL:0000047 neuronal stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7844","subject_information_content":88.2062864997332} +UMLS:C1440382 Cells.cytoplasmic Ig mu biolink:Cell skos:exactMatch UMLS:C1440382 Cells.cytoplasmic Ig mu biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7845"} +CL:4023028 L5 non-Martinotti sst GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023028 L5 non-Martinotti sst GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7846","subject_information_content":100.0} +UMLS:C1515636 gp100 Peptide-sensitized Autologous T-cells (CD4+ and CD8+) biolink:Cell skos:exactMatch NCIT:C29556 gp100 Peptide-sensitized Autologous T-cells (CD4+ and CD8+) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7847","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0024880 mast cell biolink:Cell skos:exactMatch UMLS:C0024880 mast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7848"} +UMLS:C3829191 MART-1/gp100/Tyrosinase/MAGE-A3 Peptides-loaded Irradiated Allogeneic Plasmacytoid Dendritic Cells biolink:Cell skos:exactMatch NCIT:C107159 MART-1/gp100/Tyrosinase/MAGE-A3 Peptides-loaded Irradiated Allogeneic Plasmacytoid Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7849","subject_information_content":100.0,"identifierIndex":0} +CL:0002050 Fraction C' precursor B cell biolink:Cell skos:exactMatch CL:0002050 Fraction C' precursor B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7850","subject_information_content":100.0} +UMLS:C3274553 Tri-virus/GD2-specific Allogeneic Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C99132 Tri-virus/GD2-specific Allogeneic Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7851","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2326142 Keratinized squamous cell biolink:Cell skos:exactMatch UMLS:C2326142 Keratinized squamous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7852"} +CL:4023007 L2/3 bipolar vip GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023007 L2/3 bipolar vip GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7853","subject_information_content":100.0} +UMLS:C4324117 CD77+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4324117 CD77+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7854"} +CL:0000581 peritoneal macrophage biolink:Cell skos:exactMatch CL:0000581 peritoneal macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7855","subject_information_content":100.0} +CL:2000080 mesenchymal stem cell of abdominal adipose tissue biolink:Cell skos:exactMatch CL:2000080 mesenchymal stem cell of abdominal adipose tissue biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7856","subject_information_content":100.0} +CL:0009076 neuro-medullary thymic epithelial cell biolink:Cell skos:exactMatch CL:0009076 neuro-medullary thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7857"} +NCIT:C12622 Follicular Dendritic Cell biolink:Cell skos:exactMatch NCIT:C12622 Follicular Dendritic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7858","subject_information_content":100.0} +UMLS:C1267938 Lymphocyte positive for CD49C antigen biolink:Cell skos:exactMatch SNOMEDCT:117381002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7859","identifierIndex":0} +UMLS:C1181297 Light chief cell of parathyroid gland biolink:Cell skos:exactMatch UMLS:C1181297 Light chief cell of parathyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7860"} +UMLS:C2329893 Type N enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2329893 Type N enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7861"} +UMLS:C4289582 EpCAM-specific CAR-expressing Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C126801 EpCAM-specific CAR-expressing Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7862","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0229661 Myelomonoblast biolink:Cell skos:exactMatch SNOMEDCT:88978008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7863","identifierIndex":0} +UMLS:C3825563 Ultrastructure (Biology) biolink:Cell skos:exactMatch UMLS:C3825563 Ultrastructure (Biology) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7864"} +UMLS:C4697023 Cells.CD27+CD62L+ biolink:Cell skos:exactMatch UMLS:C4697023 Cells.CD27+CD62L+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7865"} +UMLS:C1622561 lateral part of motile cell biolink:Cell skos:exactMatch UMLS:C1622561 lateral part of motile cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7866"} +UMLS:C5382746 CD107a+b expressing HLA-A1 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5382746 CD107a+b expressing HLA-A1 Cytomegalovirus specific CD8 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7867"} +UMLS:C5177451 Plasma cell precursor | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5177451 Plasma cell precursor | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7868"} +UMLS:C0229571 Type I cell of carotid body biolink:Cell skos:exactMatch NCIT:C36965 Glomus Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7869","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C1711387 Neoplastic Adrenal Cortical Cell biolink:Cell skos:exactMatch NCIT:C48361 Neoplastic Adrenal Cortical Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7870","subject_information_content":85.74066969721673,"identifierIndex":0} +CL:0000444 obliquely striated muscle cell biolink:Cell skos:exactMatch CL:0000444 obliquely striated muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7871","subject_information_content":94.92072406280138} +UMLS:C4298893 Cells.CD3+CD4+CD45RO+ biolink:Cell skos:exactMatch UMLS:C4298893 Cells.CD3+CD4+CD45RO+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7872"} +UMLS:C1518240 Malignant Polygonal Cell with Abundant Granular Cytoplasm biolink:Cell skos:exactMatch NCIT:C36884 Malignant Polygonal Cell with Abundant Granular Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7873","subject_information_content":100.0,"identifierIndex":0} +CL:0002433 CD69-positive, CD4-positive single-positive thymocyte biolink:Cell skos:exactMatch CL:0002433 CD69-positive, CD4-positive single-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7874","subject_information_content":100.0} +UMLS:C1513983 Neoplastic Hematopoietic and Lymphoid Cell biolink:Cell skos:exactMatch NCIT:C37060 Neoplastic Hematopoietic and Lymphoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7875","subject_information_content":63.58197246865534,"identifierIndex":0} +CL:0009056 transit amplifying cell of anorectum biolink:Cell skos:exactMatch CL:0009056 transit amplifying cell of anorectum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7876","subject_information_content":100.0} +UMLS:C1514018 Neoplastic Medium-Sized T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C39600 Neoplastic Medium-Sized T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7877","subject_information_content":100.0,"identifierIndex":0} +CL:0002677 naive regulatory T cell biolink:Cell skos:exactMatch CL:0002677 naive regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7878","subject_information_content":94.92072406280138} +UMLS:C0229571 Type I cell of carotid body biolink:Cell skos:exactMatch SNOMEDCT:75737006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7869","subject_information_content":94.92072406280138,"identifierIndex":1} +CL:1001221 arcuate vein smooth muscle cell biolink:Cell skos:exactMatch CL:1001221 arcuate vein smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7879","subject_information_content":100.0} +UMLS:C5426957 Epithelial cells.ciliated | Lower respiratory specimen | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5426957 Epithelial cells.ciliated | Lower respiratory specimen | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7880"} +UMLS:C2325209 Melanocyte of eyelid biolink:Cell skos:exactMatch UMLS:C2325209 Melanocyte of eyelid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7881"} +UMLS:C5163689 Erythrocyte inclusion bodies | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163689 Erythrocyte inclusion bodies | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7882"} +CL:4023112 vestibular afferent neuron biolink:Cell skos:exactMatch CL:4023112 vestibular afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7883"} +UMLS:C1511245 Bone Marrow Stem Cell with Predominant Neutrophil Differentiation biolink:Cell skos:exactMatch NCIT:C41060 Bone Marrow Stem Cell with Predominant Neutrophil Differentiation biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7884","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3899816 CD28CAR/CD137CAR-expressing T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C117232 CD28CAR/CD137CAR-expressing T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7885","subject_information_content":100.0,"identifierIndex":0} +CL:2000055 liver dendritic cell biolink:Cell skos:exactMatch CL:2000055 liver dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7886","subject_information_content":100.0} +CL:0000766 myeloid leukocyte biolink:Cell skos:exactMatch CL:0000766 myeloid leukocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7887","subject_information_content":63.13772456369347} +UMLS:C0206511 Hair Cells, Vestibular biolink:Cell skos:exactMatch UMLS:C0206511 Hair Cells, Vestibular biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7888"} +UMLS:C5157562 CD41 cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157562 CD41 cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7889"} +UMLS:C1881768 Melanoma Cell with Large Nucleus and Abundant Pale Cytoplasm biolink:Cell skos:exactMatch NCIT:C62342 Melanoma Cell with Large Nucleus and Abundant Pale Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7890","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4287750 Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014 biolink:Cell skos:exactMatch NCIT:C126639 Autologous Anti-CD19CAR-4-1BB-CD3zeta-EGFRt-expressing CD4+/CD8+ Central Memory T-lymphocytes JCAR014 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7891","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5216294 Neutrophils|NCnc|Pt|Periton fld biolink:Cell skos:exactMatch UMLS:C5216294 Neutrophils|NCnc|Pt|Periton fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7892"} +CL:0002160 basal external epithelial cell of tympanic membrane biolink:Cell skos:exactMatch CL:0002160 basal external epithelial cell of tympanic membrane biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7893","subject_information_content":100.0} +CL:1000346 enterocyte of epithelium proper of large intestine biolink:Cell skos:exactMatch CL:1000346 enterocyte of epithelium proper of large intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7894","subject_information_content":100.0} +UMLS:C2986394 Allogeneic Natural Killer Cell Line MG4101 biolink:Cell skos:exactMatch NCIT:C94209 Allogeneic Natural Killer Cell Line MG4101 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7895","subject_information_content":100.0,"identifierIndex":0} +CL:0019015 lung parenchyma resident eosinophil biolink:Cell skos:exactMatch CL:0019015 lung parenchyma resident eosinophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7896","subject_information_content":100.0} +UMLS:C5170948 Leukocytes | XXX | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170948 Leukocytes | XXX | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7897"} +UMLS:C5420769 Anti-CD4 CAR T-cells biolink:Cell skos:exactMatch NCIT:C174420 Anti-CD4 CAR T-cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7898","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1440256 Cells.CD14+CD11b+ biolink:Cell skos:exactMatch UMLS:C1440256 Cells.CD14+CD11b+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7899"} +UMLS:C5216200 Eosinophils|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216200 Eosinophils|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7900"} +CL:0001059 common myeloid progenitor, CD34-positive biolink:Cell skos:exactMatch CL:0001059 common myeloid progenitor, CD34-positive biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7901","subject_information_content":91.94953810872488} +UMLS:C3898837 Hsp70-peptide TKD/IL-2-activated Autologous Natural Killer Cells biolink:Cell skos:exactMatch NCIT:C115969 Hsp70-peptide TKD/IL-2-activated Autologous Natural Killer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7902","subject_information_content":100.0,"identifierIndex":0} +CL:0002365 medullary thymic epithelial cell biolink:Cell skos:exactMatch CL:0002365 medullary thymic epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7903","subject_information_content":88.2062864997332} +UMLS:C1519460 Neoplastic Spindle-Shaped Myofibroblast biolink:Cell skos:exactMatch NCIT:C36957 Neoplastic Spindle-Shaped Myofibroblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7904","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514760 Receptor Cell biolink:Cell skos:exactMatch NCIT:C13156 Receptor Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7905","subject_information_content":100.0,"identifierIndex":0} +CL:0007012 non-terminally differentiated odontoblast biolink:Cell skos:exactMatch CL:0007012 non-terminally differentiated odontoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7906","subject_information_content":100.0} +UMLS:C5167928 HLA-DR+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5167928 HLA-DR+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7907"} +UMLS:C0333717 Abnormal cell biolink:Cell skos:exactMatch NCIT:C12913 Abnormal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7908","subject_information_content":51.025358850885794,"identifierIndex":0} +CL:0001046 memory CCR4-positive regulatory T cell biolink:Cell skos:exactMatch CL:0001046 memory CCR4-positive regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7909","subject_information_content":100.0} +CL:2000085 mononuclear cell of umbilical cord biolink:Cell skos:exactMatch CL:2000085 mononuclear cell of umbilical cord biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7910","subject_information_content":100.0} +UMLS:C1267809 Lymphocyte negative for surface membrane immunoglobulin and positive for CD79 antigen biolink:Cell skos:exactMatch SNOMEDCT:117513006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7911","identifierIndex":0} +CL:0000948 IgE memory B cell biolink:Cell skos:exactMatch CL:0000948 IgE memory B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7912","subject_information_content":100.0} +CL:1001006 kidney afferent arteriole cell biolink:Cell skos:exactMatch CL:1001006 kidney afferent arteriole cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7913","subject_information_content":91.94953810872488} +UMLS:C1881543 Malignant Eccrine Cell biolink:Cell skos:exactMatch NCIT:C62499 Malignant Eccrine Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7914","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4518157 Population of all normal spermatozoa in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:726441008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7915","identifierIndex":0} +MESH:D016716 PC12 Cells biolink:Cell skos:exactMatch MESH:D016716 PC12 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7916"} +UMLS:C1513950 Neoplastic Elongated Glial Cell biolink:Cell skos:exactMatch NCIT:C37144 Neoplastic Elongated Glial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7917","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333717 Abnormal cell biolink:Cell skos:exactMatch SNOMEDCT:39266006 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7908","subject_information_content":51.025358850885794,"identifierIndex":1} +CL:0000415 diploid cell biolink:Cell skos:exactMatch CL:0000415 diploid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7918","subject_information_content":100.0} +UMLS:C1513956 Neoplastic Endothelial Cell biolink:Cell skos:exactMatch NCIT:C37088 Neoplastic Endothelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7919","subject_information_content":82.42859222307153,"identifierIndex":0} +CL:1000419 myoepithelial cell of lactiferous duct biolink:Cell skos:exactMatch CL:1000419 myoepithelial cell of lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7920","subject_information_content":100.0} +UMLS:C1317191 Cells.CD227 biolink:Cell skos:exactMatch UMLS:C1317191 Cells.CD227 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7921"} +UMLS:C4764237 EDTA Blood Cell Fraction biolink:Cell skos:exactMatch NCIT:C158462 EDTA Blood Cell Fraction biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7922","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1267881 Lymphocyte negative for CD16 antigen and positive for CD34 antigen biolink:Cell skos:exactMatch SNOMEDCT:117558000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7923","identifierIndex":0} +UMLS:C5154488 Basophils/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154488 Basophils/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7924"} +CL:0002637 keratinized epithelial cell of the anal canal biolink:Cell skos:exactMatch CL:0002637 keratinized epithelial cell of the anal canal biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7925","subject_information_content":100.0} +UMLS:C1955940 Common Lymphoid Progenitors biolink:Cell skos:exactMatch UMLS:C1955940 Common Lymphoid Progenitors biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7926"} +UMLS:C1881225 Medium Size Melanoma Cell biolink:Cell skos:exactMatch NCIT:C54163 Medium Size Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7927","subject_information_content":100.0,"identifierIndex":0} +CL:0002298 type-5 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002298 type-5 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7928","subject_information_content":100.0} +UMLS:C1267871 Lymphoblast positive for CD13 antigen biolink:Cell skos:exactMatch SNOMEDCT:117550007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7929","identifierIndex":0} +CL:0000138 chondrocyte biolink:Cell skos:exactMatch CL:0000138 chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7930","subject_information_content":84.76217218840416} +CL:0002228 primary lens fiber biolink:Cell skos:exactMatch CL:0002228 primary lens fiber biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7931","subject_information_content":100.0} +CL:1001216 interlobulary artery endothelial cell biolink:Cell skos:exactMatch CL:1001216 interlobulary artery endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7932","subject_information_content":94.92072406280138} +CL:1000768 kidney connecting tubule epithelial cell biolink:Cell skos:exactMatch CL:1000768 kidney connecting tubule epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7933","subject_information_content":100.0} +MESH:D000084582 Tumor-Associated Macrophages biolink:Cell skos:exactMatch MESH:D000084582 Tumor-Associated Macrophages biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7934"} +UMLS:C5171663 Lymphocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171663 Lymphocytes | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7935"} +CL:0001041 CD8-positive, CXCR3-positive, alpha-beta regulatory T cell biolink:Cell skos:exactMatch CL:0001041 CD8-positive, CXCR3-positive, alpha-beta regulatory T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7936","subject_information_content":100.0} +CL:0002613 striatum neuron biolink:Cell skos:exactMatch CL:0002613 striatum neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7937","subject_information_content":100.0} +UMLS:C4763382 Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794 biolink:Cell skos:exactMatch UMLS:C4763382 Autologous Anti-NY-ESO-1/LAGE-1 TCR-transduced c259 T Lymphocytes GSK3377794 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7938"} +CL:0011015 amoeboid sperm cell biolink:Cell skos:exactMatch CL:0011015 amoeboid sperm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7939","subject_information_content":100.0} +CL:0000353 blastoderm cell biolink:Cell skos:exactMatch CL:0000353 blastoderm cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7940","subject_information_content":100.0} +UMLS:C5220592 Histiocytes|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220592 Histiocytes|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7941"} +UMLS:C2329053 Goblet cell of epithelium proper of jejunum biolink:Cell skos:exactMatch UMLS:C2329053 Goblet cell of epithelium proper of jejunum biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7942"} +UMLS:C0333825 Lymphoplasmacytoid Cell biolink:Cell skos:exactMatch NCIT:C37000 Lymphoplasmacytoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7943","subject_information_content":100.0,"identifierIndex":0} +CL:0002662 luminal cell of lactiferous duct biolink:Cell skos:exactMatch CL:0002662 luminal cell of lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7944","subject_information_content":94.92072406280138} +CL:4023113 bouton vestibular afferent neuron biolink:Cell skos:exactMatch CL:4023113 bouton vestibular afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7945"} +UMLS:C1516090 Atypical Chondrocyte biolink:Cell skos:exactMatch NCIT:C36984 Atypical Chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7946","subject_information_content":91.94953810872488,"identifierIndex":0} +CL:0001077 ILC1, human biolink:Cell skos:exactMatch CL:0001077 ILC1, human biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7947","subject_information_content":100.0} +UMLS:C1881550 Malignant Epithelial Medium-Sized Polygonal Cell biolink:Cell skos:exactMatch NCIT:C61002 Malignant Epithelial Medium-Sized Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7948","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1512099 Dyskeratotic Keratinocyte biolink:Cell skos:exactMatch NCIT:C36746 Dyskeratotic Keratinocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7949","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1181740 Type III cell of adrenal cortex biolink:Cell skos:exactMatch UMLS:C1181740 Type III cell of adrenal cortex biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7950"} +UMLS:C4086978 iAPA-based Dendritic Cells/Cytotoxic T Lymphocytes biolink:Cell skos:exactMatch NCIT:C123922 iAPA-based Dendritic Cells/Cytotoxic T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7951","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0333825 Lymphoplasmacytoid Cell biolink:Cell skos:exactMatch SNOMEDCT:59509005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7943","subject_information_content":100.0,"identifierIndex":1} +CL:0002059 CD8alpha-positive thymic conventional dendritic cell biolink:Cell skos:exactMatch CL:0002059 CD8alpha-positive thymic conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7952","subject_information_content":100.0} +CL:0002415 immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte biolink:Cell skos:exactMatch CL:0002415 immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7953","subject_information_content":100.0} +UMLS:C5220581 Erythrocytes|Urine/Urine sed biolink:Cell skos:exactMatch UMLS:C5220581 Erythrocytes|Urine/Urine sed biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7954"} +CL:0000109 adrenergic neuron biolink:Cell skos:exactMatch CL:0000109 adrenergic neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7955","subject_information_content":100.0} +UMLS:C4697032 Cells.CD38+IgM+ biolink:Cell skos:exactMatch UMLS:C4697032 Cells.CD38+IgM+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7956"} +CL:0002081 type II cell of carotid body biolink:Cell skos:exactMatch CL:0002081 type II cell of carotid body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7957","subject_information_content":100.0} +UMLS:C1267980 Lymphocyte positive for CD93 antigen biolink:Cell skos:exactMatch SNOMEDCT:117420002 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7958","identifierIndex":0} +UMLS:C3274464 Filgrastim-primed Peripheral Blood Progenitor Cells biolink:Cell skos:exactMatch NCIT:C98836 Filgrastim-primed Peripheral Blood Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7959","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4744926 Bone Marrow Mononuclear Cell biolink:Cell skos:exactMatch NCIT:C156591 Bone Marrow Mononuclear Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7960","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1510733 Abnormal Neutrophil biolink:Cell skos:exactMatch NCIT:C37029 Abnormal Neutrophil biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7961","subject_information_content":83.1270105625346,"identifierIndex":0} +CL:4023025 long-range projecting sst GABAergic cortical interneuron (Mus musculus) biolink:Cell skos:exactMatch CL:4023025 long-range projecting sst GABAergic cortical interneuron (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7962","subject_information_content":100.0} +UMLS:C5151351 Abnormal lymphocytes | Synovial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5151351 Abnormal lymphocytes | Synovial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7963"} +UMLS:C1514738 Reactive Glandular Cell biolink:Cell skos:exactMatch NCIT:C36811 Reactive Glandular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7964","subject_information_content":94.92072406280138,"identifierIndex":0} +MESH:D052680 Corticotrophs biolink:Cell skos:exactMatch MESH:D052680 Corticotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7965"} +CL:0002264 type A cell of stomach biolink:Cell skos:exactMatch CL:0002264 type A cell of stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7966","subject_information_content":100.0} +CL:0000313 serous secreting cell biolink:Cell skos:exactMatch CL:0000313 serous secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7967","subject_information_content":86.87026217152628} +CL:0001069 group 2 innate lymphoid cell biolink:Cell skos:exactMatch CL:0001069 group 2 innate lymphoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7968","subject_information_content":91.94953810872488} +CL:0008017 adult skeletal muscle myoblast biolink:Cell skos:exactMatch CL:0008017 adult skeletal muscle myoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7969","subject_information_content":100.0} +UMLS:C4510906 Blast cell positive for CD15 antigen biolink:Cell skos:exactMatch SNOMEDCT:724251005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7970","identifierIndex":0} +CL:0000025 egg cell biolink:Cell skos:exactMatch CL:0000025 egg cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7971","subject_information_content":100.0} +UMLS:C5179528 Reticulocytes.low fluorescence/100 erythrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179528 Reticulocytes.low fluorescence/100 erythrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7972"} +UMLS:C5157373 CD2 cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157373 CD2 cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7973"} +UMLS:C1513931 Neoplastic Basaloid Cell biolink:Cell skos:exactMatch NCIT:C36759 Neoplastic Basaloid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7974","subject_information_content":85.74066969721673,"identifierIndex":0} +UMLS:C2329862 Set of adrenergic cells in area postrema [C1] biolink:Cell skos:exactMatch UMLS:C2329862 Set of adrenergic cells in area postrema [C1] biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7975"} +UMLS:C0027883 Afferent neuron biolink:Cell skos:exactMatch UMLS:C0027883 Afferent neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7976"} +CL:0000583 alveolar macrophage biolink:Cell skos:exactMatch CL:0000583 alveolar macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7977","subject_information_content":100.0} +UMLS:C1709198 Neoplastic Sebocyte biolink:Cell skos:exactMatch NCIT:C43338 Neoplastic Sebocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7978","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:2000021 sebaceous gland cell biolink:Cell skos:exactMatch CL:2000021 sebaceous gland cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7979","subject_information_content":91.94953810872488} +UMLS:C4304491 Population of all polymorphonuclear cells in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:719697003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7980","identifierIndex":0} +MESH:D019879 Paneth Cells biolink:Cell skos:exactMatch MESH:D019879 Paneth Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7981"} +UMLS:C5157667 CD8+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157667 CD8+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7982"} +CL:0000464 epidermoblast biolink:Cell skos:exactMatch CL:0000464 epidermoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7983","subject_information_content":100.0} +UMLS:C4246480 Non-ectomesenchymal cell biolink:Cell skos:exactMatch UMLS:C4246480 Non-ectomesenchymal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7984"} +CL:0011002 lateral motor column neuron biolink:Cell skos:exactMatch CL:0011002 lateral motor column neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7985","subject_information_content":100.0} +CL:0002196 hepatic oval stem cell biolink:Cell skos:exactMatch CL:0002196 hepatic oval stem cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7986","subject_information_content":100.0} +UMLS:C5216190 Basophils|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216190 Basophils|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7987"} +CL:0000912 helper T cell biolink:Cell skos:exactMatch CL:0000912 helper T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7988","subject_information_content":100.0} +UMLS:C3176906 Cells.cytoplasmic CD3 biolink:Cell skos:exactMatch UMLS:C3176906 Cells.cytoplasmic CD3 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7989"} +UMLS:C1267814 Lymphocyte positive for CD2 antigen and CD20 antigen biolink:Cell skos:exactMatch SNOMEDCT:117517007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7990","identifierIndex":0} +CL:2000086 neocortex basket cell biolink:Cell skos:exactMatch CL:2000086 neocortex basket cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7991","subject_information_content":100.0} +UMLS:C5161703 Cytokeratin cells | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5161703 Cytokeratin cells | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7992"} +CL:0002608 hippocampal neuron biolink:Cell skos:exactMatch CL:0002608 hippocampal neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7993","subject_information_content":94.92072406280138} +UMLS:C5216274 Monocytes|NCnc|Pt|CSF biolink:Cell skos:exactMatch UMLS:C5216274 Monocytes|NCnc|Pt|CSF biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7994"} +UMLS:C1268001 Lymphocyte positive for CD126 antigen biolink:Cell skos:exactMatch SNOMEDCT:117441008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7995","identifierIndex":0} +UMLS:C4086001 lisocabtagene maraleucel biolink:Cell skos:exactMatch UMLS:C5400052 Anti-CD19-CAR Genetically Engineered Autologous T Lymphocytes JCAR017 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7996","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157272 CD11c cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157272 CD11c cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7997"} +UMLS:C0597032 Neoplastic Cell biolink:Cell skos:exactMatch UMLS:C0597032 Neoplastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7998"} +UMLS:C1517678 Koilocytotic Squamous Cell biolink:Cell skos:exactMatch NCIT:C36808 Koilocytotic Squamous Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7999","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157490 CD34 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157490 CD34 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8000"} +UMLS:C5154480 Basophils | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5154480 Basophils | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8001"} +CL:1000495 small intestine goblet cell biolink:Cell skos:exactMatch CL:1000495 small intestine goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8002","subject_information_content":88.2062864997332} +CL:0010015 coronet cell biolink:Cell skos:exactMatch CL:0010015 coronet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8003","subject_information_content":100.0} +CL:1000458 melanocyte of skin biolink:Cell skos:exactMatch CL:1000458 melanocyte of skin biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8004","subject_information_content":86.87026217152628} +CL:0002235 luminal cell of prostatic acinus biolink:Cell skos:exactMatch CL:0002235 luminal cell of prostatic acinus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8005","subject_information_content":100.0} +UMLS:C4086001 lisocabtagene maraleucel biolink:Cell skos:exactMatch UMLS:C5440683 Breyanzi biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7996","subject_information_content":100.0,"identifierIndex":1} +CL:0000587 cold sensing thermoreceptor cell biolink:Cell skos:exactMatch CL:0000587 cold sensing thermoreceptor cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8006","subject_information_content":100.0} +UMLS:C1979063 Blasts.CD1 biolink:Cell skos:exactMatch UMLS:C1979063 Blasts.CD1 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8007"} +UMLS:C1563926 Th3 Cells biolink:Cell skos:exactMatch UMLS:C1563926 Th3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8008"} +CL:0000944 Be2 cell biolink:Cell skos:exactMatch CL:0000944 Be2 cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8009","subject_information_content":100.0} +UMLS:C1514040 Neoplastic Myoepithelial Cell biolink:Cell skos:exactMatch NCIT:C36770 Neoplastic Myoepithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8010","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C2826156 CD34/TK75 Retroviral Vector-Transduced Donor Lymphocytes biolink:Cell skos:exactMatch NCIT:C82409 CD34/TK75 Retroviral Vector-Transduced Donor Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8011","subject_information_content":100.0,"identifierIndex":0} +CL:0010012 cerebral cortex neuron biolink:Cell skos:exactMatch CL:0010012 cerebral cortex neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8012","subject_information_content":69.63974591466652} +CL:1000714 kidney cortex collecting duct principal cell biolink:Cell skos:exactMatch CL:1000714 kidney cortex collecting duct principal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8013","subject_information_content":100.0} +UMLS:C1510721 Abnormal Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36745 Abnormal Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8014","subject_information_content":59.224050245530144,"identifierIndex":0} +UMLS:C4086001 lisocabtagene maraleucel biolink:Cell skos:exactMatch NCIT:C125192 Lisocabtagene Maraleucel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7996","subject_information_content":100.0,"identifierIndex":2} +UMLS:C2953492 Set of neural cells biolink:Cell skos:exactMatch UMLS:C2953492 Set of neural cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8015"} +CL:0000816 immature B cell biolink:Cell skos:exactMatch CL:0000816 immature B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8016","subject_information_content":91.94953810872488} +UMLS:C5180575 Segmented neutrophils | Body fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5180575 Segmented neutrophils | Body fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8017"} +CL:0000219 motile cell biolink:Cell skos:exactMatch CL:0000219 motile cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8018","subject_information_content":53.85575136176519} +CL:0002348 CD27-low, CD11b-high natural killer cell, mouse biolink:Cell skos:exactMatch CL:0002348 CD27-low, CD11b-high natural killer cell, mouse biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8019","subject_information_content":100.0} +UMLS:C4322817 CD79B+ B lymphocyte biolink:Cell skos:exactMatch UMLS:C4322817 CD79B+ B lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8020"} +UMLS:C0683194 Male gonocyte biolink:Cell skos:exactMatch UMLS:C0683194 Male gonocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8021"} +UMLS:C1440271 Cells.CD2+CD20+ biolink:Cell skos:exactMatch UMLS:C1440271 Cells.CD2+CD20+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8022"} +UMLS:C1517204 Flame Cell biolink:Cell skos:exactMatch NCIT:C37080 Flame Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8023","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086001 lisocabtagene maraleucel biolink:Cell skos:exactMatch SNOMEDCT:1148744000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7996","subject_information_content":100.0,"identifierIndex":3} +UMLS:C5171724 Lymphocytes/100 cells | Lymph node | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171724 Lymphocytes/100 cells | Lymph node | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8024"} +UMLS:C1979638 Blasts.CD1a biolink:Cell skos:exactMatch UMLS:C1979638 Blasts.CD1a biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8025"} +UMLS:C0884134 Cells.CD24 biolink:Cell skos:exactMatch UMLS:C0884134 Cells.CD24 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8026"} +CL:2000083 hair follicle dermal papilla cell of scalp biolink:Cell skos:exactMatch CL:2000083 hair follicle dermal papilla cell of scalp biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8027","subject_information_content":100.0} +CL:0002387 arthroconidium biolink:Cell skos:exactMatch CL:0002387 arthroconidium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8028","subject_information_content":91.94953810872488} +UMLS:C5175151 Nucleated cells | Pericardial fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5175151 Nucleated cells | Pericardial fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8029"} +UMLS:C1708922 Malignant Transitional Cell with Clear Cytoplasm biolink:Cell skos:exactMatch NCIT:C54561 Malignant Transitional Cell with Clear Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8030","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0027625 Circulating Neoplastic Cells biolink:Cell skos:exactMatch UMLS:C0027625 Circulating Neoplastic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8031"} +UMLS:C3899314 EGFRvIII-specific CAR-transduced Autologous T Lymphocytes biolink:Cell skos:exactMatch NCIT:C117727 EGFRvIII-specific CAR-transduced Autologous T Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8032","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086001 lisocabtagene maraleucel biolink:Cell skos:exactMatch SNOMEDCT:1148950000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#7996","subject_information_content":100.0,"identifierIndex":4} +UMLS:C0229633 myeloblast biolink:Cell skos:exactMatch UMLS:C0229633 myeloblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8033"} +UMLS:C0229635 Metamyelocytes biolink:Cell skos:exactMatch UMLS:C0229635 Metamyelocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8034"} +UMLS:C3179121 Human Umbilical Vein Endothelial Cells biolink:Cell skos:exactMatch MESH:D061307 Human Umbilical Vein Endothelial Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8035","identifierIndex":0} +UMLS:C1440290 Cells.CD3+CD8+CD45RO-CD45RA+ biolink:Cell skos:exactMatch UMLS:C1440290 Cells.CD3+CD8+CD45RO-CD45RA+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8036"} +UMLS:C0007635 Cultured Cells biolink:Cell skos:exactMatch UMLS:C0007635 Cultured Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8037"} +CL:0002218 immature dendritic epithelial T cell precursor biolink:Cell skos:exactMatch CL:0002218 immature dendritic epithelial T cell precursor biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8038","subject_information_content":100.0} +UMLS:C2360256 Anulocyte biolink:Cell skos:exactMatch SNOMEDCT:724194007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8039","identifierIndex":0} +UMLS:C2335177 Mesothelial cell of visceral pleura biolink:Cell skos:exactMatch UMLS:C2335177 Mesothelial cell of visceral pleura biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8040"} +UMLS:C0229586 Structure of parathyroid chief cell biolink:Cell skos:exactMatch UMLS:C0229586 Structure of parathyroid chief cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8041"} +CL:0000485 mucosal type mast cell biolink:Cell skos:exactMatch CL:0000485 mucosal type mast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8042","subject_information_content":100.0} +CL:0000655 secondary oocyte biolink:Cell skos:exactMatch CL:0000655 secondary oocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8043","subject_information_content":100.0} +CL:0012000 astrocyte of the forebrain biolink:Cell skos:exactMatch CL:0012000 astrocyte of the forebrain biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8044","subject_information_content":91.94953810872488} +UMLS:C5157334 CD16-CD57- | White blood cells | Cell markers biolink:Cell skos:exactMatch UMLS:C5157334 CD16-CD57- | White blood cells | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8045"} +UMLS:C0814990 neural cell line biolink:Cell skos:exactMatch UMLS:C0814990 neural cell line biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8046"} +UMLS:C1519424 Somatotrophs biolink:Cell skos:exactMatch UMLS:C1519424 Somatotrophs biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8047"} +UMLS:C1517356 Geron H13 stem cell line biolink:Cell skos:exactMatch NCIT:C20259 GE13 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8048","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4055480 Allogeneic BK-specific Cytotoxic T-lymphocytes biolink:Cell skos:exactMatch NCIT:C123277 Allogeneic BK-specific Cytotoxic T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8049","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1689938 Erythrocyte component of blood biolink:Cell skos:exactMatch SNOMEDCT:418525009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8050","identifierIndex":0} +UMLS:C1517638 KA08 biolink:Cell skos:exactMatch NCIT:C20268 KA08 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8051","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1514001 Neoplastic Large Cleaved Follicle Center Cell biolink:Cell skos:exactMatch NCIT:C37020 Neoplastic Large Cleaved Follicle Center Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8052","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5172504 Mesothelial cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5172504 Mesothelial cells | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8053"} +CL:0002429 CD69-positive double-positive thymocyte biolink:Cell skos:exactMatch CL:0002429 CD69-positive double-positive thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8054","subject_information_content":100.0} +CL:0001035 bone cell biolink:Cell skos:exactMatch CL:0001035 bone cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8055","subject_information_content":72.78751502065317} +UMLS:C3273204 MAGE-A3 Reactive T Cell Receptor-transduced Autologous T Cells biolink:Cell skos:exactMatch NCIT:C97035 MAGE-A3 Reactive T Cell Receptor-transduced Autologous T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8056","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5167387 Histiocytes | Nose | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5167387 Histiocytes | Nose | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8057"} +CL:0002398 Gr1-positive, CD43-positive monocyte biolink:Cell skos:exactMatch CL:0002398 Gr1-positive, CD43-positive monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8058","subject_information_content":86.87026217152628} +CL:0000189 slow muscle cell biolink:Cell skos:exactMatch CL:0000189 slow muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8059","subject_information_content":94.92072406280138} +UMLS:C1182642 Urothelial cell of trigone of urinary bladder biolink:Cell skos:exactMatch UMLS:C1182642 Urothelial cell of trigone of urinary bladder biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8060"} +UMLS:C2340517 Type 2 vestibular sensory cell of stato-acoustic epithelium biolink:Cell skos:exactMatch UMLS:C2340517 Type 2 vestibular sensory cell of stato-acoustic epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8061"} +NCIT:C12553 Megakaryocyte biolink:Cell skos:exactMatch NCIT:C12553 Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8062","subject_information_content":100.0} +CL:0000626 olfactory granule cell biolink:Cell skos:exactMatch CL:0000626 olfactory granule cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8063","subject_information_content":100.0} +UMLS:C2950709 Set of Golgi neurons biolink:Cell skos:exactMatch UMLS:C2950709 Set of Golgi neurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8064"} +UMLS:C4518173 Population of all pitted erythrocytes in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725388003 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8065","identifierIndex":0} +UMLS:C4744687 Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s biolink:Cell skos:exactMatch NCIT:C156251 Autologous Anti-CD22 CAR-4-1BB-TCRz-transduced T-lymphocytes CART22-65s biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8066","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1513934 Neoplastic Blastemal Cell biolink:Cell skos:exactMatch NCIT:C37121 Neoplastic Blastemal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8067","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C4764287 Autologous Cytotoxic T-lymphocytes Exposed to Dendritic Cells loaded with 6B11 Anti-idiotype Minibody biolink:Cell skos:exactMatch NCIT:C158601 Autologous Cytotoxic T-lymphocytes Exposed to Dendritic Cells loaded with 6B11 Anti-idiotype Minibody biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8068","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682698 Projection neuron biolink:Cell skos:exactMatch UMLS:C0682698 Projection neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8069"} +CL:0002153 corneocyte biolink:Cell skos:exactMatch CL:0002153 corneocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8070","subject_information_content":100.0} +UMLS:C4082861 Vascular smooth muscle cell biolink:Cell skos:exactMatch UMLS:C4082861 Vascular smooth muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8071"} +UMLS:C0546507 P.B. mast cell biolink:Cell skos:exactMatch UMLS:C0546507 P.B. mast cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8072"} +UMLS:C2919569 Colony-forming unit of granulocytic-macrophagocytic lineage (cell) biolink:Cell skos:exactMatch SNOMEDCT:444994007 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8073","identifierIndex":0} +UMLS:C3653065 stem cells from umbilical cord blood biolink:Cell skos:exactMatch UMLS:C3653065 stem cells from umbilical cord blood biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8074"} +UMLS:C1257739 NIH 3T3 Cells biolink:Cell skos:exactMatch UMLS:C1257739 NIH 3T3 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8075"} +CL:0000706 choroid plexus epithelial cell biolink:Cell skos:exactMatch CL:0000706 choroid plexus epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8076","subject_information_content":100.0} +UMLS:C2327166 Type D enteroendocrine cell biolink:Cell skos:exactMatch UMLS:C2327166 Type D enteroendocrine cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8077"} +CL:0000958 T1 B cell biolink:Cell skos:exactMatch CL:0000958 T1 B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8078","subject_information_content":100.0} +UMLS:C1267817 Lymphocyte positive for both CD3 antigen and CD16 antigen biolink:Cell skos:exactMatch SNOMEDCT:117519005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8079","identifierIndex":0} +UMLS:C5419893 Autologous UCD19 CAR T Cells biolink:Cell skos:exactMatch NCIT:C172841 Autologous UCD19 CAR T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8080","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1709187 Neoplastic Osteoclast-Like Giant Cell biolink:Cell skos:exactMatch NCIT:C47815 Neoplastic Osteoclast-Like Giant Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8081","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1276853 Entire parathyroid oxyphil cell biolink:Cell skos:exactMatch SNOMEDCT:177826000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8082","identifierIndex":0} +CL:0000863 inflammatory macrophage biolink:Cell skos:exactMatch CL:0000863 inflammatory macrophage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8083","subject_information_content":94.92072406280138} +UMLS:C3641687 MCPyV TAg-specific Polyclonal Autologous CD8-positive T Cells biolink:Cell skos:exactMatch NCIT:C104009 MCPyV TAg-specific Polyclonal Autologous CD8-positive T Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8084","subject_information_content":100.0,"identifierIndex":0} +CL:0002358 pyrenocyte biolink:Cell skos:exactMatch CL:0002358 pyrenocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8085","subject_information_content":100.0} +CL:1001575 uterine cervix squamous cell biolink:Cell skos:exactMatch CL:1001575 uterine cervix squamous cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8086","subject_information_content":100.0} +UMLS:C3178844 Mesenchymal Stromal Cells biolink:Cell skos:exactMatch UMLS:C3178844 Mesenchymal Stromal Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8087"} +UMLS:C4733097 PG13-CD19-H3 (anti-CD19 CAR) retroviral vector-transduced peripheral blood lymphocytes biolink:Cell skos:exactMatch UMLS:C4733097 PG13-CD19-H3 (anti-CD19 CAR) retroviral vector-transduced peripheral blood lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8088"} +UMLS:C5216224 Leukocytes other|NCnc|Pt|Bld biolink:Cell skos:exactMatch UMLS:C5216224 Leukocytes other|NCnc|Pt|Bld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8089"} +UMLS:C1708913 Malignant Spindle-Shaped Osteoblast biolink:Cell skos:exactMatch NCIT:C53957 Malignant Spindle-Shaped Osteoblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8090","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4086350 GD2-CAR-expressing Autologous T-lymphocytes biolink:Cell skos:exactMatch NCIT:C123820 GD2-CAR-expressing Autologous T-lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8091","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3176884 Blasts.cytoplasmic CD117 biolink:Cell skos:exactMatch UMLS:C3176884 Blasts.cytoplasmic CD117 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8092"} +UMLS:C1441144 Reticulocytes.punctate biolink:Cell skos:exactMatch UMLS:C1441144 Reticulocytes.punctate biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8093"} +UMLS:C4524459 Autologous EGFRt/19-28z/4-1BBL CAR T-Lymphocytes biolink:Cell skos:exactMatch NCIT:C133189 Autologous EGFRt/19-28z/4-1BBL CAR T-Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8094","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5163541 Epithelial cells | Stool | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5163541 Epithelial cells | Stool | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8095"} +UMLS:C5216298 Nucleated cells|NCnc|Pt|Bone mar biolink:Cell skos:exactMatch UMLS:C5216298 Nucleated cells|NCnc|Pt|Bone mar biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8096"} +UMLS:C2953996 Endothelial cell of endocardium of left ventricle biolink:Cell skos:exactMatch UMLS:C2953996 Endothelial cell of endocardium of left ventricle biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8097"} +CL:0000793 CD4-positive, alpha-beta intraepithelial T cell biolink:Cell skos:exactMatch CL:0000793 CD4-positive, alpha-beta intraepithelial T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8098","subject_information_content":94.92072406280138} +UMLS:C4322726 Mesothelial cell of arachnoid mater biolink:Cell skos:exactMatch UMLS:C4322726 Mesothelial cell of arachnoid mater biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8099"} +UMLS:C1317198 Cells.CD55 biolink:Cell skos:exactMatch UMLS:C1317198 Cells.CD55 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8100"} +UMLS:C1267920 Lymphocyte positive for CD42 antigen biolink:Cell skos:exactMatch SNOMEDCT:117588009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8101","identifierIndex":0} +UMLS:C4086005 Autologous Cytotoxic T-lymphocytes Induced with MUC1 Gene-transfected Dendritic Cells biolink:Cell skos:exactMatch NCIT:C124997 Autologous Cytotoxic T-lymphocytes Induced with MUC1 Gene-transfected Dendritic Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8102","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2330475 Goblet cell of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell skos:exactMatch UMLS:C2330475 Goblet cell of epithelium of crypt of Lieberkuhn of small intestine biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8103"} +UMLS:C5204822 Autologous HPV16 E7-specific HLA-A*02:01-restricted TCR Gene Engineered Lymphocytes KITE-439 biolink:Cell skos:exactMatch NCIT:C159977 Autologous HPV16 E7-specific HLA-A*02:01-restricted TCR Gene Engineered Lymphocytes KITE-439 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8104","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5418871 Autologous Multi-lineage Potential Cells biolink:Cell skos:exactMatch NCIT:C170908 Autologous Multi-lineage Potential Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8105","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4277543 Myeloid-Derived Suppressor Cells biolink:Cell skos:exactMatch UMLS:C4277543 Myeloid-Derived Suppressor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8106"} +UMLS:C1882063 Nephrogenic Blastemal Cell biolink:Cell skos:exactMatch NCIT:C61287 Nephrogenic Blastemal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8107","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4518167 Population of all band basophils in portion of fluid biolink:Cell skos:exactMatch SNOMEDCT:725232005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8108","identifierIndex":0} +CL:1000488 cholangiocyte biolink:Cell skos:exactMatch CL:1000488 cholangiocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8109","subject_information_content":91.94953810872488} +CL:0000131 gut endothelial cell biolink:Cell skos:exactMatch CL:0000131 gut endothelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8110","subject_information_content":100.0} +UMLS:C4696002 Cells.CD3+CD4+CD27+CD45RO+CD62L+ biolink:Cell skos:exactMatch UMLS:C4696002 Cells.CD3+CD4+CD27+CD45RO+CD62L+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8111"} +NCIT:C32305 Chief Cell of the Stomach biolink:Cell skos:exactMatch NCIT:C32305 Chief Cell of the Stomach biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8112","subject_information_content":100.0} +UMLS:C5168982 Immature monocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5168982 Immature monocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8113"} +CL:0019032 intestinal tuft cell biolink:Cell skos:exactMatch CL:0019032 intestinal tuft cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8114","subject_information_content":88.2062864997332} +CL:1000600 lower urinary tract cell biolink:Cell skos:exactMatch CL:1000600 lower urinary tract cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8115","subject_information_content":83.1270105625346} +CL:0000759 type 7 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000759 type 7 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8116","subject_information_content":100.0} +UMLS:C5157430 CD3+CD25+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157430 CD3+CD25+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8117"} +UMLS:C1520027 Preganglionic neuron biolink:Cell skos:exactMatch NCIT:C33878 Visceral Efferent Neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8118","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157948 Cells other than spermatozoa | Semen | Fertility testing biolink:Cell skos:exactMatch UMLS:C5157948 Cells other than spermatozoa | Semen | Fertility testing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8119"} +UMLS:C1515139 T-Lymphocyte and Natural Killer Cell biolink:Cell skos:exactMatch NCIT:C39567 T-Lymphocyte and Natural Killer Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8120","subject_information_content":70.37314210672696,"identifierIndex":0} +UMLS:C5540530 keratinocytes, fibroblasts, collagen-dsat biolink:Cell skos:exactMatch UMLS:C5540530 keratinocytes, fibroblasts, collagen-dsat biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8121"} +UMLS:C0483188 CD22+CD19+ biolink:Cell skos:exactMatch UMLS:C0483188 CD22+CD19+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8122"} +UMLS:C4086007 Audencel biolink:Cell skos:exactMatch NCIT:C123928 Audencel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8123","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1955939 Lymphoid Progenitor Cells biolink:Cell skos:exactMatch UMLS:C1955939 Lymphoid Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8124"} +UMLS:C5426725 100 cells.CD45 biolink:Cell skos:exactMatch UMLS:C5426725 100 cells.CD45 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8125"} +UMLS:C1267968 Lymphocyte positive for CD74 antigen biolink:Cell skos:exactMatch SNOMEDCT:117408005 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8126","identifierIndex":0} +UMLS:C1511467 CY81 biolink:Cell skos:exactMatch NCIT:C20241 CY81 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8127","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5454842 Cells.Not specified biolink:Cell skos:exactMatch UMLS:C5454842 Cells.Not specified biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8128"} +UMLS:C1513944 Neoplastic Corticotroph Cell biolink:Cell skos:exactMatch NCIT:C36920 Neoplastic Corticotroph Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8129","subject_information_content":89.84144812560278,"identifierIndex":0} +UMLS:C1512385 Hematopoietic and Lymphoid Cell biolink:Cell skos:exactMatch NCIT:C32725 Hematopoietic and Lymphoid Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8130","subject_information_content":61.90621325304029,"identifierIndex":0} +UMLS:C1184931 External limiting cell of vestibular epithelium biolink:Cell skos:exactMatch UMLS:C1184931 External limiting cell of vestibular epithelium biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8131"} +CL:0000499 stromal cell biolink:Cell skos:exactMatch CL:0000499 stromal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8132","subject_information_content":70.76933838897607} +UMLS:C1514655 RL07 biolink:Cell skos:exactMatch NCIT:C20289 RL07 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8133","subject_information_content":100.0,"identifierIndex":0} +CL:0000754 type 2 cone bipolar cell (sensu Mus) biolink:Cell skos:exactMatch CL:0000754 type 2 cone bipolar cell (sensu Mus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8134","subject_information_content":100.0} +CL:0000931 activated type II NK T cell biolink:Cell skos:exactMatch CL:0000931 activated type II NK T cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8135","subject_information_content":100.0} +UMLS:C1440327 Cells.CD5+CD2- biolink:Cell skos:exactMatch UMLS:C1440327 Cells.CD5+CD2- biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8136"} +CL:0000448 white fat cell biolink:Cell skos:exactMatch CL:0000448 white fat cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8137","subject_information_content":100.0} +UMLS:C0682610 Enterocytes biolink:Cell skos:exactMatch NCIT:C12585 Enterocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8138","subject_information_content":91.94953810872488,"identifierIndex":0} +UMLS:C1512477 Hodgkin-Like Cell biolink:Cell skos:exactMatch NCIT:C37026 Hodgkin-Like Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8139","subject_information_content":100.0,"identifierIndex":0} +CL:0000573 retinal cone cell biolink:Cell skos:exactMatch CL:0000573 retinal cone cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8140","subject_information_content":100.0} +CL:0000222 mesodermal cell biolink:Cell skos:exactMatch CL:0000222 mesodermal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8141","subject_information_content":84.76217218840416} +UMLS:C5157333 CD16C+CD56+ cells | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157333 CD16C+CD56+ cells | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8142"} +UMLS:C3489668 Neoplastic Colony-Forming Units biolink:Cell skos:exactMatch UMLS:C3489668 Neoplastic Colony-Forming Units biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8143"} +MESH:D023461 Myeloid Progenitor Cells biolink:Cell skos:exactMatch MESH:D023461 Myeloid Progenitor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8144"} +UMLS:C1522212 Endocrine Pancreas - Islet of Langerhans - Alpha Cell (MMHCC) biolink:Cell skos:exactMatch NCIT:C22641 Mouse Alpha Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8145","subject_information_content":100.0,"identifierIndex":0} +UMLS:C3658289 Human Induced Pluripotent Stem Cells biolink:Cell skos:exactMatch UMLS:C3658289 Human Induced Pluripotent Stem Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8146"} +UMLS:C1520131 Well Differentiated Adenocarcinoma Cell biolink:Cell skos:exactMatch NCIT:C36796 Well Differentiated Adenocarcinoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8147","subject_information_content":100.0,"identifierIndex":0} +UMLS:C0682610 Enterocytes biolink:Cell skos:exactMatch MESH:D020895 Enterocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8138","subject_information_content":91.94953810872488,"identifierIndex":1} +UMLS:C3850145 Commissural Interneurons biolink:Cell skos:exactMatch MESH:D066294 Commissural Interneurons biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8148","identifierIndex":0} +UMLS:C1440251 Cells.CD120b biolink:Cell skos:exactMatch UMLS:C1440251 Cells.CD120b biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8149"} +NCIT:C12595 Sertoli Cell biolink:Cell skos:exactMatch NCIT:C12595 Sertoli Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8150","subject_information_content":100.0} +UMLS:C1515967 Anaplastic Large T-Lymphocyte biolink:Cell skos:exactMatch NCIT:C37017 Anaplastic Large T-Lymphocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8151","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2327656 Basal cell of epithelium of terminal bronchiole biolink:Cell skos:exactMatch UMLS:C2327656 Basal cell of epithelium of terminal bronchiole biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8152"} +CL:0000941 thymic conventional dendritic cell biolink:Cell skos:exactMatch CL:0000941 thymic conventional dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8153","subject_information_content":91.94953810872488} +UMLS:C5157433 CD3+CD25+ cells | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157433 CD3+CD25+ cells | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8154"} +UMLS:C5157485 CD33 blasts | XXX | Cell markers biolink:Cell skos:exactMatch UMLS:C5157485 CD33 blasts | XXX | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8155"} +UMLS:C1507335 Ciliated columnar lining cells biolink:Cell skos:exactMatch UMLS:C1507335 Ciliated columnar lining cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8156"} +UMLS:C4322678 Chromosome pair biolink:Cell skos:exactMatch UMLS:C4322678 Chromosome pair biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8157"} +CL:1000426 chromaffin cell of adrenal gland biolink:Cell skos:exactMatch CL:1000426 chromaffin cell of adrenal gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8158","subject_information_content":88.2062864997332} +CL:0002561 outer root sheath cell biolink:Cell skos:exactMatch CL:0002561 outer root sheath cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8159","subject_information_content":100.0} +CL:1000217 growth plate cartilage chondrocyte biolink:Cell skos:exactMatch CL:1000217 growth plate cartilage chondrocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8160","subject_information_content":100.0} +UMLS:C1182658 Myoepithelial cell of dilator pupillae biolink:Cell skos:exactMatch UMLS:C1182658 Myoepithelial cell of dilator pupillae biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8161"} +UMLS:C1947989 Colony (cells or organisms) biolink:Cell skos:exactMatch NCIT:C61515 Colony biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8162","subject_information_content":100.0,"identifierIndex":0} +CL:0007020 bottle cell biolink:Cell skos:exactMatch CL:0007020 bottle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8163","subject_information_content":100.0} +CL:0002295 type-6 epithelial cell of thymus biolink:Cell skos:exactMatch CL:0002295 type-6 epithelial cell of thymus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8164","subject_information_content":100.0} +UMLS:C0151776 Abnormal megakaryocyte biolink:Cell skos:exactMatch NCIT:C37043 Abnormal Megakaryocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8165","subject_information_content":84.76217218840416,"identifierIndex":0} +UMLS:C1267988 Lymphocyte positive for CD102 antigen biolink:Cell skos:exactMatch SNOMEDCT:117428009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8166","identifierIndex":0} +CL:0002522 renal filtration cell biolink:Cell skos:exactMatch CL:0002522 renal filtration cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8167","subject_information_content":84.76217218840416} +UMLS:C0312865 Sensitized red cell biolink:Cell skos:exactMatch SNOMEDCT:57722009 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8168","identifierIndex":0} +UMLS:C2350246 Monocyte-Macrophage Precursor Cells biolink:Cell skos:exactMatch MESH:D055017 Monocyte-Macrophage Precursor Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8169","identifierIndex":0} +UMLS:C1883703 Large Melanoma Cell biolink:Cell skos:exactMatch NCIT:C62400 Large Melanoma Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8170","subject_information_content":89.84144812560278,"identifierIndex":0} +CL:2000077 skeletal muscle tissue of pectoralis major striated muscle cell biolink:Cell skos:exactMatch CL:2000077 skeletal muscle tissue of pectoralis major striated muscle cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8171","subject_information_content":100.0} +UMLS:C5171723 Lymphocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171723 Lymphocytes/100 cells | Bone marrow | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8172"} +UMLS:C1717663 Cells.CD20+FMC7+ biolink:Cell skos:exactMatch UMLS:C1717663 Cells.CD20+FMC7+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8173"} +UMLS:C5170918 Leukocytes | Blood cord | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5170918 Leukocytes | Blood cord | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8174"} +UMLS:C0151776 Abnormal megakaryocyte biolink:Cell skos:exactMatch SNOMEDCT:68425008 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8165","subject_information_content":84.76217218840416,"identifierIndex":1} +UMLS:C1708902 Malignant Polygonal Cell with Eosinophilic Cytoplasm biolink:Cell skos:exactMatch NCIT:C53641 Malignant Polygonal Cell with Eosinophilic Cytoplasm biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8175","subject_information_content":94.92072406280138,"identifierIndex":0} +CL:0000468 neuroglioblast (sensu Nematoda and Protostomia) biolink:Cell skos:exactMatch CL:0000468 neuroglioblast (sensu Nematoda and Protostomia) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8176","subject_information_content":94.92072406280138} +CL:0000716 lymph gland crystal cell biolink:Cell skos:exactMatch CL:0000716 lymph gland crystal cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8177","subject_information_content":100.0} +UMLS:C5446938 Autologous Anti-NY-ESO-1 TCR/dnTGF-BRII-expressing T-cells GSK3845097 biolink:Cell skos:exactMatch NCIT:C176041 Autologous Anti-NY-ESO-1 TCR/dnTGF-BRII-expressing T-cells GSK3845097 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8178","subject_information_content":100.0,"identifierIndex":0} +UMLS:C4068113 Cells.CD3+CD4+CD8+ biolink:Cell skos:exactMatch UMLS:C4068113 Cells.CD3+CD4+CD8+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8179"} +CL:1000367 transitional myocyte of posterior internodal tract biolink:Cell skos:exactMatch CL:1000367 transitional myocyte of posterior internodal tract biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8180","subject_information_content":100.0} +CL:0000443 calcitonin secreting cell biolink:Cell skos:exactMatch CL:0000443 calcitonin secreting cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8181","subject_information_content":94.92072406280138} +UMLS:C2936410 Spongy Mesophyll Cells biolink:Cell skos:exactMatch UMLS:C2936410 Spongy Mesophyll Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8182"} +UMLS:C1510738 Abnormal Trophoblastic Cell biolink:Cell skos:exactMatch NCIT:C36799 Abnormal Trophoblastic Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8183","subject_information_content":81.79098623432766,"identifierIndex":0} +CL:0000945 lymphocyte of B lineage biolink:Cell skos:exactMatch CL:0000945 lymphocyte of B lineage biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8184","subject_information_content":65.75822895455381} +CL:0000007 early embryonic cell (metazoa) biolink:Cell skos:exactMatch CL:0000007 early embryonic cell (metazoa) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8185","subject_information_content":86.87026217152628} +UMLS:C4525597 Autologous Peripheral Blood Mononuclear Cells biolink:Cell skos:exactMatch NCIT:C135058 Autologous Peripheral Blood Mononuclear Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8186","subject_information_content":100.0,"identifierIndex":0} +UMLS:C2930253 Carticel biolink:Cell skos:exactMatch UMLS:C2930253 Carticel biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8187"} +UMLS:C1440390 Cells.hyperdiploid biolink:Cell skos:exactMatch UMLS:C1440390 Cells.hyperdiploid biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8188"} +UMLS:C1514067 Neoplastic Plump Epithelial Cell biolink:Cell skos:exactMatch NCIT:C36886 Neoplastic Plump Epithelial Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8189","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1711280 Neoplastic Somatotroph Cell with Scarce Secretory Granules biolink:Cell skos:exactMatch NCIT:C45940 Neoplastic Somatotroph Cell with Scarce Secretory Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8190","subject_information_content":100.0,"identifierIndex":0} +CL:1000383 type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell skos:exactMatch CL:1000383 type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8191","subject_information_content":100.0} +CL:0000125 glial cell biolink:Cell skos:exactMatch CL:0000125 glial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8192","subject_information_content":73.53974887400256} +UMLS:C5398046 brexucabtagene autoleucel biolink:Cell skos:exactMatch SNOMEDCT:895363000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8193","identifierIndex":0} +UMLS:C5216312 Polymorphonuclear cells|NCnc|Pt|Plr fld biolink:Cell skos:exactMatch UMLS:C5216312 Polymorphonuclear cells|NCnc|Pt|Plr fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8194"} +CL:0002292 type I cell of carotid body biolink:Cell skos:exactMatch CL:0002292 type I cell of carotid body biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8195","subject_information_content":100.0} +CL:0002393 intermediate monocyte biolink:Cell skos:exactMatch CL:0002393 intermediate monocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8196","subject_information_content":84.76217218840416} +UMLS:C5401663 ORBCEL C™ biolink:Cell skos:exactMatch UMLS:C5401663 ORBCEL C™ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8197"} +CL:0000105 pseudounipolar neuron biolink:Cell skos:exactMatch CL:0000105 pseudounipolar neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8198","subject_information_content":100.0} +CL:0002480 nasal mucosa goblet cell biolink:Cell skos:exactMatch CL:0002480 nasal mucosa goblet cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8199","subject_information_content":100.0} +UMLS:C1180272 Myoepithelial cell of lactiferous duct biolink:Cell skos:exactMatch UMLS:C1180272 Myoepithelial cell of lactiferous duct biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8200"} +CL:0000828 thromboblast biolink:Cell skos:exactMatch CL:0000828 thromboblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8201","subject_information_content":100.0} +UMLS:C4697028 Cells.CD28+HLA DR+ biolink:Cell skos:exactMatch UMLS:C4697028 Cells.CD28+HLA DR+ biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8202"} +UMLS:C5398046 brexucabtagene autoleucel biolink:Cell skos:exactMatch SNOMEDCT:895369001 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8193","identifierIndex":1} +UMLS:C2325537 Epithelial cell of lactiferous gland biolink:Cell skos:exactMatch UMLS:C2325537 Epithelial cell of lactiferous gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8203"} +UMLS:C0599455 sperm protein biolink:Cell skos:exactMatch UMLS:C0599455 sperm protein biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8204"} +UMLS:C5171865 Macrophages | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5171865 Macrophages | Cerebral spinal fluid | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8205"} +CL:0002405 gamma-delta thymocyte biolink:Cell skos:exactMatch CL:0002405 gamma-delta thymocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8206","subject_information_content":82.42859222307153} +CL:0001067 group 1 innate lymphoid cell biolink:Cell skos:exactMatch CL:0001067 group 1 innate lymphoid cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8207","subject_information_content":74.8362698924938} +UMLS:C5173060 Microcytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5173060 Microcytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8208"} +UMLS:C1507329 Cells.t(6;9)(p22;q34)(DEK,NUP214) biolink:Cell skos:exactMatch UMLS:C1507329 Cells.t(6;9)(p22;q34)(DEK,NUP214) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8209"} +CL:0005022 vascular lymphangioblast biolink:Cell skos:exactMatch CL:0005022 vascular lymphangioblast biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8210","subject_information_content":100.0} +CL:1000308 fibrocyte of adventitia of ureter biolink:Cell skos:exactMatch CL:1000308 fibrocyte of adventitia of ureter biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8211","subject_information_content":100.0} +UMLS:C1513815 NC02 biolink:Cell skos:exactMatch NCIT:C20282 NC02 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8212","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1831990 Anti-p53 T-Cell Receptor-Transduced Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C64773 Anti-p53 T-Cell Receptor-Transduced Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8213","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5179521 Reticulocytes.high fluorescence/100 erythrocytes | Blood | Hematology and Cell counts biolink:Cell skos:exactMatch UMLS:C5179521 Reticulocytes.high fluorescence/100 erythrocytes | Blood | Hematology and Cell counts biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8214"} +UMLS:C5157307 CD14 blasts | Blood | Cell markers biolink:Cell skos:exactMatch UMLS:C5157307 CD14 blasts | Blood | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8215"} +CL:1000335 enterocyte of epithelium of intestinal villus biolink:Cell skos:exactMatch CL:1000335 enterocyte of epithelium of intestinal villus biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8216","subject_information_content":100.0} +UMLS:C1440339 Cells.CD62L biolink:Cell skos:exactMatch UMLS:C1440339 Cells.CD62L biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8217"} +CL:0002055 CD38-negative immature B cell biolink:Cell skos:exactMatch CL:0002055 CD38-negative immature B cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8218","subject_information_content":100.0} +UMLS:C0224523 Synovial fluid mononuclear cell biolink:Cell skos:exactMatch SNOMEDCT:77589000 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8219","identifierIndex":0} +CL:4023056 vascular leptomeningeal cell (Mus musculus) biolink:Cell skos:exactMatch CL:4023056 vascular leptomeningeal cell (Mus musculus) biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8220","subject_information_content":100.0} +UMLS:C1831990 Anti-p53 T-Cell Receptor-Transduced Peripheral Blood Lymphocytes biolink:Cell skos:exactMatch NCIT:C71748 Autologous Anti-gp100:154-162 T-Cell Receptor Gene-Engineered Peripheral Blood Lymphocytes biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8213","subject_information_content":100.0,"identifierIndex":1} +UMLS:C1955381 Spermatozoa.angled midpiece biolink:Cell skos:exactMatch UMLS:C1955381 Spermatozoa.angled midpiece biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8221"} +UMLS:C1709223 Nevoid Polygonal Cell biolink:Cell skos:exactMatch NCIT:C54077 Nevoid Polygonal Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8222","subject_information_content":100.0,"identifierIndex":0} +CL:0002323 amniocyte biolink:Cell skos:exactMatch CL:0002323 amniocyte biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8223","subject_information_content":94.92072406280138} +CL:0000784 plasmacytoid dendritic cell biolink:Cell skos:exactMatch CL:0000784 plasmacytoid dendritic cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8224","subject_information_content":81.79098623432766} +UMLS:C0022801 Hepatic macrophage biolink:Cell skos:exactMatch MESH:D007728 Kupffer Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8225","identifierIndex":0} +CL:0002257 epithelial cell of thyroid gland biolink:Cell skos:exactMatch CL:0002257 epithelial cell of thyroid gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8226","subject_information_content":91.94953810872488} +UMLS:C1709181 Neoplastic Lactotroph Cell with Small Secretory Granules biolink:Cell skos:exactMatch NCIT:C45953 Neoplastic Lactotroph Cell with Small Secretory Granules biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8227","subject_information_content":100.0,"identifierIndex":0} +UMLS:C1516944 Epithelial Reticular Cell biolink:Cell skos:exactMatch NCIT:C13124 Epithelial Reticular Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8228","subject_information_content":100.0,"identifierIndex":0} +CL:0000740 retinal ganglion cell biolink:Cell skos:exactMatch CL:0000740 retinal ganglion cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8229","subject_information_content":100.0} +CL:0002555 fibroblast of mammary gland biolink:Cell skos:exactMatch CL:0002555 fibroblast of mammary gland biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8230","subject_information_content":100.0} +CL:1000549 kidney cortex collecting duct epithelial cell biolink:Cell skos:exactMatch CL:1000549 kidney cortex collecting duct epithelial cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8231","subject_information_content":91.94953810872488} +UMLS:C5380993 Cells.CD8.HLA-B35 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell skos:exactMatch UMLS:C5380993 Cells.CD8.HLA-B35 CMV specific.CMV antigen stimulated gamma interferon producing biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8232"} +CL:0000695 Cajal-Retzius cell biolink:Cell skos:exactMatch CL:0000695 Cajal-Retzius cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8233","subject_information_content":100.0} +UMLS:C2717940 Hep G2 Cells biolink:Cell skos:exactMatch MESH:D056945 Hep G2 Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8234","identifierIndex":0} +UMLS:C1520103 WA01 cell line biolink:Cell skos:exactMatch NCIT:C20308 WA01 biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8235","subject_information_content":100.0,"identifierIndex":0} +UMLS:C5157527 CD3-CD57+ cells | Body fluid | Cell markers biolink:Cell skos:exactMatch UMLS:C5157527 CD3-CD57+ cells | Body fluid | Cell markers biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8236"} +UMLS:C0682701 Central neuron biolink:Cell skos:exactMatch UMLS:C0682701 Central neuron biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8237"} +UMLS:C1183209 Set of tympanic cells biolink:Cell skos:exactMatch UMLS:C1183209 Set of tympanic cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8238"} +UMLS:C5216268 Metamyelocytes|NCnc|Pt|Body fld biolink:Cell skos:exactMatch UMLS:C5216268 Metamyelocytes|NCnc|Pt|Body fld biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8239"} +UMLS:C5392114 T Follicular Helper Cells biolink:Cell skos:exactMatch NCIT:C176755 Follicular Helper T Cell biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8240","subject_information_content":94.92072406280138,"identifierIndex":0} +UMLS:C5392114 T Follicular Helper Cells biolink:Cell skos:exactMatch MESH:D000084522 T Follicular Helper Cells biolink:Cell HumanCurated {"cliqueId":"Cell.txt#8240","subject_information_content":94.92072406280138,"identifierIndex":1} \ No newline at end of file From 895eefe9f981cc610c3842a696a7ed379e7b64f1 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 11 Aug 2022 13:12:07 -0400 Subject: [PATCH 08/15] adding sssom tests --- tests/test_loader.py | 77 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 70 insertions(+), 7 deletions(-) diff --git a/tests/test_loader.py b/tests/test_loader.py index c27b36a..a96c11a 100644 --- a/tests/test_loader.py +++ b/tests/test_loader.py @@ -1,29 +1,92 @@ +import asyncio +import json +import logging +import os from pathlib import Path +import nn_io_rs +import numpy import pytest +import sssom +from sssom.parsers import parse_sssom_table from node_normalizer.loader import NodeLoader +good_sssom = Path(__file__).parent / "resources" / "Cell.sssom.tsv" +good_cell_json = Path(__file__).parent / "resources" / "Cell.json" +good_json = Path(__file__).parent / "resources" / "datafile.json" +bad_json = Path(__file__).parent / "resources" / "datafile_with_errors.json" -good_json = Path(__file__).parent / 'resources' / 'datafile.json' -bad_json = Path(__file__).parent / 'resources' / 'datafile_with_errors.json' +logger = logging.getLogger() def test_nn_load(): node_loader: NodeLoader = NodeLoader() - node_loader._test_mode = 1 + assert asyncio.run(node_loader.load_compendium(str(good_json), 5)) - assert(node_loader.load_compendium(good_json, 5)) +def test_nn_cell_load(): + node_loader: NodeLoader = NodeLoader() + # node_loader._test_mode = 1 + assert asyncio.run(node_loader.load_compendium(str(good_cell_json), 5)) -def test_nn_record_validation(): + +def test_nn_load_with_sssom(): node_loader: NodeLoader = NodeLoader() + # node_loader._test_mode = 1 + ret = asyncio.run(node_loader.load_compendium(str(good_sssom), 5)) + assert ret - ret_val = node_loader.validate_compendia(good_json) +def test_deserialize_sssom(): + mapping_set_data_frame = parse_sssom_table(file_path=good_sssom) + # group = mapping_set_data_frame.df.groupby(["subject_id", "subject_category"]) + # + # for (subject_id, subject_category), entries in group: + # logger.info(f"subject_id: {subject_id}, subject_category: {subject_category}") + # + # for (subject_label, object_id, object_label) in entries[["subject_label", "object_id", "object_label"]].values: + # logger.info(f"subject_label: {subject_label}, object_id: {object_id}, object_label: {object_label}") + + group = mapping_set_data_frame.df.groupby(["subject_category", "subject_id", "subject_label"]) + + for (subject_category, subject_id, subject_label), entries in group: + logger.info(f"subject_category: {subject_category}, subject_id: {subject_id}, subject_label: {subject_label}") + + ic_values = set() + for other in entries.loc[:, "other"]: + if other is not None: + other_json = json.loads(other) + if "subject_information_content" in other_json: + ic_values.add(other_json["subject_information_content"]) + + logger.info(f"ic_values: {ic_values}") + + if len(ic_values) > 0: + logger.warning(f"len(ic_values) is > 0 across entries") + + ic_value = next(iter(ic_values)) + + for (object_id, object_label, other) in entries[["object_id", "object_label", "other"]].values: + if subject_id == object_id and subject_label == object_label: + continue + + logger.info(f"object_id: {object_id}, object_label: {object_label}, other: {other}") + + assert True + + +def test_nn_sssom_converter(): + logger.info(nn_io_rs.sssom_to_legacy_format(str(good_sssom))) + assert True + + +def test_nn_record_validation(): + node_loader: NodeLoader = NodeLoader() + ret_val = node_loader.validate_compendia(good_json) assert ret_val ret_val = node_loader.validate_compendia(bad_json) + assert not ret_val - assert(not ret_val) From 7de2c3843384ea31b716b763fb8564f5c9405218 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Wed, 17 Aug 2022 17:40:41 -0400 Subject: [PATCH 09/15] adding txt as an acceptable extension for legacy load --- node_normalizer/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_normalizer/loader.py b/node_normalizer/loader.py index b015b35..1b573a7 100644 --- a/node_normalizer/loader.py +++ b/node_normalizer/loader.py @@ -570,7 +570,7 @@ async def load_compendium(self, compendium_filename: str, block_size: int) -> bo if compendium_filename.endswith("sssom.tsv"): lines = nn_io_rs.sssom_to_legacy_format(str(compendium_filename)) - if compendium_filename.endswith("json"): + if compendium_filename.endswith("json") or compendium_filename.endswith("txt"): file = open(compendium_filename, "r", encoding="utf-8") lines = file.readlines() file.close() From 609157c0a664b12c968bcd9ab09d19a3f1f8a1e7 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Wed, 17 Aug 2022 17:47:14 -0400 Subject: [PATCH 10/15] adding Rust build instructions --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fe15225..ba6d49f 100644 --- a/README.md +++ b/README.md @@ -29,17 +29,20 @@ Users can find the publicly available website at [service](https://nodenormaliza ## Installation Create a virtual environment -``` - python -m venv nodeNormalization-env +```shell +python -m venv nodeNormalization-env ``` Activate the virtual environment -``` - source nodeNormalization-env/bin/activate +```shell +source nodeNormalization-env/bin/activate ``` Install requirements +```shell +pip install -r requirements.txt +pushd nn_io_rs; maturin develop --release; popd ``` - > pip install -r requirements.txt -``` + + ## Generating equivalence data The equivalence data can be generated by running [Babel](https://github.com/TranslatorSRI/Babel). An example of the contents of a compendia file is shown below: From bb8018adb8d8551528eb40e35f66dc72d10c54a8 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Wed, 24 Aug 2022 14:24:33 -0400 Subject: [PATCH 11/15] adding Rust to add nn_io_rs --- .dockerignore | 1 + Dockerfile | 57 ++++++++++++++++++++++++++++++++----------------- start_server.sh | 3 +++ 3 files changed, 42 insertions(+), 19 deletions(-) create mode 100644 .dockerignore create mode 100755 start_server.sh diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..f2a4093 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +**/target \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 9f264f8..59441d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,28 +1,47 @@ -FROM renciorg/renci-python-image:v0.0.1 +FROM python:3.10.6-buster -RUN mkdir /code -WORKDIR /code +# update/install basic tools +RUN apt-get update +RUN apt-get -y dist-upgrade +RUN apt-get install -yq build-essential curl -# install requirements -ADD ./requirements.txt requirements.txt -RUN pip install -r requirements.txt # --src /usr/local/src +# create a new non-root user +RUN groupadd -r nru && useradd -m -r -g nru nru +RUN chmod 755 /home/nru -# install library -ADD ./swagger_ui swagger_ui -ADD ./setup.py setup.py -ADD ./node_normalizer node_normalizer -ADD ./config.json config.json -ADD ./redis_config.yaml redis_config.yaml -ADD ./load.py load.py +ENV PATH="/home/nru/.cargo/bin:/home/nru/.local/bin:${PATH}" -RUN pip install -e . +USER nru +#RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal +RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y -# setup entrypoint -# gunicorn, hypercorn also options https://fastapi.tiangolo.com/deployment/manually/ -# ENTRYPOINT ["python", "-m" , "uvicorn", "node_normalizer.server:app", "--app-dir", "/home/murphy/", "--port", "6380"] +RUN python -m pip install --upgrade pip -RUN chmod 777 ./ +RUN mkdir /home/nru/code +WORKDIR /home/nru/code +# install requirements +COPY ./requirements.txt requirements.txt +COPY ./swagger_ui swagger_ui +COPY ./setup.py setup.py +COPY ./nn_io_rs nn_io_rs +COPY ./node_normalizer node_normalizer +COPY ./config.json config.json +COPY ./redis_config.yaml redis_config.yaml +COPY ./load.py load.py +COPY ./pyproject.toml pyproject.toml +COPY ./start_server.sh start_server.sh + +USER root +RUN chown -R nru:nru ./ USER nru -ENTRYPOINT ["uvicorn", "--host", "0.0.0.0", "--port", "8080" , "--root-path", "/1.3", "--workers", "1", "--app-dir", "/code/", "--loop", "uvloop", "--http", "httptools", "node_normalizer.server:app"] +RUN python -m venv ./venv + +RUN . venv/bin/activate && pip install -r requirements.txt --no-cache-dir && maturin develop -r -m ./nn_io_rs/Cargo.toml + +# setup entrypoint +# gunicorn, hypercorn also options https://fastapi.tiangolo.com/deployment/manually/ +#ENTRYPOINT ["python", "-m" , "uvicorn", "node_normalizer.server:app", "--app-dir", "/home/murphy/", "--port", "6380"] + +CMD ./start_server.sh diff --git a/start_server.sh b/start_server.sh new file mode 100755 index 0000000..5a8f856 --- /dev/null +++ b/start_server.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +. venv/bin/activate && uvicorn --host "0.0.0.0" --port "8080" --root-path "/1.3" --workers "1" --loop "uvloop" --http "httptools" node_normalizer.server:app \ No newline at end of file From c8f6e93c04d5ad88f2c9db762b8ccf17f2550079 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Wed, 24 Aug 2022 14:24:59 -0400 Subject: [PATCH 12/15] incrementing sssom dep version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 93ec3a6..d334cc8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ redis~=3.5.3 redis-py-cluster==2.1.3 requests~=2.27.1 setuptools~=57.0.0 -sssom==0.3.11 +sssom==0.3.14 starlette==0.19.1 uvicorn==0.17.6 uvloop==0.16.0 From 1fb99a1eab5dbbd67c785ddaa3bf1b054784a3e6 Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Wed, 24 Aug 2022 14:32:21 -0400 Subject: [PATCH 13/15] using minimal Rust profile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59441d3..aff9334 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,7 @@ RUN chmod 755 /home/nru ENV PATH="/home/nru/.cargo/bin:/home/nru/.local/bin:${PATH}" USER nru -#RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal -RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - +RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal RUN python -m pip install --upgrade pip From 0daa48df8034b01438324bc4dac59b8533c2de6b Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 25 Aug 2022 08:06:59 -0400 Subject: [PATCH 14/15] rolling back version since 'mapping_justification' is not in the test data --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d334cc8..93ec3a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ redis~=3.5.3 redis-py-cluster==2.1.3 requests~=2.27.1 setuptools~=57.0.0 -sssom==0.3.14 +sssom==0.3.11 starlette==0.19.1 uvicorn==0.17.6 uvloop==0.16.0 From 8e30f342233a9a64a8c4d980d1296051eab935ed Mon Sep 17 00:00:00 2001 From: Jason Reilly Date: Thu, 25 Aug 2022 08:07:34 -0400 Subject: [PATCH 15/15] adding assert to validate test --- tests/test_loader.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_loader.py b/tests/test_loader.py index c94a855..f8f11cd 100644 --- a/tests/test_loader.py +++ b/tests/test_loader.py @@ -34,6 +34,7 @@ def test_nn_load_with_sssom(): node_loader: NodeLoader = NodeLoader() # node_loader._test_mode = 1 ret = asyncio.run(node_loader.load_compendium(str(good_sssom), 5)) + # ret = asyncio.run(node_loader.load_compendium_sssom(str(good_sssom), 5)) assert ret @@ -79,3 +80,7 @@ def test_nn_record_validation(): ret_val = node_loader.validate_compendia(bad_json) assert not ret_val + + ret_val = node_loader.validate_compendia_sssom(good_sssom) + assert ret_val +